You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commands/implement.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,24 +9,24 @@ Arguments: `$ARGUMENTS` - URLs, paths, or descriptions of what to implement
9
9
I'll check for existing implementation sessions to continue seamlessly:
10
10
11
11
**Session Files (in current project directory):**
12
-
-`claude/implement_plan.md` - Current implementation plan and progress
13
-
-`claude/implement_state.json` - Session state and checkpoints
12
+
-`implement/plan.md` - Current implementation plan and progress
13
+
-`implement/state.json` - Session state and checkpoints
14
14
15
-
**IMPORTANT:** Session files are stored in a `claude` folder (without dot) in your current project root, NOT in home directory or parent folders. If a session exists, I'll resume from the exact checkpoint. Otherwise, I'll create a new implementation plan and track progress throughout.
15
+
**IMPORTANT:** Session files are stored in a `implement` folder in your current project root, NOT in home directory or parent folders. If a session exists, I'll resume from the exact checkpoint. Otherwise, I'll create a new implementation plan and track progress throughout.
16
16
17
17
## Phase 1: Initial Setup & Analysis
18
18
19
19
**MANDATORY FIRST STEPS:**
20
-
1. First, ensure `claude` directory exists in current working directory
20
+
1. First, check for `implement` directory in current working directory
21
21
2. Check for existing session files:
22
-
- Look for `claude/implement_state.json` in current directory
23
-
- Look for `claude/implement_plan.md` in current directory
22
+
- Look for `implement/state.json` in current directory
23
+
- Look for `implement/plan.md` in current directory
24
24
3. If no session exists:
25
-
- Create `claude/implement_plan.md`
26
-
- Initialize `claude/implement_state.json`
25
+
- Create `implement/plan.md`
26
+
- Initialize `implement/state.json`
27
27
4. Complete full analysis BEFORE any implementation
28
28
29
-
**Critical:** Use `claude` (no dot) folder in current directory. Do NOT use `.claude`, `$HOME/.claude`, or any parent directory paths
29
+
**Critical:** Use `implement`folder in current directory. Do NOT use `$HOME/implement` or any parent directory paths
30
30
31
31
I'll examine what you've provided and your project structure:
32
32
@@ -52,7 +52,7 @@ Based on my analysis, I'll create an implementation plan:
52
52
- Design integration approach
53
53
- Break work into testable chunks
54
54
55
-
I'll write this plan to `implement_plan.md` with clear checkpoints for continuity across sessions.
55
+
I'll write this plan to `implement/plan.md` with clear checkpoints for continuity across sessions.
56
56
57
57
## Phase 3: Intelligent Adaptation
58
58
@@ -89,8 +89,8 @@ I'll implement features incrementally:
89
89
5. Validate everything works correctly
90
90
91
91
**Progress Tracking:**
92
-
- Update `implement_plan.md` as I complete each item
93
-
- Mark checkpoints in `implement_state.json`
92
+
- Update `implement/plan.md` as I complete each item
93
+
- Mark checkpoints in `implement/state.json`
94
94
- Create meaningful git commits at logical points
95
95
96
96
## Phase 5: Quality Assurance
@@ -145,7 +145,7 @@ When you return and run `/implement` or `/implement resume`:
145
145
146
146
1.**Setup session** - Create/load state files FIRST
Copy file name to clipboardExpand all lines: commands/refactor.md
+20-20Lines changed: 20 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,17 @@ I'll help you restructure your code systematically - preserving functionality wh
4
4
5
5
Arguments: `$ARGUMENTS` - files, directories, or refactoring scope
6
6
7
-
**SESSION FILES LOCATION: Always use .claude/ in current directory, NEVER ../../../.claude/ or $HOME/.claude/**
7
+
**SESSION FILES LOCATION: Always use refactor/ folder in current directory**
8
8
9
9
## Session Intelligence
10
10
11
11
I'll maintain refactoring continuity across sessions:
12
12
13
-
**Session Files (hidden folder in current project):**
14
-
-`./.claude/refactor_plan.md` - Refactoring plan with progress tracking
15
-
-`./.claude/refactor_state.json` - Current state and completed actions
13
+
**Session Files (in current project):**
14
+
-`refactor/plan.md` - Refactoring plan with progress tracking
15
+
-`refactor/state.json` - Current state and completed actions
16
16
17
-
**IMPORTANT:** The `.claude` folder is a HIDDEN folder (starts with dot) in your CURRENT PROJECT directory. Use `./.claude/` to access it.
17
+
**IMPORTANT:** The `refactor` folder is created in your CURRENT PROJECT directory. Use `refactor/` to access it.
18
18
19
19
**Auto-Detection:**
20
20
- If session exists: Resume from last checkpoint
@@ -24,34 +24,34 @@ I'll maintain refactoring continuity across sessions:
24
24
**EXAMPLE OF CORRECT PATH USAGE:**
25
25
```
26
26
# CORRECT - looks in current project:
27
-
Read ./.claude/refactor_state.json
28
-
LS ./.claude
27
+
Read refactor/state.json
28
+
LS refactor
29
29
30
30
# WRONG - these will fail:
31
-
Read ../../../.claude/refactor_state.json
32
-
Read $HOME/.claude/refactor_state.json
31
+
Read ../../../refactor/state.json
32
+
Read $HOME/.claude/refactor/state.json
33
33
```
34
34
35
35
## Phase 1: Initial Setup & Analysis
36
36
37
37
**MANDATORY FIRST STEPS FOR SESSION CHECK:**
38
38
```
39
-
Step 1: Check for .claude directory in CURRENT directory
40
-
Command: LS .claude
39
+
Step 1: Check for refactor directory in CURRENT directory
40
+
Command: LS refactor
41
41
42
-
Step 2: If .claude exists, read session files:
43
-
Command: Read .claude/refactor_state.json
44
-
Command: Read .claude/refactor_plan.md
42
+
Step 2: If refactor exists, read session files:
43
+
Command: Read refactor/state.json
44
+
Command: Read refactor/plan.md
45
45
46
46
DO NOT USE THESE WRONG PATHS:
47
-
- ../../../.claude/ (WRONG - goes up directories)
48
-
- $HOME/.claude/ (WRONG - home directory)
49
-
- ~/.claude/ (WRONG - home directory)
47
+
- ../../../refactor/ (WRONG - goes up directories)
48
+
- $HOME/refactor/ (WRONG - home directory)
49
+
- ~/refactor/ (WRONG - home directory)
50
50
51
-
ONLY USE: .claude/ (current directory)
51
+
ONLY USE: refactor/ (current directory)
52
52
```
53
53
54
-
**CRITICAL:** The .claude folder is a hidden folder in the CURRENT WORKING DIRECTORY where user is running the command. NOT in home, NOT in parent directories.
54
+
**CRITICAL:** The refactor folder is created in the CURRENT WORKING DIRECTORY where user is running the command. NOT in home, NOT in parent directories.
55
55
56
56
I'll examine your codebase to identify improvement opportunities:
57
57
@@ -78,7 +78,7 @@ Based on analysis, I'll create a structured plan:
0 commit comments