@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.
Files changed (101) hide show
  1. package/.env.example +6 -0
  2. package/AGENT.md +224 -21
  3. package/CHANGELOG.md +155 -915
  4. package/README.md +130 -1
  5. package/agent/commands/acp.command-create.md +372 -0
  6. package/agent/commands/acp.design-create.md +224 -0
  7. package/agent/commands/acp.init.md +39 -5
  8. package/agent/commands/acp.package-create.md +894 -0
  9. package/agent/commands/acp.package-info.md +211 -0
  10. package/agent/commands/acp.package-install.md +206 -33
  11. package/agent/commands/acp.package-list.md +279 -0
  12. package/agent/commands/acp.package-publish.md +540 -0
  13. package/agent/commands/acp.package-remove.md +292 -0
  14. package/agent/commands/acp.package-search.md +306 -0
  15. package/agent/commands/acp.package-update.md +360 -0
  16. package/agent/commands/acp.package-validate.md +539 -0
  17. package/agent/commands/acp.pattern-create.md +326 -0
  18. package/agent/commands/acp.plan.md +552 -0
  19. package/agent/commands/acp.proceed.md +111 -86
  20. package/agent/commands/acp.project-create.md +672 -0
  21. package/agent/commands/acp.project-list.md +224 -0
  22. package/agent/commands/acp.project-set.md +226 -0
  23. package/agent/commands/acp.report.md +2 -0
  24. package/agent/commands/acp.resume.md +237 -0
  25. package/agent/commands/acp.sync.md +55 -15
  26. package/agent/commands/acp.task-create.md +390 -0
  27. package/agent/commands/acp.validate.md +61 -10
  28. package/agent/commands/acp.version-check-for-updates.md +5 -5
  29. package/agent/commands/acp.version-check.md +6 -6
  30. package/agent/commands/acp.version-update.md +6 -6
  31. package/agent/commands/command.template.md +43 -0
  32. package/agent/commands/git.commit.md +5 -3
  33. package/agent/design/soft-delete-system.md +291 -0
  34. package/agent/manifest.template.yaml +13 -0
  35. package/agent/milestones/milestone-13-soft-delete-system.md +306 -0
  36. package/agent/package.template.yaml +36 -0
  37. package/agent/progress.template.yaml +3 -0
  38. package/agent/progress.yaml +238 -6
  39. package/agent/scripts/acp.common.sh +1536 -0
  40. package/agent/scripts/{install.sh → acp.install.sh} +82 -26
  41. package/agent/scripts/acp.package-create.sh +925 -0
  42. package/agent/scripts/acp.package-info.sh +270 -0
  43. package/agent/scripts/acp.package-install.sh +596 -0
  44. package/agent/scripts/acp.package-list.sh +263 -0
  45. package/agent/scripts/acp.package-publish.sh +420 -0
  46. package/agent/scripts/acp.package-remove.sh +272 -0
  47. package/agent/scripts/acp.package-search.sh +156 -0
  48. package/agent/scripts/acp.package-update.sh +438 -0
  49. package/agent/scripts/acp.package-validate.sh +855 -0
  50. package/agent/scripts/acp.project-list.sh +121 -0
  51. package/agent/scripts/acp.project-set.sh +138 -0
  52. package/agent/scripts/{uninstall.sh → acp.uninstall.sh} +25 -15
  53. package/agent/scripts/{check-for-updates.sh → acp.version-check-for-updates.sh} +24 -14
  54. package/agent/scripts/{version.sh → acp.version-check.sh} +20 -8
  55. package/agent/scripts/{update.sh → acp.version-update.sh} +44 -25
  56. package/agent/scripts/acp.yaml-parser.sh +853 -0
  57. package/agent/scripts/acp.yaml-validate.sh +205 -0
  58. package/agent/tasks/task-68-fix-missing-space-properties.md +192 -0
  59. package/agent/tasks/task-69-add-comprehensive-tool-debugging.md +454 -0
  60. package/agent/tasks/task-70-add-soft-delete-schema-fields.md +165 -0
  61. package/agent/tasks/task-71-implement-delete-confirmation-flow.md +257 -0
  62. package/agent/tasks/task-72-add-deleted-filter-to-search-tools.md +18 -0
  63. package/agent/tasks/task-73-update-relationship-handling.md +18 -0
  64. package/agent/tasks/task-74-add-unit-tests-soft-delete.md +18 -0
  65. package/agent/tasks/task-75-update-documentation-changelog.md +26 -0
  66. package/dist/config.d.ts +18 -0
  67. package/dist/server-factory.js +788 -355
  68. package/dist/server.js +788 -355
  69. package/dist/tools/delete-memory.d.ts +5 -30
  70. package/dist/tools/find-similar.d.ts +8 -1
  71. package/dist/tools/query-memory.d.ts +8 -1
  72. package/dist/tools/search-memory.d.ts +6 -0
  73. package/dist/tools/search-relationship.d.ts +8 -1
  74. package/dist/types/memory.d.ts +8 -0
  75. package/dist/types/space-memory.d.ts +3 -0
  76. package/dist/utils/debug.d.ts +52 -0
  77. package/dist/utils/debug.spec.d.ts +5 -0
  78. package/dist/utils/weaviate-filters.d.ts +19 -0
  79. package/dist/weaviate/client.d.ts +1 -1
  80. package/package.json +1 -1
  81. package/src/config.ts +33 -0
  82. package/src/tools/confirm.ts +113 -8
  83. package/src/tools/create-relationship.ts +14 -1
  84. package/src/tools/delete-memory.ts +91 -63
  85. package/src/tools/find-similar.ts +30 -5
  86. package/src/tools/publish.ts +19 -1
  87. package/src/tools/query-memory.ts +18 -5
  88. package/src/tools/query-space.ts +36 -3
  89. package/src/tools/search-memory.ts +18 -5
  90. package/src/tools/search-relationship.ts +19 -5
  91. package/src/tools/search-space.ts +36 -3
  92. package/src/tools/update-memory.ts +8 -0
  93. package/src/types/memory.ts +11 -0
  94. package/src/types/space-memory.ts +5 -0
  95. package/src/utils/debug.spec.ts +257 -0
  96. package/src/utils/debug.ts +138 -0
  97. package/src/utils/weaviate-filters.ts +28 -1
  98. package/src/weaviate/client.ts +47 -3
  99. package/src/weaviate/schema.ts +17 -0
  100. package/src/weaviate/space-schema.spec.ts +5 -2
  101. package/src/weaviate/space-schema.ts +17 -5
@@ -1,16 +1,35 @@
1
1
  # Command: proceed
2
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.
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.0.0
25
+ **Version**: 1.1.0
7
26
  **Created**: 2026-02-16
8
- **Last Updated**: 2026-02-16
27
+ **Last Updated**: 2026-02-18
9
28
  **Status**: Active
10
29
 
11
30
  ---
12
31
 
13
- **Purpose**: Continue with the current or next task, executing steps and updating progress tracking
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
- 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.
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
- 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.
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
- 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.
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
- ### 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
78
+ ### 🚨 CRITICAL: These are IMPLEMENTATION steps, not planning steps
90
79
 
91
- Check all verification items from the task document.
80
+ ### 1. Identify Current Task (30 seconds max)
92
81
 
93
82
  **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
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
- - 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
136
+ - Add `recent_work` entry describing what was IMPLEMENTED
137
+ - Update `next_steps`
114
138
 
115
- ### 7. Report Progress
139
+ ### 5. Report What Was IMPLEMENTED (Not What Will Be Done)
116
140
 
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
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
- **Expected Outcome**: User informed of progress and next steps
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