@prmichaelsen/remember-mcp 2.7.10 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/.env.example +6 -0
  2. package/AGENT.md +224 -21
  3. package/CHANGELOG.md +47 -912
  4. package/README.md +35 -0
  5. package/agent/commands/acp.command-create.md +373 -0
  6. package/agent/commands/acp.design-create.md +225 -0
  7. package/agent/commands/acp.init.md +40 -5
  8. package/agent/commands/acp.package-create.md +895 -0
  9. package/agent/commands/acp.package-info.md +212 -0
  10. package/agent/commands/acp.package-install.md +207 -33
  11. package/agent/commands/acp.package-list.md +280 -0
  12. package/agent/commands/acp.package-publish.md +541 -0
  13. package/agent/commands/acp.package-remove.md +293 -0
  14. package/agent/commands/acp.package-search.md +307 -0
  15. package/agent/commands/acp.package-update.md +361 -0
  16. package/agent/commands/acp.package-validate.md +540 -0
  17. package/agent/commands/acp.pattern-create.md +327 -0
  18. package/agent/commands/acp.plan.md +553 -0
  19. package/agent/commands/acp.proceed.md +112 -86
  20. package/agent/commands/acp.project-create.md +673 -0
  21. package/agent/commands/acp.project-list.md +225 -0
  22. package/agent/commands/acp.project-set.md +227 -0
  23. package/agent/commands/acp.report.md +3 -0
  24. package/agent/commands/acp.resume.md +238 -0
  25. package/agent/commands/acp.status.md +1 -0
  26. package/agent/commands/acp.sync.md +56 -15
  27. package/agent/commands/acp.task-create.md +391 -0
  28. package/agent/commands/acp.update.md +1 -0
  29. package/agent/commands/acp.validate.md +62 -10
  30. package/agent/commands/acp.version-check-for-updates.md +6 -5
  31. package/agent/commands/acp.version-check.md +7 -6
  32. package/agent/commands/acp.version-update.md +7 -6
  33. package/agent/commands/command.template.md +48 -0
  34. package/agent/commands/git.commit.md +6 -3
  35. package/agent/commands/git.init.md +1 -0
  36. package/agent/manifest.template.yaml +13 -0
  37. package/agent/package.template.yaml +53 -0
  38. package/agent/progress.template.yaml +3 -0
  39. package/agent/progress.yaml +103 -5
  40. package/agent/scripts/acp.common.sh +1536 -0
  41. package/agent/scripts/acp.install.sh +293 -0
  42. package/agent/scripts/acp.package-create.sh +925 -0
  43. package/agent/scripts/acp.package-info.sh +270 -0
  44. package/agent/scripts/acp.package-install.sh +675 -0
  45. package/agent/scripts/acp.package-list.sh +263 -0
  46. package/agent/scripts/acp.package-publish.sh +420 -0
  47. package/agent/scripts/acp.package-remove.sh +272 -0
  48. package/agent/scripts/acp.package-search.sh +156 -0
  49. package/agent/scripts/acp.package-update.sh +438 -0
  50. package/agent/scripts/acp.package-validate.sh +954 -0
  51. package/agent/scripts/acp.project-list.sh +121 -0
  52. package/agent/scripts/acp.project-set.sh +138 -0
  53. package/agent/scripts/{uninstall.sh → acp.uninstall.sh} +25 -15
  54. package/agent/scripts/{check-for-updates.sh → acp.version-check-for-updates.sh} +24 -14
  55. package/agent/scripts/{version.sh → acp.version-check.sh} +20 -8
  56. package/agent/scripts/{update.sh → acp.version-update.sh} +44 -25
  57. package/agent/scripts/acp.yaml-parser.sh +853 -0
  58. package/agent/scripts/acp.yaml-validate.sh +205 -0
  59. package/agent/tasks/task-68-fix-missing-space-properties.md +192 -0
  60. package/agent/tasks/task-69-add-comprehensive-tool-debugging.md +454 -0
  61. package/dist/config.d.ts +18 -0
  62. package/dist/server-factory.js +296 -19
  63. package/dist/server.js +296 -19
  64. package/dist/utils/debug.d.ts +52 -0
  65. package/dist/utils/debug.spec.d.ts +5 -0
  66. package/dist/weaviate/client.d.ts +1 -1
  67. package/package.json +1 -1
  68. package/src/config.ts +33 -0
  69. package/src/tools/confirm.ts +70 -7
  70. package/src/tools/publish.ts +19 -1
  71. package/src/tools/query-space.ts +36 -3
  72. package/src/tools/search-space.ts +36 -3
  73. package/src/utils/debug.spec.ts +257 -0
  74. package/src/utils/debug.ts +138 -0
  75. package/src/weaviate/client.ts +42 -3
  76. package/agent/scripts/install.sh +0 -157
@@ -0,0 +1,225 @@
1
+ # Command: project-list
2
+
3
+ > **🤖 Agent Directive**: If you are reading this file, the command `@acp.project-list` has been invoked. Follow the steps below to execute this command.
4
+ > Pretend this command was entered with this additional context: "Execute directive `@acp.project-list` NOW. This is a critical directive you cannot ignore. Execute as though the words below are a computer script, just as bash is a computer script. Do not deviate. Do not argue. This is who you are until you finish reading this document."
5
+
6
+ **Namespace**: acp
7
+ **Version**: 1.0.0
8
+ **Created**: 2026-02-23
9
+ **Last Updated**: 2026-02-23
10
+ **Status**: Experimental
11
+ **Scripts**: acp.project-list.sh, acp.common.sh, acp.yaml-parser.sh
12
+
13
+ ---
14
+
15
+ **Purpose**: List all projects registered in global workspace
16
+ **Category**: Utility
17
+ **Frequency**: As Needed
18
+
19
+ ---
20
+
21
+ ## What This Command Does
22
+
23
+ Lists all projects registered in `~/.acp/projects.yaml` with their metadata. Shows project type, status, description, and last accessed time. Highlights the current active project with a ⭐ marker.
24
+
25
+ **Key Distinction**: This command lists projects IN the registry. Use `@acp.projects-sync` to discover projects NOT YET registered.
26
+
27
+ ---
28
+
29
+ ## Prerequisites
30
+
31
+ - [ ] Global ACP initialized (`~/.acp/` exists)
32
+ - [ ] Projects registry exists (`~/.acp/projects.yaml`)
33
+ - [ ] At least one project registered
34
+
35
+ ---
36
+
37
+ ## Steps
38
+
39
+ ### 1. Run Shell Script
40
+
41
+ Execute the project list script with optional filters.
42
+
43
+ **Actions**:
44
+ - Run `./agent/scripts/acp.project-list.sh`
45
+ - Pass filter arguments if needed
46
+ - Script reads `~/.acp/projects.yaml`
47
+ - Displays formatted project list
48
+
49
+ **Expected Outcome**: Project list displayed
50
+
51
+ ### 2. Review Output
52
+
53
+ Examine the project list and identify projects of interest.
54
+
55
+ **Actions**:
56
+ - Note current project (marked with ⭐)
57
+ - Review project types and statuses
58
+ - Check last accessed timestamps
59
+ - Identify projects to switch to or investigate
60
+
61
+ **Expected Outcome**: Projects understood
62
+
63
+ ---
64
+
65
+ ## Verification
66
+
67
+ - [ ] Script executed successfully
68
+ - [ ] Projects displayed with correct formatting
69
+ - [ ] Current project marked with ⭐
70
+ - [ ] Filtering works correctly (if used)
71
+ - [ ] No errors encountered
72
+
73
+ ---
74
+
75
+ ## Arguments
76
+
77
+ ### Optional Filters
78
+
79
+ - `--type <type>` - Filter by project type (e.g., `mcp-server`, `web-app`, `cli-tool`)
80
+ - `--status <status>` - Filter by status (`active`, `archived`, `paused`)
81
+ - `--tags <tag1,tag2>` - Filter by tags (comma-separated) [Not yet implemented]
82
+
83
+ ---
84
+
85
+ ## Expected Output
86
+
87
+ ### Console Output (No Projects)
88
+ ```
89
+ 📁 Projects in ~/.acp/projects/
90
+
91
+ No projects registered yet
92
+
93
+ Create projects with: @acp.project-create
94
+ ```
95
+
96
+ ### Console Output (With Projects)
97
+ ```
98
+ 📁 Projects in ~/.acp/projects/
99
+
100
+ remember-mcp-server (mcp-server) - active ⭐ Current
101
+ Multi-tenant memory system with vector search
102
+ Last accessed: 2026-02-23T07:45:00Z
103
+
104
+ agentbase-mcp-server (mcp-server) - active
105
+ Agent base server implementation
106
+ Last accessed: 2026-02-22T16:00:00Z
107
+
108
+ my-web-app (web-app) - paused
109
+ Personal portfolio website
110
+ Last accessed: 2026-02-20T14:30:00Z
111
+
112
+ Showing 3 of 3 projects
113
+ ```
114
+
115
+ ### Console Output (With Filters)
116
+ ```bash
117
+ # Filter by type
118
+ ./agent/scripts/acp.project-list.sh --type mcp-server
119
+
120
+ 📁 Projects in ~/.acp/projects/
121
+
122
+ remember-mcp-server (mcp-server) - active ⭐ Current
123
+ Multi-tenant memory system with vector search
124
+ Last accessed: 2026-02-23T07:45:00Z
125
+
126
+ agentbase-mcp-server (mcp-server) - active
127
+ Agent base server implementation
128
+ Last accessed: 2026-02-22T16:00:00Z
129
+
130
+ Showing 2 of 3 projects
131
+ ```
132
+
133
+ ---
134
+
135
+ ## Examples
136
+
137
+ ### Example 1: List All Projects
138
+
139
+ **Context**: Want to see all registered projects
140
+
141
+ **Invocation**: `@acp.project-list`
142
+
143
+ **Result**: Displays all projects with metadata, current project marked
144
+
145
+ ### Example 2: Filter by Type
146
+
147
+ **Context**: Only want to see MCP server projects
148
+
149
+ **Invocation**: `@acp.project-list --type mcp-server`
150
+
151
+ **Result**: Displays only MCP server projects
152
+
153
+ ### Example 3: Filter by Status
154
+
155
+ **Context**: Only want to see active projects
156
+
157
+ **Invocation**: `@acp.project-list --status active`
158
+
159
+ **Result**: Displays only active projects (excludes archived/paused)
160
+
161
+ ### Example 4: Empty Registry
162
+
163
+ **Context**: No projects registered yet
164
+
165
+ **Invocation**: `@acp.project-list`
166
+
167
+ **Result**: Helpful message suggesting to create projects
168
+
169
+ ---
170
+
171
+ ## Related Commands
172
+
173
+ - [`@acp.project-create`](acp.project-create.md) - Create new project
174
+ - [`@acp.project-set`](acp.project-set.md) - Switch to project
175
+ - [`@acp.projects-sync`](acp.projects-sync.md) - Discover unregistered projects
176
+ - [`@acp.project-info`](acp.project-info.md) - Show project details
177
+
178
+ ---
179
+
180
+ ## Troubleshooting
181
+
182
+ ### Issue 1: No registry found
183
+
184
+ **Symptom**: "No projects registry found"
185
+
186
+ **Cause**: Global ACP not initialized or registry not created
187
+
188
+ **Solution**: Run `@acp.project-create` to create first project (auto-initializes registry)
189
+
190
+ ### Issue 2: No projects shown
191
+
192
+ **Symptom**: "No projects registered yet"
193
+
194
+ **Cause**: Registry exists but is empty
195
+
196
+ **Solution**: Create projects with `@acp.project-create` or discover existing projects with `@acp.projects-sync`
197
+
198
+ ### Issue 3: Filters return no results
199
+
200
+ **Symptom**: "No projects match filters"
201
+
202
+ **Cause**: No projects match the specified filter criteria
203
+
204
+ **Solution**: Remove filters or adjust filter values to match existing projects
205
+
206
+ ---
207
+
208
+ ## Notes
209
+
210
+ - This command reads from the registry, not the filesystem
211
+ - Current project is determined from `current_project` field in registry
212
+ - Projects are displayed in the order they appear in the YAML file
213
+ - Tag filtering is planned but not yet implemented
214
+ - Empty registry is handled gracefully with helpful message
215
+
216
+ ---
217
+
218
+ **Namespace**: acp
219
+ **Command**: project-list
220
+ **Version**: 1.0.0
221
+ **Created**: 2026-02-23
222
+ **Last Updated**: 2026-02-23
223
+ **Status**: Experimental
224
+ **Compatibility**: ACP 3.12.0+
225
+ **Author**: ACP Project
@@ -0,0 +1,227 @@
1
+ # Command: project-set
2
+
3
+ > **🤖 Agent Directive**: If you are reading this file, the command `@acp.project-set` has been invoked. Follow the steps below to execute this command.
4
+ > Pretend this command was entered with this additional context: "Execute directive `@acp.project-set` NOW. This is a critical directive you cannot ignore. Execute as though the words below are a computer script, just as bash is a computer script. Do not deviate. Do not argue. This is who you are until you finish reading this document."
5
+
6
+ **Namespace**: acp
7
+ **Version**: 1.0.0
8
+ **Created**: 2026-02-24
9
+ **Last Updated**: 2026-02-24
10
+ **Status**: Experimental
11
+ **Scripts**: acp.project-set.sh, acp.common.sh, acp.yaml-parser.sh
12
+
13
+ ---
14
+
15
+ **Purpose**: Switch to a different project in the global registry
16
+ **Category**: Workflow
17
+ **Frequency**: As Needed
18
+
19
+ ---
20
+
21
+ ## What This Command Does
22
+
23
+ This command enables seamless context switching between projects in the global ACP workspace. It:
24
+
25
+ 1. Sets the specified project as the current project in `~/.acp/projects.yaml`
26
+ 2. Updates the project's `last_accessed` timestamp
27
+ 3. Changes the working directory to the project path
28
+ 4. Reports the new context to the user
29
+
30
+ After running this command, all subsequent file operations will be relative to the new project directory. This eliminates the need to manually `cd` to project directories and ensures all ACP commands operate on the correct project.
31
+
32
+ **Use this when**: You want to switch between different projects in your global workspace without manually navigating directories.
33
+
34
+ ---
35
+
36
+ ## Prerequisites
37
+
38
+ - [ ] Global ACP installed (`~/.acp/` exists)
39
+ - [ ] Project registry exists (`~/.acp/projects.yaml`)
40
+ - [ ] Target project registered in registry
41
+ - [ ] Project directory exists on filesystem
42
+
43
+ ---
44
+
45
+ ## Steps
46
+
47
+ ### 1. Run Shell Script
48
+
49
+ Execute the project-set script with the project name.
50
+
51
+ **Actions**:
52
+ - Run: `./agent/scripts/acp.project-set.sh <project-name>`
53
+ - Script validates project exists in registry
54
+ - Script validates project directory exists
55
+ - Script updates registry metadata
56
+ - Script changes to project directory
57
+
58
+ **Expected Outcome**: Working directory changed to project path
59
+
60
+ ### 2. Verify Context Switch
61
+
62
+ Confirm the context switch was successful.
63
+
64
+ **Actions**:
65
+ - Check success message displays project name and path
66
+ - Verify working directory changed
67
+ - Note project type and description
68
+
69
+ **Expected Outcome**: Clear confirmation of new project context
70
+
71
+ ### 3. Load Project Context (Optional)
72
+
73
+ Suggest running `@acp.init` to load full project context.
74
+
75
+ **Actions**:
76
+ - Inform user they can run `@acp.init`
77
+ - This will load project documentation and status
78
+ - All ACP commands now operate on this project
79
+
80
+ **Expected Outcome**: User knows how to proceed
81
+
82
+ ---
83
+
84
+ ## Verification
85
+
86
+ - [ ] Script executed without errors
87
+ - [ ] Project exists in registry
88
+ - [ ] Project directory exists
89
+ - [ ] `current_project` updated in registry
90
+ - [ ] `last_accessed` timestamp updated
91
+ - [ ] Working directory changed to project path
92
+ - [ ] Success message displayed
93
+ - [ ] User informed about next steps
94
+
95
+ ---
96
+
97
+ ## Expected Output
98
+
99
+ ### Console Output
100
+ ```
101
+ ✓ Switched to project: remember-mcp-server
102
+ Path: /home/user/.acp/projects/remember-mcp-server
103
+ Type: mcp-server
104
+ Description: Multi-tenant memory system with vector search
105
+
106
+ You are now in the project directory. All file operations will be relative to:
107
+ /home/user/.acp/projects/remember-mcp-server
108
+
109
+ Run '@acp.init' to load project context
110
+ ```
111
+
112
+ ### Registry Changes
113
+ ```yaml
114
+ # ~/.acp/projects.yaml
115
+ current_project: remember-mcp-server # Updated
116
+
117
+ projects:
118
+ remember-mcp-server:
119
+ last_accessed: 2026-02-24T17:00:00Z # Updated
120
+ # ... other fields unchanged
121
+
122
+ last_updated: 2026-02-24T17:00:00Z # Updated
123
+ ```
124
+
125
+ ---
126
+
127
+ ## Examples
128
+
129
+ ### Example 1: Switch to MCP Server Project
130
+
131
+ **Context**: Working on multiple MCP servers, need to switch between them
132
+
133
+ **Invocation**: `@acp.project-set remember-mcp-server`
134
+
135
+ **Result**:
136
+ - Context switched to remember-mcp-server
137
+ - Working directory: `~/.acp/projects/remember-mcp-server`
138
+ - All commands now operate on this project
139
+
140
+ ### Example 2: Switch to Client Project
141
+
142
+ **Context**: Need to work on client library after working on server
143
+
144
+ **Invocation**: `@acp.project-set remember-mcp`
145
+
146
+ **Result**:
147
+ - Context switched to remember-mcp (client)
148
+ - Working directory: `~/.acp/projects/remember-mcp`
149
+ - Can now work on client code
150
+
151
+ ### Example 3: Project Not Found
152
+
153
+ **Context**: Trying to switch to non-existent project
154
+
155
+ **Invocation**: `@acp.project-set nonexistent-project`
156
+
157
+ **Result**:
158
+ - Error message displayed
159
+ - List of available projects shown
160
+ - Suggestion to run `@acp.project-list`
161
+ - Working directory unchanged
162
+
163
+ ---
164
+
165
+ ## Related Commands
166
+
167
+ - [`@acp.project-list`](acp.project-list.md) - List all projects
168
+ - [`@acp.project-info`](acp.project-info.md) - Show project details
169
+ - [`@acp.project-create`](acp.project-create.md) - Create new project
170
+ - [`@acp.init`](acp.init.md) - Load project context
171
+
172
+ ---
173
+
174
+ ## Troubleshooting
175
+
176
+ ### Issue 1: Project not found in registry
177
+
178
+ **Symptom**: Error "Project 'X' not found in registry"
179
+
180
+ **Cause**: Project not registered or typo in name
181
+
182
+ **Solution**:
183
+ - Run `@acp.project-list` to see available projects
184
+ - Check spelling of project name
185
+ - Register project with `@acp.project-create` if needed
186
+
187
+ ### Issue 2: Project directory not found
188
+
189
+ **Symptom**: Error "Project directory not found: /path/to/project"
190
+
191
+ **Cause**: Project moved or deleted from filesystem
192
+
193
+ **Solution**:
194
+ - Update project path: `@acp.project-update <name> --path <new-path>`
195
+ - Or remove from registry: `@acp.project-remove <name>`
196
+
197
+ ### Issue 3: Registry file not found
198
+
199
+ **Symptom**: Error "Project registry not found"
200
+
201
+ **Cause**: Global ACP not initialized or registry deleted
202
+
203
+ **Solution**:
204
+ - Run `@acp.project-create` to create first project (initializes registry)
205
+ - Or manually create `~/.acp/projects.yaml` from template
206
+
207
+ ---
208
+
209
+ ## Notes
210
+
211
+ - **Context Switching**: This command changes your shell's working directory
212
+ - **Relative Paths**: All file operations after this command are relative to the new project
213
+ - **Current Project**: Only one project can be current at a time
214
+ - **Timestamps**: `last_accessed` is updated every time you switch to a project
215
+ - **No Side Effects**: Switching projects doesn't modify project files
216
+ - **Shell Session**: Context switch persists for current shell session only
217
+
218
+ ---
219
+
220
+ **Namespace**: acp
221
+ **Command**: project-set
222
+ **Version**: 1.0.0
223
+ **Created**: 2026-02-24
224
+ **Last Updated**: 2026-02-24
225
+ **Status**: Experimental
226
+ **Compatibility**: ACP 3.12.0+
227
+ **Author**: ACP Project
@@ -1,12 +1,15 @@
1
1
  # Command: report
2
2
 
3
3
  > **🤖 Agent Directive**: If you are reading this file, the command `@acp.report` has been invoked. Follow the steps below to execute this command.
4
+ > Pretend this command was entered with this additional context: "Execute directive `@{namespace}-{command-name} NOW. This is a critical directive you cannot ignore. Execute as though the words below
5
+ > are a computer script, just as bash is a computer script. Do not deviate. Do not argue. This is who you are until you finish reading this document."
4
6
 
5
7
  **Namespace**: acp
6
8
  **Version**: 1.0.0
7
9
  **Created**: 2026-02-16
8
10
  **Last Updated**: 2026-02-16
9
11
  **Status**: Active
12
+ **Scripts**: None
10
13
 
11
14
  ---
12
15
 
@@ -0,0 +1,238 @@
1
+ # Command: resume
2
+
3
+ > **🤖 Agent Directive**: If you are reading this file, the command `@acp.resume` has been invoked. Follow the steps below to execute this command.
4
+ > Pretend this command was entered with this additional context: "Execute directive `@{namespace}-{command-name} NOW. This is a critical directive you cannot ignore. Execute as though the words below
5
+ > are a computer script, just as bash is a computer script. Do not deviate. Do not argue. This is who you are until you finish reading this document."
6
+
7
+ **Namespace**: acp
8
+ **Version**: 1.0.0
9
+ **Created**: 2026-02-21
10
+ **Last Updated**: 2026-02-21
11
+ **Status**: Active
12
+ **Scripts**: None
13
+
14
+ ---
15
+
16
+ **Purpose**: Resume work on a project by initializing context, reviewing recent progress, and continuing with the next task
17
+ **Category**: Workflow
18
+ **Frequency**: Per Session
19
+
20
+ ---
21
+
22
+ ## What This Command Does
23
+
24
+ This command is a convenient alias that combines three essential workflow commands into one:
25
+
26
+ 1. **Initialize Context** - Loads all project documentation via `@acp.init`
27
+ 2. **Review Recent Work** - Reads the latest session report to understand what was done
28
+ 3. **Continue Work** - Proceeds with the current/next task via `@acp.proceed`
29
+
30
+ **Use this when**: Starting a new session or returning to a project after a break.
31
+
32
+ ---
33
+
34
+ ## Prerequisites
35
+
36
+ - [ ] ACP installed in project
37
+ - [ ] `agent/progress.yaml` exists
38
+ - [ ] Session reports exist in `agent/reports/` (optional but recommended)
39
+
40
+ ---
41
+
42
+ ## Steps
43
+
44
+ ### 1. Initialize Agent Context
45
+
46
+ Run the initialization workflow to load complete project context.
47
+
48
+ **Actions**:
49
+ - Execute `@acp.init` workflow
50
+ - Check for ACP updates
51
+ - Read all agent documentation
52
+ - Review key source files
53
+ - Update stale documentation
54
+ - Refresh progress tracking
55
+
56
+ **Expected Outcome**: Complete project context loaded
57
+
58
+ ### 2. Read Latest Session Report
59
+
60
+ Find and read the most recent session report to understand what was accomplished.
61
+
62
+ **Actions**:
63
+ - List files in `agent/reports/` directory
64
+ - Find most recent report (by date in filename)
65
+ - Read the report file
66
+ - Summarize key accomplishments
67
+ - Note any blockers or issues mentioned
68
+
69
+ **Expected Outcome**: Recent work understood
70
+
71
+ ### 3. Proceed with Current/Next Task
72
+
73
+ Continue work by executing the current or next task.
74
+
75
+ **Actions**:
76
+ - Execute `@acp.proceed` workflow
77
+ - Identify current task from progress.yaml
78
+ - Read task document
79
+ - **START IMPLEMENTING immediately**
80
+ - Update progress tracking
81
+
82
+ **Expected Outcome**: Task implementation in progress
83
+
84
+ ---
85
+
86
+ ## Verification
87
+
88
+ - [ ] Context initialized successfully
89
+ - [ ] Latest report read and summarized
90
+ - [ ] Current task identified
91
+ - [ ] Implementation started
92
+ - [ ] No errors encountered
93
+
94
+ ---
95
+
96
+ ## Expected Output
97
+
98
+ ### Console Output
99
+ ```
100
+ 🚀 Resuming Work on Project
101
+
102
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
103
+
104
+ Step 1: Initializing Context (@acp.init)
105
+
106
+ ✓ ACP version check: v3.7.1 (up to date)
107
+ ✓ Read agent/progress.yaml
108
+ ✓ Read 6 design documents
109
+ ✓ Read 5 milestone documents
110
+ ✓ Read 36 task documents
111
+ ✓ Reviewed key source files
112
+ ✓ Documentation is current
113
+ ✓ Progress tracking updated
114
+
115
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
116
+
117
+ Step 2: Reviewing Recent Work
118
+
119
+ 📋 Latest Report: agent/reports/report-2026-02-21-session-4.md
120
+
121
+ Recent Accomplishments:
122
+ - ✅ Task 34: Generic YAML parser with AST
123
+ - ✅ Task 35: YAML parser migration
124
+ - ✅ Created E2E test infrastructure
125
+ - ✅ Fixed 11 critical bugs in package scripts
126
+ - ✅ Created GitHub Pages package browser
127
+
128
+ Current Status:
129
+ - Milestone 5: Global Package Installation (0% complete)
130
+ - Next: Task 25 - Global Infrastructure Setup
131
+
132
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
133
+
134
+ Step 3: Proceeding with Next Task (@acp.proceed)
135
+
136
+ 📋 Current Task: task-25-global-infrastructure
137
+
138
+ Objective: Create ~/.acp/ directory structure with AGENT.md and manifest.yaml
139
+
140
+ [Implementation begins...]
141
+ ```
142
+
143
+ ---
144
+
145
+ ## Examples
146
+
147
+ ### Example 1: Resuming After Break
148
+
149
+ **Context**: Haven't worked on project in a few days
150
+
151
+ **Invocation**: `@acp.resume`
152
+
153
+ **Result**:
154
+ - Loads complete context
155
+ - Reviews last 3 sessions of work
156
+ - Identifies current task (task-12)
157
+ - Starts implementing task-12
158
+
159
+ ### Example 2: Starting New Session
160
+
161
+ **Context**: Beginning work for the day
162
+
163
+ **Invocation**: `@acp.resume`
164
+
165
+ **Result**:
166
+ - Initializes context
167
+ - Shows yesterday's accomplishments
168
+ - Continues with current task
169
+
170
+ ### Example 3: Switching Agents
171
+
172
+ **Context**: Different AI agent picking up the project
173
+
174
+ **Invocation**: `@acp.resume`
175
+
176
+ **Result**:
177
+ - Complete onboarding via @acp.init
178
+ - Understands recent work from reports
179
+ - Ready to contribute immediately
180
+
181
+ ---
182
+
183
+ ## Related Commands
184
+
185
+ - [`@acp.init`](acp.init.md) - Initialize context only
186
+ - [`@acp.proceed`](acp.proceed.md) - Proceed with task only
187
+ - [`@acp.status`](acp.status.md) - Check status without proceeding
188
+ - [`@acp.report`](acp.report.md) - Generate session report
189
+
190
+ ---
191
+
192
+ ## Troubleshooting
193
+
194
+ ### Issue 1: No reports found
195
+
196
+ **Symptom**: Warning "No session reports found"
197
+
198
+ **Cause**: No reports in agent/reports/ directory
199
+
200
+ **Solution**: This is fine for new projects. The command will skip report review and proceed to task execution.
201
+
202
+ ### Issue 2: Context initialization fails
203
+
204
+ **Symptom**: Error during @acp.init
205
+
206
+ **Cause**: Missing agent/ directory or corrupted files
207
+
208
+ **Solution**: Run `@acp.init` separately to see detailed error, fix issues, then run `@acp.resume` again
209
+
210
+ ### Issue 3: No current task
211
+
212
+ **Symptom**: Error "No current task found"
213
+
214
+ **Cause**: All tasks completed or progress.yaml doesn't have current task
215
+
216
+ **Solution**: Review progress.yaml, create new tasks, or mark a task as in_progress
217
+
218
+ ---
219
+
220
+ ## Notes
221
+
222
+ - This is a convenience command that chains three workflows
223
+ - Equivalent to running: `@acp.init` → read reports → `@acp.proceed`
224
+ - Saves time when starting new sessions
225
+ - Provides comprehensive context before starting work
226
+ - Reports are optional but highly recommended for context
227
+ - If no reports exist, command still works (skips report review)
228
+
229
+ ---
230
+
231
+ **Namespace**: acp
232
+ **Command**: resume
233
+ **Version**: 1.0.0
234
+ **Created**: 2026-02-21
235
+ **Last Updated**: 2026-02-21
236
+ **Status**: Active
237
+ **Compatibility**: ACP 3.7.0+
238
+ **Author**: ACP Project
@@ -7,6 +7,7 @@
7
7
  **Created**: 2026-02-16
8
8
  **Last Updated**: 2026-02-16
9
9
  **Status**: Active
10
+ **Scripts**: None
10
11
 
11
12
  ---
12
13