@prmichaelsen/remember-mcp 2.2.1 → 2.3.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.
- package/AGENT.md +4 -4
- package/CHANGELOG.md +45 -0
- package/README.md +43 -3
- package/agent/commands/acp.init.md +376 -0
- package/agent/commands/acp.proceed.md +311 -0
- package/agent/commands/acp.status.md +280 -0
- package/agent/commands/acp.version-check-for-updates.md +275 -0
- package/agent/commands/acp.version-check.md +190 -0
- package/agent/commands/acp.version-update.md +288 -0
- package/agent/commands/command.template.md +273 -0
- package/agent/design/core-memory-user-profile.md +1253 -0
- package/agent/design/ghost-profiles-pseudonymous-identity.md +194 -0
- package/agent/design/publish-tools-confirmation-flow.md +922 -0
- package/agent/milestones/milestone-10-shared-spaces.md +169 -0
- package/agent/progress.yaml +90 -4
- package/agent/scripts/install.sh +118 -0
- package/agent/scripts/update.sh +22 -10
- package/agent/scripts/version.sh +35 -0
- package/agent/tasks/task-27-implement-llm-provider-interface.md +51 -0
- package/agent/tasks/task-28-implement-llm-provider-factory.md +64 -0
- package/agent/tasks/task-29-update-config-for-llm.md +71 -0
- package/agent/tasks/task-30-implement-bedrock-provider.md +147 -0
- package/agent/tasks/task-31-implement-background-job-service.md +120 -0
- package/agent/tasks/task-32-test-llm-provider-integration.md +152 -0
- package/agent/tasks/task-34-create-confirmation-token-service.md +191 -0
- package/agent/tasks/task-35-create-space-memory-types-schema.md +183 -0
- package/agent/tasks/task-36-implement-remember-publish.md +227 -0
- package/agent/tasks/task-37-implement-remember-confirm.md +225 -0
- package/agent/tasks/task-38-implement-remember-deny.md +161 -0
- package/agent/tasks/task-39-implement-remember-search-space.md +188 -0
- package/agent/tasks/task-40-implement-remember-query-space.md +193 -0
- package/agent/tasks/task-41-configure-firestore-ttl.md +188 -0
- package/agent/tasks/task-42-create-tests-shared-spaces.md +216 -0
- package/agent/tasks/task-43-update-documentation.md +255 -0
- package/dist/llm/types.d.ts +1 -0
- package/dist/server-factory.js +914 -1
- package/dist/server.js +916 -3
- package/dist/services/confirmation-token.service.d.ts +99 -0
- package/dist/services/confirmation-token.service.spec.d.ts +5 -0
- package/dist/tools/confirm.d.ts +20 -0
- package/dist/tools/deny.d.ts +19 -0
- package/dist/tools/publish.d.ts +22 -0
- package/dist/tools/query-space.d.ts +28 -0
- package/dist/tools/search-space.d.ts +29 -0
- package/dist/types/space-memory.d.ts +80 -0
- package/dist/weaviate/space-schema.d.ts +59 -0
- package/dist/weaviate/space-schema.spec.d.ts +5 -0
- package/package.json +1 -1
- package/src/llm/types.ts +0 -0
- package/src/server-factory.ts +33 -0
- package/src/server.ts +33 -0
- package/src/services/confirmation-token.service.spec.ts +254 -0
- package/src/services/confirmation-token.service.ts +232 -0
- package/src/tools/confirm.ts +176 -0
- package/src/tools/deny.ts +70 -0
- package/src/tools/publish.ts +167 -0
- package/src/tools/query-space.ts +197 -0
- package/src/tools/search-space.ts +189 -0
- package/src/types/space-memory.ts +94 -0
- package/src/weaviate/space-schema.spec.ts +131 -0
- package/src/weaviate/space-schema.ts +275 -0
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
# Command: proceed
|
|
2
|
+
|
|
3
|
+
> **🤖 Agent Directive**: If you are reading this file, the command `@acp-proceed` has been invoked. Follow the steps below to execute this command.
|
|
4
|
+
|
|
5
|
+
**Namespace**: acp
|
|
6
|
+
**Version**: 1.0.0
|
|
7
|
+
**Created**: 2026-02-16
|
|
8
|
+
**Last Updated**: 2026-02-16
|
|
9
|
+
**Status**: Active
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
**Purpose**: Continue with the current or next task, executing steps and updating progress tracking
|
|
14
|
+
**Category**: Workflow
|
|
15
|
+
**Frequency**: As Needed
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## What This Command Does
|
|
20
|
+
|
|
21
|
+
This command enables you to continue working on the current task or move to the next task in the project. It reads the current task from `agent/progress.yaml`, loads the task document, guides you through executing the task steps, verifies completion, and updates progress tracking.
|
|
22
|
+
|
|
23
|
+
Use this command when you're ready to work on tasks after initializing context with `@acp-init`, or when continuing work during an active session. It's the primary command for making progress on the project's task list.
|
|
24
|
+
|
|
25
|
+
Unlike `@acp-status` which only displays information, `@acp-proceed` is an active command that guides task execution and modifies `agent/progress.yaml` to track progress.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Prerequisites
|
|
30
|
+
|
|
31
|
+
- [ ] ACP installed in project
|
|
32
|
+
- [ ] `agent/progress.yaml` exists and has current task defined
|
|
33
|
+
- [ ] Current task document exists in `agent/tasks/`
|
|
34
|
+
- [ ] Context initialized (recommended to run `@acp-init` first)
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Steps
|
|
39
|
+
|
|
40
|
+
### 1. Read Progress Tracking
|
|
41
|
+
|
|
42
|
+
Read `agent/progress.yaml` to identify the current task.
|
|
43
|
+
|
|
44
|
+
**Actions**:
|
|
45
|
+
- Open and parse `agent/progress.yaml`
|
|
46
|
+
- Find the current milestone
|
|
47
|
+
- Identify the current task (first task with status `in_progress` or `not_started`)
|
|
48
|
+
- Note task ID, name, and file path
|
|
49
|
+
|
|
50
|
+
**Expected Outcome**: Current task identified
|
|
51
|
+
|
|
52
|
+
### 2. Load Task Document
|
|
53
|
+
|
|
54
|
+
Read the task document to understand what needs to be done.
|
|
55
|
+
|
|
56
|
+
**Actions**:
|
|
57
|
+
- Open the task file (e.g., `agent/tasks/task-3-implement-feature.md`)
|
|
58
|
+
- Read the objective
|
|
59
|
+
- Review all steps
|
|
60
|
+
- Note verification criteria
|
|
61
|
+
- Check for dependencies
|
|
62
|
+
|
|
63
|
+
**Expected Outcome**: Task requirements understood
|
|
64
|
+
|
|
65
|
+
### 3. Check Prerequisites
|
|
66
|
+
|
|
67
|
+
Verify any task prerequisites are met.
|
|
68
|
+
|
|
69
|
+
**Actions**:
|
|
70
|
+
- Review prerequisites section in task document
|
|
71
|
+
- Check if dependencies are satisfied
|
|
72
|
+
- Verify required tools/files are available
|
|
73
|
+
- Report any missing prerequisites
|
|
74
|
+
|
|
75
|
+
**Expected Outcome**: Prerequisites confirmed or blockers identified
|
|
76
|
+
|
|
77
|
+
### 4. Execute Task Steps
|
|
78
|
+
|
|
79
|
+
Work through the task steps sequentially.
|
|
80
|
+
|
|
81
|
+
**Actions**:
|
|
82
|
+
- Follow each step in the task document
|
|
83
|
+
- Execute required actions (create files, run commands, etc.)
|
|
84
|
+
- Document any deviations from the plan
|
|
85
|
+
- Handle errors appropriately
|
|
86
|
+
|
|
87
|
+
**Expected Outcome**: Task steps completed
|
|
88
|
+
|
|
89
|
+
### 5. Verify Completion
|
|
90
|
+
|
|
91
|
+
Check all verification items from the task document.
|
|
92
|
+
|
|
93
|
+
**Actions**:
|
|
94
|
+
- Go through verification checklist
|
|
95
|
+
- Run tests if specified
|
|
96
|
+
- Confirm all acceptance criteria met
|
|
97
|
+
- Note any incomplete items
|
|
98
|
+
|
|
99
|
+
**Expected Outcome**: Task verified as complete or issues identified
|
|
100
|
+
|
|
101
|
+
### 6. Update Progress Tracking
|
|
102
|
+
|
|
103
|
+
Update `agent/progress.yaml` with task completion.
|
|
104
|
+
|
|
105
|
+
**Actions**:
|
|
106
|
+
- Mark task status as `completed`
|
|
107
|
+
- Set completion date to today
|
|
108
|
+
- Update milestone progress percentage
|
|
109
|
+
- Increment `tasks_completed` count
|
|
110
|
+
- Add entry to `recent_work` section
|
|
111
|
+
- Update `next_steps` if needed
|
|
112
|
+
|
|
113
|
+
**Expected Outcome**: Progress tracking reflects completed work
|
|
114
|
+
|
|
115
|
+
### 7. Report Progress
|
|
116
|
+
|
|
117
|
+
Provide summary of what was accomplished.
|
|
118
|
+
|
|
119
|
+
**Actions**:
|
|
120
|
+
- Summarize task completion
|
|
121
|
+
- Show updated milestone progress
|
|
122
|
+
- Identify next task
|
|
123
|
+
- Note any blockers or issues
|
|
124
|
+
|
|
125
|
+
**Expected Outcome**: User informed of progress and next steps
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Verification
|
|
130
|
+
|
|
131
|
+
- [ ] Current task identified from progress.yaml
|
|
132
|
+
- [ ] Task document read and understood
|
|
133
|
+
- [ ] Prerequisites checked
|
|
134
|
+
- [ ] All task steps executed
|
|
135
|
+
- [ ] Verification checklist completed
|
|
136
|
+
- [ ] progress.yaml updated with completion
|
|
137
|
+
- [ ] Milestone progress percentage updated
|
|
138
|
+
- [ ] Recent work entry added
|
|
139
|
+
- [ ] Next task identified
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## Expected Output
|
|
144
|
+
|
|
145
|
+
### Files Modified
|
|
146
|
+
- `agent/progress.yaml` - Task marked complete, progress updated, recent work added
|
|
147
|
+
- Task-specific files (as defined in task document)
|
|
148
|
+
|
|
149
|
+
### Console Output
|
|
150
|
+
```
|
|
151
|
+
📋 Current Task: task-3-implement-core-logic
|
|
152
|
+
|
|
153
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
154
|
+
|
|
155
|
+
Objective: Implement the core business logic for the application
|
|
156
|
+
|
|
157
|
+
Steps:
|
|
158
|
+
1. Create service layer classes
|
|
159
|
+
2. Implement data access methods
|
|
160
|
+
3. Add error handling
|
|
161
|
+
4. Write unit tests
|
|
162
|
+
|
|
163
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
164
|
+
|
|
165
|
+
Executing task steps...
|
|
166
|
+
|
|
167
|
+
✅ Step 1: Created service layer classes
|
|
168
|
+
✅ Step 2: Implemented data access methods
|
|
169
|
+
✅ Step 3: Added error handling
|
|
170
|
+
✅ Step 4: Wrote unit tests
|
|
171
|
+
|
|
172
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
173
|
+
|
|
174
|
+
Verification:
|
|
175
|
+
✅ All service classes created
|
|
176
|
+
✅ Unit tests pass
|
|
177
|
+
✅ TypeScript compiles without errors
|
|
178
|
+
✅ Code follows project patterns
|
|
179
|
+
|
|
180
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
181
|
+
|
|
182
|
+
✅ Task 3 Complete!
|
|
183
|
+
|
|
184
|
+
Updated progress.yaml:
|
|
185
|
+
- Task 3: completed (2026-02-16)
|
|
186
|
+
- Milestone 1: 60% complete (3/5 tasks)
|
|
187
|
+
- Added to recent work
|
|
188
|
+
|
|
189
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
190
|
+
|
|
191
|
+
🎯 Next Task: task-4-add-integration-tests
|
|
192
|
+
File: agent/tasks/task-4-add-integration-tests.md
|
|
193
|
+
Estimated: 3 hours
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
### Status Update
|
|
197
|
+
- Task status: `not_started` → `completed`
|
|
198
|
+
- Milestone progress: 40% → 60%
|
|
199
|
+
- Tasks completed: 2 → 3
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## Examples
|
|
204
|
+
|
|
205
|
+
### Example 1: Continuing Current Task
|
|
206
|
+
|
|
207
|
+
**Context**: You're in the middle of task-3 and want to continue working on it
|
|
208
|
+
|
|
209
|
+
**Invocation**: `@acp-proceed`
|
|
210
|
+
|
|
211
|
+
**Result**: Loads task-3, shows remaining steps, guides you through completion, updates progress when done
|
|
212
|
+
|
|
213
|
+
### Example 2: Starting Next Task
|
|
214
|
+
|
|
215
|
+
**Context**: Just finished task-2, ready to start task-3
|
|
216
|
+
|
|
217
|
+
**Invocation**: `@acp-proceed`
|
|
218
|
+
|
|
219
|
+
**Result**: Identifies task-3 as next, loads task document, guides through all steps, marks complete when done
|
|
220
|
+
|
|
221
|
+
### Example 3: Task with Blockers
|
|
222
|
+
|
|
223
|
+
**Context**: Task has unmet prerequisites
|
|
224
|
+
|
|
225
|
+
**Invocation**: `@acp-proceed`
|
|
226
|
+
|
|
227
|
+
**Result**: Identifies missing prerequisites, reports blockers, suggests resolution steps, does not proceed until resolved
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## Related Commands
|
|
232
|
+
|
|
233
|
+
- [`@acp-init`](acp.init.md) - Use before proceeding to ensure full context loaded
|
|
234
|
+
- [`@acp-status`](acp.status.md) - Use to check which task is current before proceeding
|
|
235
|
+
- [`@acp-update`](acp.update.md) - Use to manually update progress if needed
|
|
236
|
+
- [`@acp-sync`](acp.sync.md) - Use after completing tasks to sync documentation
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
## Troubleshooting
|
|
241
|
+
|
|
242
|
+
### Issue 1: No current task found
|
|
243
|
+
|
|
244
|
+
**Symptom**: Error message "No current task identified"
|
|
245
|
+
|
|
246
|
+
**Cause**: All tasks are completed or progress.yaml doesn't have a current task
|
|
247
|
+
|
|
248
|
+
**Solution**: Review progress.yaml and either mark a task as `in_progress` or create new tasks for the next milestone
|
|
249
|
+
|
|
250
|
+
### Issue 2: Task document not found
|
|
251
|
+
|
|
252
|
+
**Symptom**: Error message "Cannot read task file"
|
|
253
|
+
|
|
254
|
+
**Cause**: Task file path in progress.yaml is incorrect or file doesn't exist
|
|
255
|
+
|
|
256
|
+
**Solution**: Verify the file path in progress.yaml matches the actual task file location, or create the missing task document
|
|
257
|
+
|
|
258
|
+
### Issue 3: Prerequisites not met
|
|
259
|
+
|
|
260
|
+
**Symptom**: Command reports missing prerequisites
|
|
261
|
+
|
|
262
|
+
**Cause**: Task has dependencies that aren't satisfied yet
|
|
263
|
+
|
|
264
|
+
**Solution**: Complete prerequisite tasks first, or resolve the dependencies, then run `@acp-proceed` again
|
|
265
|
+
|
|
266
|
+
### Issue 4: Verification fails
|
|
267
|
+
|
|
268
|
+
**Symptom**: Some verification items don't pass
|
|
269
|
+
|
|
270
|
+
**Cause**: Task steps weren't completed correctly or there are errors
|
|
271
|
+
|
|
272
|
+
**Solution**: Review the failed verification items, fix issues, then re-run verification steps
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
276
|
+
## Security Considerations
|
|
277
|
+
|
|
278
|
+
### File Access
|
|
279
|
+
- **Reads**: `agent/progress.yaml`, current task document, related design documents
|
|
280
|
+
- **Writes**: `agent/progress.yaml` (updates task status and progress), task-specific files as defined in task document
|
|
281
|
+
- **Executes**: May execute commands as specified in task steps (e.g., `npm test`, `npm run build`)
|
|
282
|
+
|
|
283
|
+
### Network Access
|
|
284
|
+
- **APIs**: May make API calls if task requires it
|
|
285
|
+
- **Repositories**: May interact with git if task requires it
|
|
286
|
+
|
|
287
|
+
### Sensitive Data
|
|
288
|
+
- **Secrets**: Should not access secrets unless task explicitly requires configuration
|
|
289
|
+
- **Credentials**: Should not access credentials files
|
|
290
|
+
|
|
291
|
+
---
|
|
292
|
+
|
|
293
|
+
## Notes
|
|
294
|
+
|
|
295
|
+
- This command modifies `agent/progress.yaml` to track progress
|
|
296
|
+
- Task execution may create, modify, or delete files as specified in the task document
|
|
297
|
+
- Always review task steps before proceeding to understand what will be done
|
|
298
|
+
- Use `@acp-status` first to see which task is current
|
|
299
|
+
- If task is complex, consider breaking it into smaller steps
|
|
300
|
+
- Update progress.yaml manually if command doesn't complete successfully
|
|
301
|
+
|
|
302
|
+
---
|
|
303
|
+
|
|
304
|
+
**Namespace**: acp
|
|
305
|
+
**Command**: proceed
|
|
306
|
+
**Version**: 1.0.0
|
|
307
|
+
**Created**: 2026-02-16
|
|
308
|
+
**Last Updated**: 2026-02-16
|
|
309
|
+
**Status**: Active
|
|
310
|
+
**Compatibility**: ACP 1.0.3+
|
|
311
|
+
**Author**: ACP Project
|
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
# Command: status
|
|
2
|
+
|
|
3
|
+
> **🤖 Agent Directive**: If you are reading this file, the command `@acp-status` has been invoked. Follow the steps below to execute this command.
|
|
4
|
+
|
|
5
|
+
**Namespace**: acp
|
|
6
|
+
**Version**: 1.0.0
|
|
7
|
+
**Created**: 2026-02-16
|
|
8
|
+
**Last Updated**: 2026-02-16
|
|
9
|
+
**Status**: Active
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
**Purpose**: Display current project status including milestone progress, current task, recent work, and next steps
|
|
14
|
+
**Category**: Workflow
|
|
15
|
+
**Frequency**: As Needed
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## What This Command Does
|
|
20
|
+
|
|
21
|
+
This command provides a comprehensive overview of the current project status by reading `agent/progress.yaml` and presenting key information in an organized format. It shows where the project stands, what's been accomplished recently, and what needs to be done next.
|
|
22
|
+
|
|
23
|
+
Use this command when you need to quickly understand the current state of the project without performing a full initialization. It's ideal for checking progress during a session, before starting new work, or when reporting status to stakeholders.
|
|
24
|
+
|
|
25
|
+
Unlike `@acp-init` which performs a full context load and updates documentation, `@acp-status` is a read-only operation that simply reports the current state as recorded in progress tracking.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Prerequisites
|
|
30
|
+
|
|
31
|
+
- [ ] ACP installed in project
|
|
32
|
+
- [ ] `agent/progress.yaml` exists and is up to date
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Steps
|
|
37
|
+
|
|
38
|
+
### 1. Read Progress Tracking
|
|
39
|
+
|
|
40
|
+
Read the `agent/progress.yaml` file to get current project state.
|
|
41
|
+
|
|
42
|
+
**Actions**:
|
|
43
|
+
- Open and parse `agent/progress.yaml`
|
|
44
|
+
- Extract key information: current milestone, current task, progress percentages
|
|
45
|
+
- Note any errors or missing data
|
|
46
|
+
|
|
47
|
+
**Expected Outcome**: Progress data loaded successfully
|
|
48
|
+
|
|
49
|
+
### 2. Display Current Milestone
|
|
50
|
+
|
|
51
|
+
Show the current milestone information.
|
|
52
|
+
|
|
53
|
+
**Actions**:
|
|
54
|
+
- Display milestone ID and name
|
|
55
|
+
- Show milestone progress percentage
|
|
56
|
+
- Show tasks completed vs total tasks
|
|
57
|
+
- Display milestone status (not_started, in_progress, completed)
|
|
58
|
+
|
|
59
|
+
**Expected Outcome**: User sees current milestone summary
|
|
60
|
+
|
|
61
|
+
### 3. Display Current Task
|
|
62
|
+
|
|
63
|
+
Show the current task being worked on.
|
|
64
|
+
|
|
65
|
+
**Actions**:
|
|
66
|
+
- Display task ID and name
|
|
67
|
+
- Show task status
|
|
68
|
+
- Display task file path
|
|
69
|
+
- Show estimated hours and completion date (if completed)
|
|
70
|
+
|
|
71
|
+
**Expected Outcome**: User sees current task details
|
|
72
|
+
|
|
73
|
+
### 4. Display Recent Work
|
|
74
|
+
|
|
75
|
+
List recent work completed.
|
|
76
|
+
|
|
77
|
+
**Actions**:
|
|
78
|
+
- Show recent work entries from `progress.yaml`
|
|
79
|
+
- Display dates and descriptions
|
|
80
|
+
- Show completed items with checkmarks
|
|
81
|
+
|
|
82
|
+
**Expected Outcome**: User sees what was recently accomplished
|
|
83
|
+
|
|
84
|
+
### 5. Display Next Steps
|
|
85
|
+
|
|
86
|
+
Show what needs to be done next.
|
|
87
|
+
|
|
88
|
+
**Actions**:
|
|
89
|
+
- List next steps from `progress.yaml`
|
|
90
|
+
- Prioritize by order in the list
|
|
91
|
+
- Highlight any urgent items
|
|
92
|
+
|
|
93
|
+
**Expected Outcome**: User knows what to work on next
|
|
94
|
+
|
|
95
|
+
### 6. Display Blockers
|
|
96
|
+
|
|
97
|
+
Show any current blockers or issues.
|
|
98
|
+
|
|
99
|
+
**Actions**:
|
|
100
|
+
- List current blockers from `progress.yaml`
|
|
101
|
+
- Highlight critical blockers
|
|
102
|
+
- Note if no blockers exist
|
|
103
|
+
|
|
104
|
+
**Expected Outcome**: User is aware of any obstacles
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Verification
|
|
109
|
+
|
|
110
|
+
- [ ] `agent/progress.yaml` read successfully
|
|
111
|
+
- [ ] Current milestone displayed with progress percentage
|
|
112
|
+
- [ ] Current task displayed with status
|
|
113
|
+
- [ ] Recent work listed (if any exists)
|
|
114
|
+
- [ ] Next steps listed
|
|
115
|
+
- [ ] Blockers displayed (or noted as none)
|
|
116
|
+
- [ ] Output is clear and well-formatted
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## Expected Output
|
|
121
|
+
|
|
122
|
+
### Files Modified
|
|
123
|
+
None - this is a read-only command
|
|
124
|
+
|
|
125
|
+
### Console Output
|
|
126
|
+
```
|
|
127
|
+
📊 Project Status
|
|
128
|
+
|
|
129
|
+
Project: example-project (v0.1.0)
|
|
130
|
+
Status: in_progress
|
|
131
|
+
Started: 2026-01-15
|
|
132
|
+
|
|
133
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
134
|
+
|
|
135
|
+
📍 Current Milestone: M1 - Foundation
|
|
136
|
+
Progress: 40% (2/5 tasks completed)
|
|
137
|
+
Status: in_progress
|
|
138
|
+
Started: 2026-01-15
|
|
139
|
+
|
|
140
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
141
|
+
|
|
142
|
+
📋 Current Task: task-3-implement-core-logic
|
|
143
|
+
Status: in_progress
|
|
144
|
+
File: agent/tasks/task-3-implement-core-logic.md
|
|
145
|
+
Estimated: 4 hours
|
|
146
|
+
|
|
147
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
148
|
+
|
|
149
|
+
✅ Recent Work:
|
|
150
|
+
2026-02-15:
|
|
151
|
+
- ✅ Completed task-2 (database setup)
|
|
152
|
+
- ✅ Updated progress tracking
|
|
153
|
+
- 📋 Started task-3
|
|
154
|
+
|
|
155
|
+
2026-02-14:
|
|
156
|
+
- ✅ Completed task-1 (project structure)
|
|
157
|
+
|
|
158
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
159
|
+
|
|
160
|
+
🎯 Next Steps:
|
|
161
|
+
1. Complete task-3 (implement core logic)
|
|
162
|
+
2. Begin task-4 (add tests)
|
|
163
|
+
3. Review milestone-1 success criteria
|
|
164
|
+
|
|
165
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
166
|
+
|
|
167
|
+
⚠️ Current Blockers:
|
|
168
|
+
None
|
|
169
|
+
|
|
170
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
171
|
+
|
|
172
|
+
Overall Progress: 35% complete
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
### Status Update
|
|
176
|
+
No status changes - read-only operation
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## Examples
|
|
181
|
+
|
|
182
|
+
### Example 1: Checking Status Mid-Session
|
|
183
|
+
|
|
184
|
+
**Context**: You're in the middle of working and want to see where things stand
|
|
185
|
+
|
|
186
|
+
**Invocation**: `@acp-status`
|
|
187
|
+
|
|
188
|
+
**Result**: Displays current milestone (M1, 40% complete), current task (task-3, in progress), recent work (completed task-2 yesterday), and next steps (finish task-3, start task-4)
|
|
189
|
+
|
|
190
|
+
### Example 2: Starting a New Session
|
|
191
|
+
|
|
192
|
+
**Context**: Beginning work after a break, want to see project state before diving in
|
|
193
|
+
|
|
194
|
+
**Invocation**: `@acp-status`
|
|
195
|
+
|
|
196
|
+
**Result**: Shows you're on milestone 2, 60% through, currently on task-7, with 3 tasks completed this week and 2 blockers to address
|
|
197
|
+
|
|
198
|
+
### Example 3: Reporting to Stakeholders
|
|
199
|
+
|
|
200
|
+
**Context**: Need to provide a quick status update
|
|
201
|
+
|
|
202
|
+
**Invocation**: `@acp-status`
|
|
203
|
+
|
|
204
|
+
**Result**: Clean, formatted output showing overall progress (65%), current phase (Testing), and upcoming milestones
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## Related Commands
|
|
209
|
+
|
|
210
|
+
- [`@acp-init`](acp.init.md) - Use for full context initialization at session start
|
|
211
|
+
- [`@acp-proceed`](acp.proceed.md) - Use after checking status to continue with current task
|
|
212
|
+
- [`@acp-update`](acp.update.md) - Use to update progress.yaml after completing work
|
|
213
|
+
- [`@acp-sync`](acp.sync.md) - Use to sync documentation with code changes
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
## Troubleshooting
|
|
218
|
+
|
|
219
|
+
### Issue 1: progress.yaml not found
|
|
220
|
+
|
|
221
|
+
**Symptom**: Error message "Cannot read file: agent/progress.yaml"
|
|
222
|
+
|
|
223
|
+
**Cause**: Progress tracking file doesn't exist yet
|
|
224
|
+
|
|
225
|
+
**Solution**: Create progress.yaml from template: `cp agent/progress.template.yaml agent/progress.yaml`, then fill in initial project information
|
|
226
|
+
|
|
227
|
+
### Issue 2: Empty or incomplete output
|
|
228
|
+
|
|
229
|
+
**Symptom**: Status shows "No data" or missing sections
|
|
230
|
+
|
|
231
|
+
**Cause**: progress.yaml is not properly filled out
|
|
232
|
+
|
|
233
|
+
**Solution**: Review progress.yaml and ensure all required fields are populated (project name, current milestone, current task, etc.)
|
|
234
|
+
|
|
235
|
+
### Issue 3: Outdated information displayed
|
|
236
|
+
|
|
237
|
+
**Symptom**: Status shows old task or milestone that's already completed
|
|
238
|
+
|
|
239
|
+
**Cause**: progress.yaml hasn't been updated after recent work
|
|
240
|
+
|
|
241
|
+
**Solution**: Run `@acp-update` to refresh progress tracking, or manually update progress.yaml
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
## Security Considerations
|
|
246
|
+
|
|
247
|
+
### File Access
|
|
248
|
+
- **Reads**: `agent/progress.yaml` only
|
|
249
|
+
- **Writes**: None (read-only command)
|
|
250
|
+
- **Executes**: None
|
|
251
|
+
|
|
252
|
+
### Network Access
|
|
253
|
+
- **APIs**: None
|
|
254
|
+
- **Repositories**: None
|
|
255
|
+
|
|
256
|
+
### Sensitive Data
|
|
257
|
+
- **Secrets**: Does not access any secrets or credentials
|
|
258
|
+
- **Credentials**: Does not access any credentials
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
262
|
+
## Notes
|
|
263
|
+
|
|
264
|
+
- This is a read-only command that doesn't modify any files
|
|
265
|
+
- For best results, keep `agent/progress.yaml` up to date
|
|
266
|
+
- Use `@acp-update` after completing tasks to ensure status is accurate
|
|
267
|
+
- Status output is designed to be human-readable and suitable for reports
|
|
268
|
+
- Can be run multiple times per session without side effects
|
|
269
|
+
- Faster than `@acp-init` since it only reads one file
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
**Namespace**: acp
|
|
274
|
+
**Command**: status
|
|
275
|
+
**Version**: 1.0.0
|
|
276
|
+
**Created**: 2026-02-16
|
|
277
|
+
**Last Updated**: 2026-02-16
|
|
278
|
+
**Status**: Active
|
|
279
|
+
**Compatibility**: ACP 1.0.3+
|
|
280
|
+
**Author**: ACP Project
|