@prmichaelsen/remember-mcp 2.7.11 → 3.0.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/.env.example +6 -0
- package/AGENT.md +224 -21
- package/CHANGELOG.md +155 -915
- package/README.md +130 -1
- package/agent/commands/acp.command-create.md +372 -0
- package/agent/commands/acp.design-create.md +224 -0
- package/agent/commands/acp.init.md +39 -5
- package/agent/commands/acp.package-create.md +894 -0
- package/agent/commands/acp.package-info.md +211 -0
- package/agent/commands/acp.package-install.md +206 -33
- package/agent/commands/acp.package-list.md +279 -0
- package/agent/commands/acp.package-publish.md +540 -0
- package/agent/commands/acp.package-remove.md +292 -0
- package/agent/commands/acp.package-search.md +306 -0
- package/agent/commands/acp.package-update.md +360 -0
- package/agent/commands/acp.package-validate.md +539 -0
- package/agent/commands/acp.pattern-create.md +326 -0
- package/agent/commands/acp.plan.md +552 -0
- package/agent/commands/acp.proceed.md +111 -86
- package/agent/commands/acp.project-create.md +672 -0
- package/agent/commands/acp.project-list.md +224 -0
- package/agent/commands/acp.project-set.md +226 -0
- package/agent/commands/acp.report.md +2 -0
- package/agent/commands/acp.resume.md +237 -0
- package/agent/commands/acp.sync.md +55 -15
- package/agent/commands/acp.task-create.md +390 -0
- package/agent/commands/acp.validate.md +61 -10
- package/agent/commands/acp.version-check-for-updates.md +5 -5
- package/agent/commands/acp.version-check.md +6 -6
- package/agent/commands/acp.version-update.md +6 -6
- package/agent/commands/command.template.md +43 -0
- package/agent/commands/git.commit.md +5 -3
- package/agent/design/soft-delete-system.md +291 -0
- package/agent/manifest.template.yaml +13 -0
- package/agent/milestones/milestone-13-soft-delete-system.md +306 -0
- package/agent/package.template.yaml +36 -0
- package/agent/progress.template.yaml +3 -0
- package/agent/progress.yaml +238 -6
- package/agent/scripts/acp.common.sh +1536 -0
- package/agent/scripts/{install.sh → acp.install.sh} +82 -26
- package/agent/scripts/acp.package-create.sh +925 -0
- package/agent/scripts/acp.package-info.sh +270 -0
- package/agent/scripts/acp.package-install.sh +596 -0
- package/agent/scripts/acp.package-list.sh +263 -0
- package/agent/scripts/acp.package-publish.sh +420 -0
- package/agent/scripts/acp.package-remove.sh +272 -0
- package/agent/scripts/acp.package-search.sh +156 -0
- package/agent/scripts/acp.package-update.sh +438 -0
- package/agent/scripts/acp.package-validate.sh +855 -0
- package/agent/scripts/acp.project-list.sh +121 -0
- package/agent/scripts/acp.project-set.sh +138 -0
- package/agent/scripts/{uninstall.sh → acp.uninstall.sh} +25 -15
- package/agent/scripts/{check-for-updates.sh → acp.version-check-for-updates.sh} +24 -14
- package/agent/scripts/{version.sh → acp.version-check.sh} +20 -8
- package/agent/scripts/{update.sh → acp.version-update.sh} +44 -25
- package/agent/scripts/acp.yaml-parser.sh +853 -0
- package/agent/scripts/acp.yaml-validate.sh +205 -0
- package/agent/tasks/task-68-fix-missing-space-properties.md +192 -0
- package/agent/tasks/task-69-add-comprehensive-tool-debugging.md +454 -0
- package/agent/tasks/task-70-add-soft-delete-schema-fields.md +165 -0
- package/agent/tasks/task-71-implement-delete-confirmation-flow.md +257 -0
- package/agent/tasks/task-72-add-deleted-filter-to-search-tools.md +18 -0
- package/agent/tasks/task-73-update-relationship-handling.md +18 -0
- package/agent/tasks/task-74-add-unit-tests-soft-delete.md +18 -0
- package/agent/tasks/task-75-update-documentation-changelog.md +26 -0
- package/dist/config.d.ts +18 -0
- package/dist/server-factory.js +788 -355
- package/dist/server.js +788 -355
- package/dist/tools/delete-memory.d.ts +5 -30
- package/dist/tools/find-similar.d.ts +8 -1
- package/dist/tools/query-memory.d.ts +8 -1
- package/dist/tools/search-memory.d.ts +6 -0
- package/dist/tools/search-relationship.d.ts +8 -1
- package/dist/types/memory.d.ts +8 -0
- package/dist/types/space-memory.d.ts +3 -0
- package/dist/utils/debug.d.ts +52 -0
- package/dist/utils/debug.spec.d.ts +5 -0
- package/dist/utils/weaviate-filters.d.ts +19 -0
- package/dist/weaviate/client.d.ts +1 -1
- package/package.json +1 -1
- package/src/config.ts +33 -0
- package/src/tools/confirm.ts +113 -8
- package/src/tools/create-relationship.ts +14 -1
- package/src/tools/delete-memory.ts +91 -63
- package/src/tools/find-similar.ts +30 -5
- package/src/tools/publish.ts +19 -1
- package/src/tools/query-memory.ts +18 -5
- package/src/tools/query-space.ts +36 -3
- package/src/tools/search-memory.ts +18 -5
- package/src/tools/search-relationship.ts +19 -5
- package/src/tools/search-space.ts +36 -3
- package/src/tools/update-memory.ts +8 -0
- package/src/types/memory.ts +11 -0
- package/src/types/space-memory.ts +5 -0
- package/src/utils/debug.spec.ts +257 -0
- package/src/utils/debug.ts +138 -0
- package/src/utils/weaviate-filters.ts +28 -1
- package/src/weaviate/client.ts +47 -3
- package/src/weaviate/schema.ts +17 -0
- package/src/weaviate/space-schema.spec.ts +5 -2
- package/src/weaviate/space-schema.ts +17 -5
|
@@ -1,16 +1,35 @@
|
|
|
1
1
|
# Command: proceed
|
|
2
2
|
|
|
3
|
-
> **🤖
|
|
3
|
+
> **🤖 CRITICAL AGENT DIRECTIVE**: You are reading this file because `@acp.proceed` has been invoked.
|
|
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
|
+
> **YOU MUST IMMEDIATELY BEGIN IMPLEMENTING THE CURRENT OR NEXT TASK.**
|
|
8
|
+
>
|
|
9
|
+
> **DO NOT**:
|
|
10
|
+
> - ❌ Provide status reports or summaries
|
|
11
|
+
> - ❌ Ask about session size, cost, or token limits
|
|
12
|
+
> - ❌ Suggest pushing commits or taking breaks
|
|
13
|
+
> - ❌ End with "ready to proceed" or similar passive statements
|
|
14
|
+
>
|
|
15
|
+
> **DO**:
|
|
16
|
+
> - ✅ Read the task document
|
|
17
|
+
> - ✅ START IMPLEMENTING immediately
|
|
18
|
+
> - ✅ Create files, write code, make changes
|
|
19
|
+
> - ✅ Complete the task or make substantial progress
|
|
20
|
+
> - ✅ Update progress.yaml when done
|
|
21
|
+
>
|
|
22
|
+
> **This is an ACTION command, not a STATUS command.**
|
|
4
23
|
|
|
5
24
|
**Namespace**: acp
|
|
6
|
-
**Version**: 1.
|
|
25
|
+
**Version**: 1.1.0
|
|
7
26
|
**Created**: 2026-02-16
|
|
8
|
-
**Last Updated**: 2026-02-
|
|
27
|
+
**Last Updated**: 2026-02-18
|
|
9
28
|
**Status**: Active
|
|
10
29
|
|
|
11
30
|
---
|
|
12
31
|
|
|
13
|
-
**Purpose**:
|
|
32
|
+
**Purpose**: IMMEDIATELY implement the current or next task - NO DELAYS, NO REPORTS, JUST ACTION
|
|
14
33
|
**Category**: Workflow
|
|
15
34
|
**Frequency**: As Needed
|
|
16
35
|
|
|
@@ -18,11 +37,30 @@
|
|
|
18
37
|
|
|
19
38
|
## What This Command Does
|
|
20
39
|
|
|
21
|
-
|
|
40
|
+
**THIS IS AN IMPLEMENTATION COMMAND.**
|
|
41
|
+
|
|
42
|
+
When you invoke `@acp.proceed`, you are commanding the agent to:
|
|
43
|
+
1. Find the current/next task
|
|
44
|
+
2. **IMMEDIATELY START IMPLEMENTING IT**
|
|
45
|
+
3. Write code, create files, make changes
|
|
46
|
+
4. Complete the task or make substantial progress
|
|
47
|
+
5. Update progress tracking
|
|
48
|
+
|
|
49
|
+
**This is NOT a status command.** Do not confuse this with `@acp.status`. The purpose of `@acp.proceed` is to **DO WORK**, not report on work.
|
|
22
50
|
|
|
23
|
-
|
|
51
|
+
**Agent Behavior**:
|
|
52
|
+
- Read task document
|
|
53
|
+
- Start implementing within the same response
|
|
54
|
+
- Create files, write code, execute commands
|
|
55
|
+
- Make real progress on the task
|
|
56
|
+
- Only stop when task is complete or substantial progress made
|
|
57
|
+
- Update progress.yaml with what was accomplished
|
|
24
58
|
|
|
25
|
-
|
|
59
|
+
**Forbidden Behaviors**:
|
|
60
|
+
- Providing status summaries without implementation
|
|
61
|
+
- Asking about token limits or session size
|
|
62
|
+
- Suggesting to "continue later" or "push commits first"
|
|
63
|
+
- Ending with "ready to proceed" (you ARE proceeding!)
|
|
26
64
|
|
|
27
65
|
---
|
|
28
66
|
|
|
@@ -37,92 +75,79 @@ Unlike `@acp-status` which only displays information, `@acp-proceed` is an activ
|
|
|
37
75
|
|
|
38
76
|
## Steps
|
|
39
77
|
|
|
40
|
-
###
|
|
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
|
|
78
|
+
### 🚨 CRITICAL: These are IMPLEMENTATION steps, not planning steps
|
|
90
79
|
|
|
91
|
-
|
|
80
|
+
### 1. Identify Current Task (30 seconds max)
|
|
92
81
|
|
|
93
82
|
**Actions**:
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
**
|
|
106
|
-
-
|
|
107
|
-
-
|
|
83
|
+
- Read `agent/progress.yaml`
|
|
84
|
+
- Find first task with status `in_progress` or `not_started`
|
|
85
|
+
- Read the task document
|
|
86
|
+
|
|
87
|
+
**DO NOT spend time analyzing or planning. MOVE TO STEP 2 IMMEDIATELY.**
|
|
88
|
+
|
|
89
|
+
### 2. START IMPLEMENTING NOW (This is the main step)
|
|
90
|
+
|
|
91
|
+
**🚨 MANDATORY ACTIONS - DO THESE IMMEDIATELY:**
|
|
92
|
+
|
|
93
|
+
- **Create files** that the task requires
|
|
94
|
+
- **Write code** specified in the task
|
|
95
|
+
- **Execute commands** needed for the task
|
|
96
|
+
- **Make changes** to existing files
|
|
97
|
+
- **Install dependencies** if needed
|
|
98
|
+
- **Run tests** if specified
|
|
99
|
+
- **Verify functionality** as you go
|
|
100
|
+
|
|
101
|
+
**DO NOT**:
|
|
102
|
+
- ❌ Provide summaries of what you "will" do
|
|
103
|
+
- ❌ Ask if the user wants to proceed
|
|
104
|
+
- ❌ Mention token limits, costs, or session size
|
|
105
|
+
- ❌ Suggest breaking the task into smaller pieces
|
|
106
|
+
- ❌ End with "ready to implement" or similar
|
|
107
|
+
|
|
108
|
+
**YOU ARE IMPLEMENTING. START NOW. NO EXCUSES.**
|
|
109
|
+
|
|
110
|
+
### 3. Complete the Task or Make Substantial Progress
|
|
111
|
+
|
|
112
|
+
**Keep working until**:
|
|
113
|
+
- ✅ Task is complete, OR
|
|
114
|
+
- ✅ You've made substantial progress (50%+ of task done), OR
|
|
115
|
+
- ✅ You encounter a genuine blocker that requires user input
|
|
116
|
+
|
|
117
|
+
**"Substantial progress" means**:
|
|
118
|
+
- Multiple files created/modified
|
|
119
|
+
- Core functionality implemented
|
|
120
|
+
- Verification steps passing
|
|
121
|
+
- Clear advancement toward task completion
|
|
122
|
+
|
|
123
|
+
**NOT substantial**:
|
|
124
|
+
- Reading files
|
|
125
|
+
- Planning what to do
|
|
126
|
+
- Providing status updates
|
|
127
|
+
- Asking questions that could be answered by reading docs
|
|
128
|
+
|
|
129
|
+
### 4. Update Progress Tracking
|
|
130
|
+
|
|
131
|
+
**Only after implementing**, update `agent/progress.yaml`:
|
|
132
|
+
- Mark task as `completed` (if done) or `in_progress` (if partial)
|
|
133
|
+
- Add completion date (if done)
|
|
134
|
+
- **Ask user for actual hours spent**: "How many hours did this task take? (estimated: X hours)" - Update `actual_hours` field
|
|
108
135
|
- Update milestone progress percentage
|
|
109
|
-
-
|
|
110
|
-
-
|
|
111
|
-
- Update `next_steps` if needed
|
|
112
|
-
|
|
113
|
-
**Expected Outcome**: Progress tracking reflects completed work
|
|
136
|
+
- Add `recent_work` entry describing what was IMPLEMENTED
|
|
137
|
+
- Update `next_steps`
|
|
114
138
|
|
|
115
|
-
###
|
|
139
|
+
### 5. Report What Was IMPLEMENTED (Not What Will Be Done)
|
|
116
140
|
|
|
117
|
-
Provide
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
- Identify next task
|
|
123
|
-
- Note any blockers or issues
|
|
141
|
+
**Provide a completion report showing**:
|
|
142
|
+
- What files were created/modified
|
|
143
|
+
- What functionality was implemented
|
|
144
|
+
- What verification steps passed
|
|
145
|
+
- What remains (if task incomplete)
|
|
124
146
|
|
|
125
|
-
**
|
|
147
|
+
**DO NOT**:
|
|
148
|
+
- ❌ End with "ready to continue"
|
|
149
|
+
- ❌ Ask if user wants to proceed
|
|
150
|
+
- ❌ Suggest next steps without implementing them
|
|
126
151
|
|
|
127
152
|
---
|
|
128
153
|
|