@prmichaelsen/remember-mcp 2.7.11 → 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.
- package/.env.example +6 -0
- package/AGENT.md +224 -21
- package/CHANGELOG.md +47 -937
- package/README.md +35 -0
- package/agent/commands/acp.command-create.md +373 -0
- package/agent/commands/acp.design-create.md +225 -0
- package/agent/commands/acp.init.md +40 -5
- package/agent/commands/acp.package-create.md +895 -0
- package/agent/commands/acp.package-info.md +212 -0
- package/agent/commands/acp.package-install.md +207 -33
- package/agent/commands/acp.package-list.md +280 -0
- package/agent/commands/acp.package-publish.md +541 -0
- package/agent/commands/acp.package-remove.md +293 -0
- package/agent/commands/acp.package-search.md +307 -0
- package/agent/commands/acp.package-update.md +361 -0
- package/agent/commands/acp.package-validate.md +540 -0
- package/agent/commands/acp.pattern-create.md +327 -0
- package/agent/commands/acp.plan.md +553 -0
- package/agent/commands/acp.proceed.md +112 -86
- package/agent/commands/acp.project-create.md +673 -0
- package/agent/commands/acp.project-list.md +225 -0
- package/agent/commands/acp.project-set.md +227 -0
- package/agent/commands/acp.report.md +3 -0
- package/agent/commands/acp.resume.md +238 -0
- package/agent/commands/acp.status.md +1 -0
- package/agent/commands/acp.sync.md +56 -15
- package/agent/commands/acp.task-create.md +391 -0
- package/agent/commands/acp.update.md +1 -0
- package/agent/commands/acp.validate.md +62 -10
- package/agent/commands/acp.version-check-for-updates.md +6 -5
- package/agent/commands/acp.version-check.md +7 -6
- package/agent/commands/acp.version-update.md +7 -6
- package/agent/commands/command.template.md +48 -0
- package/agent/commands/git.commit.md +6 -3
- package/agent/commands/git.init.md +1 -0
- package/agent/manifest.template.yaml +13 -0
- package/agent/package.template.yaml +53 -0
- package/agent/progress.template.yaml +3 -0
- package/agent/progress.yaml +103 -5
- package/agent/scripts/acp.common.sh +1536 -0
- package/agent/scripts/acp.install.sh +293 -0
- 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 +675 -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 +954 -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/dist/config.d.ts +18 -0
- package/dist/server-factory.js +276 -19
- package/dist/server.js +276 -19
- package/dist/utils/debug.d.ts +52 -0
- package/dist/utils/debug.spec.d.ts +5 -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 +48 -7
- package/src/tools/publish.ts +19 -1
- package/src/tools/query-space.ts +36 -3
- package/src/tools/search-space.ts +36 -3
- package/src/utils/debug.spec.ts +257 -0
- package/src/utils/debug.ts +138 -0
- package/src/weaviate/client.ts +42 -3
- package/agent/scripts/install.sh +0 -157
|
@@ -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
|
|
|
@@ -41,7 +42,7 @@ Unlike `@acp-status` which only reads progress.yaml, or `@acp-proceed` which foc
|
|
|
41
42
|
Check if newer version of ACP is available.
|
|
42
43
|
|
|
43
44
|
**Actions**:
|
|
44
|
-
- Run `./agent/scripts/check-for-updates.sh` if it exists
|
|
45
|
+
- Run `./agent/scripts/acp.version-check-for-updates.sh` if it exists
|
|
45
46
|
- Report if updates are available
|
|
46
47
|
- Show what changed via CHANGELOG
|
|
47
48
|
- Ask if user wants to update (don't auto-update)
|
|
@@ -63,6 +64,40 @@ Load complete context from the agent/ directory.
|
|
|
63
64
|
|
|
64
65
|
**Expected Outcome**: Complete documentation context loaded
|
|
65
66
|
|
|
67
|
+
### 2.5. Discover Global Packages (Optional)
|
|
68
|
+
|
|
69
|
+
Check for globally installed ACP packages.
|
|
70
|
+
|
|
71
|
+
**Actions**:
|
|
72
|
+
- Check if `~/.acp/manifest.yaml` exists
|
|
73
|
+
- If exists, read global manifest
|
|
74
|
+
- List globally installed packages with versions
|
|
75
|
+
- Report available commands and patterns from global packages
|
|
76
|
+
- Note that local packages take precedence over global packages
|
|
77
|
+
|
|
78
|
+
**Expected Outcome**: Global packages discovered and reported (if any)
|
|
79
|
+
|
|
80
|
+
**Example Output**:
|
|
81
|
+
```
|
|
82
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
83
|
+
|
|
84
|
+
🌐 Global Packages Discovered...
|
|
85
|
+
✓ Read ~/.acp/manifest.yaml
|
|
86
|
+
|
|
87
|
+
Found 2 global packages:
|
|
88
|
+
• @prmichaelsen/acp-git (v1.0.0)
|
|
89
|
+
Location: ~/.acp/packages/@prmichaelsen/acp-git
|
|
90
|
+
2 commands: git.commit, git.init
|
|
91
|
+
|
|
92
|
+
• @prmichaelsen/acp-firebase (v1.2.0)
|
|
93
|
+
Location: ~/.acp/packages/@prmichaelsen/acp-firebase
|
|
94
|
+
3 patterns, 2 commands
|
|
95
|
+
|
|
96
|
+
ℹ️ Local packages take precedence over global packages
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
**Note**: This step is optional and graceful - if no global packages exist or manifest is not found, continue without error.
|
|
100
|
+
|
|
66
101
|
### 3. Identify Key Source Files
|
|
67
102
|
|
|
68
103
|
Determine which source files are most important to review.
|
|
@@ -198,8 +233,8 @@ Provide comprehensive status report.
|
|
|
198
233
|
✓ Read AGENT.md (1,055 lines)
|
|
199
234
|
✓ Read README.md (200 lines)
|
|
200
235
|
✓ Read CHANGELOG.md (50 lines)
|
|
201
|
-
✓ Read scripts/install.sh
|
|
202
|
-
✓ Read scripts/update.sh
|
|
236
|
+
✓ Read scripts/acp.install.sh
|
|
237
|
+
✓ Read scripts/acp.version-update.sh
|
|
203
238
|
✓ Read agent/commands/command.template.md
|
|
204
239
|
✓ Read agent/commands/acp.status.md
|
|
205
240
|
✓ Read agent/commands/acp.proceed.md
|
|
@@ -313,7 +348,7 @@ Ready to proceed with task-2 completion.
|
|
|
313
348
|
|
|
314
349
|
### Issue 2: Update check script not found
|
|
315
350
|
|
|
316
|
-
**Symptom**: Warning "check-for-updates.sh not found"
|
|
351
|
+
**Symptom**: Warning "acp.version-check-for-updates.sh not found"
|
|
317
352
|
|
|
318
353
|
**Cause**: Older ACP installation without update scripts
|
|
319
354
|
|
|
@@ -342,7 +377,7 @@ Ready to proceed with task-2 completion.
|
|
|
342
377
|
### File Access
|
|
343
378
|
- **Reads**: All files in `agent/` directory, key source files throughout project, AGENT.md, README.md, CHANGELOG.md
|
|
344
379
|
- **Writes**: `agent/progress.yaml` (updates status), design/task documents (if stale)
|
|
345
|
-
- **Executes**: `./agent/scripts/check-for-updates.sh` (if exists)
|
|
380
|
+
- **Executes**: `./agent/scripts/acp.version-check-for-updates.sh` (if exists)
|
|
346
381
|
|
|
347
382
|
### Network Access
|
|
348
383
|
- **APIs**: None directly (update check script may access GitHub)
|