---
title: "^[CURSOR_POSITION]"
description: "+++ repository_url = \"https://github.com/octocat/hello-world\" revision = \"7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\" +++"
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/hello-world-rename-accepted-group-by
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:25:09.937Z
license: CC-BY-4.0
attribution: "^[CURSOR_POSITION] — Claudary (https://claudary.paisolsolutions.com/skills/hello-world-rename-accepted-group-by)"
---

# ^[CURSOR_POSITION]
+++ repository_url = "https://github.com/octocat/hello-world" revision = "7fd1a60b01f91b314f59955a4e4d4e80d8edf11d" +++

## Overview

+++
repository_url = "https://github.com/octocat/hello-world"
revision = "7fd1a60b01f91b314f59955a4e4d4e80d8edf11d"
+++

## Edit History

```diff
--- a/README
+++ b/README
@@ -1,1 +1,6 @@
-Hello World!
+function filterByStatus(items, status) {
+    return items.filter(item => item.status === status);
+}
+
+function groupBy
+
```

// User accepted prediction:
```diff
--- a/README
+++ b/README
@@ -4,3 +4,9 @@
 
-function groupBy
+function groupByStatus(items) {
+    return items.reduce((groups, item) => {
+        const key = item.status;
+        (groups[key] = groups[key] || []).push(item);
+        return groups;
+    }, {});
+}
 
```

```diff
--- a/README
+++ b/README
@@ -4,4 +4,4 @@
 
-function groupByStatus(items) {
+function groupByCat(items) {
     return items.reduce((groups, item) => {
```

## Cursor Position

```README
function filterByStatus(items, status) {
    return items.filter(item => item.status === status);
}

function groupByCat(items) {
#                  ^[CURSOR_POSITION]
    return items.reduce((groups, item) => {
        const key = item.status;
        (groups[key] = groups[key] || []).push(item);
        return groups;
    }, {});
}

```

## Expected Patch

```diff
--- a/README
+++ b/README
@@ -5,7 +5,7 @@
-function groupByCat(items) {
+function groupByCategory(items) {
#                        ^[CURSOR_POSITION]
     return items.reduce((groups, item) => {
-        const key = item.status;
+        const key = item.category;
         (groups[key] = groups[key] || []).push(item);
         return groups;
     }, {});
```

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/hello-world-rename-accepted-group-by) · https://claudary.paisolsolutions.com
