@prmichaelsen/remember-mcp 4.0.2 → 4.1.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 +1 -1
- package/CHANGELOG.md +12 -0
- package/agent/commands/acp.artifact-glossary.md +22 -0
- package/agent/commands/acp.artifact-reference.md +21 -0
- package/agent/commands/acp.artifact-research.md +20 -0
- package/agent/commands/acp.audit.md +19 -0
- package/agent/commands/acp.clarification-address.md +20 -0
- package/agent/commands/acp.clarification-capture.md +9 -0
- package/agent/commands/acp.clarification-create.md +20 -0
- package/agent/commands/acp.command-create.md +20 -0
- package/agent/commands/acp.design-create.md +20 -0
- package/agent/commands/acp.design-reference.md +9 -0
- package/agent/commands/acp.handoff.md +17 -0
- package/agent/commands/acp.index.md +23 -0
- package/agent/commands/acp.init.md +25 -2
- package/agent/commands/acp.package-create.md +14 -0
- package/agent/commands/acp.package-info.md +17 -0
- package/agent/commands/acp.package-install.md +20 -0
- package/agent/commands/acp.package-list.md +20 -0
- package/agent/commands/acp.package-publish.md +13 -0
- package/agent/commands/acp.package-remove.md +18 -0
- package/agent/commands/acp.package-search.md +19 -0
- package/agent/commands/acp.package-update.md +21 -0
- package/agent/commands/acp.package-validate.md +14 -0
- package/agent/commands/acp.pattern-create.md +20 -0
- package/agent/commands/acp.plan.md +42 -13
- package/agent/commands/acp.proceed.md +55 -21
- package/agent/commands/acp.project-create.md +13 -0
- package/agent/commands/acp.project-info.md +17 -0
- package/agent/commands/acp.project-list.md +19 -0
- package/agent/commands/acp.project-remove.md +18 -0
- package/agent/commands/acp.project-set.md +16 -0
- package/agent/commands/acp.project-update.md +22 -0
- package/agent/commands/acp.projects-restore.md +18 -0
- package/agent/commands/acp.projects-sync.md +14 -0
- package/agent/commands/acp.report.md +15 -0
- package/agent/commands/acp.resume.md +15 -0
- package/agent/commands/acp.sessions.md +21 -0
- package/agent/commands/acp.status.md +15 -0
- package/agent/commands/acp.sync.md +15 -0
- package/agent/commands/acp.task-create.md +21 -0
- package/agent/commands/acp.update.md +15 -0
- package/agent/commands/acp.validate.md +25 -2
- package/agent/commands/acp.version-check-for-updates.md +13 -0
- package/agent/commands/acp.version-check.md +13 -0
- package/agent/commands/acp.version-update.md +14 -0
- package/agent/commands/command.template.md +33 -0
- package/agent/commands/git.commit.md +14 -0
- package/agent/commands/git.init.md +13 -0
- package/agent/manifest.yaml +3 -3
- package/agent/milestones/milestone-24-mcp-elicitation-confirmation.md +99 -0
- package/agent/progress.yaml +1406 -1327
- package/agent/tasks/milestone-24-mcp-elicitation-confirmation/task-530-create-elicitation-helper.md +78 -0
- package/agent/tasks/milestone-24-mcp-elicitation-confirmation/task-531-update-handler-signatures.md +62 -0
- package/agent/tasks/milestone-24-mcp-elicitation-confirmation/task-532-implement-elicitation-in-tools.md +113 -0
- package/agent/tasks/milestone-24-mcp-elicitation-confirmation/task-533-wire-server-instance.md +62 -0
- package/agent/tasks/milestone-24-mcp-elicitation-confirmation/task-534-verification-cleanup.md +60 -0
- package/dist/server-factory.js +183 -13
- package/dist/server.js +183 -13
- package/dist/tools/delete-memory.d.ts +2 -1
- package/dist/tools/publish.d.ts +2 -1
- package/dist/tools/request-set-trust-level.d.ts +2 -1
- package/dist/tools/retract.d.ts +2 -1
- package/dist/tools/revise.d.ts +2 -1
- package/dist/utils/elicitation.d.ts +31 -0
- package/package.json +1 -1
- package/src/server-factory.ts +5 -5
- package/src/server.ts +5 -5
- package/src/tools/delete-memory.ts +51 -3
- package/src/tools/publish.ts +37 -1
- package/src/tools/request-set-trust-level.ts +35 -4
- package/src/tools/retract.ts +37 -1
- package/src/tools/revise.ts +39 -1
- package/src/utils/elicitation.ts +53 -0
package/AGENT.md
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [4.1.0] - 2026-03-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- MCP elicitation support for protected operations (publish, retract, revise, delete, set-trust-level)
|
|
12
|
+
- `src/utils/elicitation.ts` — shared helper that checks client capabilities and issues confirmation prompts
|
|
13
|
+
- When elicitation is supported, protected tools confirm with the user directly and execute inline (no token round-trip)
|
|
14
|
+
- Graceful fallback to existing token + `remember_confirm`/`remember_deny` flow for non-elicitation clients
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Protected tool handlers (`handlePublish`, `handleRetract`, `handleRevise`, `handleDeleteMemory`, `handleRequestSetTrustLevel`) accept optional `server` parameter
|
|
18
|
+
- `server.ts` and `server-factory.ts` pass `Server` instance to protected tool handlers
|
|
19
|
+
|
|
8
20
|
## [4.0.0] - 2026-03-20
|
|
9
21
|
|
|
10
22
|
### BREAKING CHANGES
|
|
@@ -68,6 +68,28 @@ Unlike research artifacts (external knowledge) or reference artifacts (passive i
|
|
|
68
68
|
|
|
69
69
|
## Steps
|
|
70
70
|
|
|
71
|
+
### 0. Display Command Header
|
|
72
|
+
|
|
73
|
+
Display the following informational header, then continue immediately:
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
⚡ @acp.artifact-glossary
|
|
77
|
+
Create and maintain project glossaries through auto-extraction and interactive refinement
|
|
78
|
+
|
|
79
|
+
Usage:
|
|
80
|
+
@acp.artifact-glossary Create or update glossary (auto-detect)
|
|
81
|
+
@acp.artifact-glossary --create Force create new glossary
|
|
82
|
+
@acp.artifact-glossary --update Update existing glossary
|
|
83
|
+
@acp.artifact-glossary --scope <path> Limit extraction to directory
|
|
84
|
+
@acp.artifact-glossary --interactive Prompt for every term
|
|
85
|
+
@acp.artifact-glossary --auto Accept all inferred definitions
|
|
86
|
+
|
|
87
|
+
Related:
|
|
88
|
+
@acp.artifact-research Create research artifacts
|
|
89
|
+
@acp.artifact-reference Create reference guides
|
|
90
|
+
@acp.sync Detect glossary staleness
|
|
91
|
+
```
|
|
92
|
+
|
|
71
93
|
### 1. Determine Mode
|
|
72
94
|
|
|
73
95
|
Decide whether to create or update a glossary.
|
|
@@ -72,6 +72,27 @@ Reference artifacts are appropriate for:
|
|
|
72
72
|
|
|
73
73
|
## Steps
|
|
74
74
|
|
|
75
|
+
### 0. Display Command Header
|
|
76
|
+
|
|
77
|
+
Display the following informational header, then continue immediately:
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
⚡ @acp.artifact-reference
|
|
81
|
+
Create reference guides for passive information after command-first principle check
|
|
82
|
+
|
|
83
|
+
Usage:
|
|
84
|
+
@acp.artifact-reference <topic> Create reference for topic
|
|
85
|
+
@acp.artifact-reference --type <type> Specify reference type
|
|
86
|
+
@acp.artifact-reference --from-clarification <f> Pull topic from clarification
|
|
87
|
+
@acp.artifact-reference --skip-check Skip command-first principle check
|
|
88
|
+
@acp.artifact-reference --no-commit Skip auto-commit, leave staged
|
|
89
|
+
|
|
90
|
+
Related:
|
|
91
|
+
@acp.artifact-research Create research artifacts
|
|
92
|
+
@acp.artifact-glossary Create terminology glossaries
|
|
93
|
+
@acp.command-create Create commands (if content is executable)
|
|
94
|
+
```
|
|
95
|
+
|
|
75
96
|
### 1. Determine Reference Topic
|
|
76
97
|
|
|
77
98
|
Identify what reference to create.
|
|
@@ -69,6 +69,26 @@ All findings require exact citations with confidence scores (1-10) and reproduci
|
|
|
69
69
|
|
|
70
70
|
## Steps
|
|
71
71
|
|
|
72
|
+
### 0. Display Command Header
|
|
73
|
+
|
|
74
|
+
Display the following informational header, then continue immediately:
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
⚡ @acp.artifact-research
|
|
78
|
+
Create long-lived research artifacts via systematic investigation with web/MCP integration and quality standards
|
|
79
|
+
|
|
80
|
+
Usage:
|
|
81
|
+
@acp.artifact-research <topic> Research a specific topic
|
|
82
|
+
@acp.artifact-research --from-clarification <f> Pull topic from clarification file
|
|
83
|
+
@acp.artifact-research --shallow Skip web research, codebase only
|
|
84
|
+
@acp.artifact-research --no-commit Skip auto-commit, leave staged
|
|
85
|
+
|
|
86
|
+
Related:
|
|
87
|
+
@acp.artifact-glossary Create terminology glossaries
|
|
88
|
+
@acp.artifact-reference Create reference guides
|
|
89
|
+
@acp.audit Deep-dive investigation (ephemeral)
|
|
90
|
+
```
|
|
91
|
+
|
|
72
92
|
### 1. Determine Research Topic
|
|
73
93
|
|
|
74
94
|
Identify what to research.
|
|
@@ -59,6 +59,25 @@ Use this when you need a thorough understanding of a subject before acting — r
|
|
|
59
59
|
|
|
60
60
|
## Steps
|
|
61
61
|
|
|
62
|
+
### 0. Display Command Header
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
⚡ @acp.audit
|
|
66
|
+
Deep-dive investigation of a subject, producing a structured report
|
|
67
|
+
|
|
68
|
+
Usage:
|
|
69
|
+
@acp.audit Infer subject from context
|
|
70
|
+
@acp.audit <subject> Audit a named subject or path
|
|
71
|
+
@acp.audit --output <path> Custom report output path
|
|
72
|
+
|
|
73
|
+
Related:
|
|
74
|
+
@acp.init Broad context loading (not deep dives)
|
|
75
|
+
@acp.status Quick status snapshot
|
|
76
|
+
@acp.validate Schema and consistency validation
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
This step is informational only — do not wait for user input.
|
|
80
|
+
|
|
62
81
|
### 1. Parse Subject
|
|
63
82
|
|
|
64
83
|
Determine what to audit from the user's invocation.
|
|
@@ -80,6 +80,26 @@ Use `--shallow` for a quick pass when you've left "research this" or "agent: ...
|
|
|
80
80
|
|
|
81
81
|
## Steps
|
|
82
82
|
|
|
83
|
+
### 0. Display Command Header
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
⚡ @acp.clarification-address
|
|
87
|
+
Address clarification responses by researching, exploring code/web, and presenting recommendations
|
|
88
|
+
|
|
89
|
+
Usage:
|
|
90
|
+
@acp.clarification-address Address latest (deep, default)
|
|
91
|
+
@acp.clarification-address <file> Address a specific file
|
|
92
|
+
@acp.clarification-address --shallow Quick codebase-only pass
|
|
93
|
+
@acp.clarification-address --dry-run Preview without modifying
|
|
94
|
+
|
|
95
|
+
Related:
|
|
96
|
+
@acp.clarification-create Create clarification documents
|
|
97
|
+
@acp.clarification-capture Capture decisions into design docs / tasks
|
|
98
|
+
@acp.design-create Create design documents
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
This step is informational only — do not wait for user input.
|
|
102
|
+
|
|
83
103
|
### 1. Locate Clarification File
|
|
84
104
|
|
|
85
105
|
Find the clarification file to process.
|
|
@@ -72,6 +72,15 @@ The directive is called internally by create commands after context detection an
|
|
|
72
72
|
|
|
73
73
|
## Steps
|
|
74
74
|
|
|
75
|
+
### 0. Display Directive Header
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
⚡ @acp.clarification-capture
|
|
79
|
+
Capture decisions from ephemeral clarification files and chat context into permanent entity documents
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
This step is informational only — do not wait for user input.
|
|
83
|
+
|
|
75
84
|
### 1. Detect Context Sources
|
|
76
85
|
|
|
77
86
|
Determine which sources to capture from based on arguments or auto-detection.
|
|
@@ -58,6 +58,26 @@ Use this command when you need to gather detailed information about ambiguous re
|
|
|
58
58
|
|
|
59
59
|
## Steps
|
|
60
60
|
|
|
61
|
+
### 0. Display Command Header
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
⚡ @acp.clarification-create
|
|
65
|
+
Create clarification documents from file input or chat to gather detailed requirements
|
|
66
|
+
|
|
67
|
+
Usage:
|
|
68
|
+
@acp.clarification-create Interactive mode
|
|
69
|
+
@acp.clarification-create --file <path> Analyze source file
|
|
70
|
+
@acp.clarification-create -t <title> Set clarification title
|
|
71
|
+
@acp.clarification-create --auto Auto-generate questions
|
|
72
|
+
|
|
73
|
+
Related:
|
|
74
|
+
@acp.clarification-address Address responses with research and recommendations
|
|
75
|
+
@acp.design-create Create design documents (often follows clarification)
|
|
76
|
+
@acp.task-create Create tasks (may use clarification answers)
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
This step is informational only — do not wait for user input.
|
|
80
|
+
|
|
61
81
|
### 1. Determine Next Clarification Number
|
|
62
82
|
|
|
63
83
|
Find the next available clarification number:
|
|
@@ -63,6 +63,26 @@ This command creates a new command file with intelligent namespace handling, opt
|
|
|
63
63
|
|
|
64
64
|
## Steps
|
|
65
65
|
|
|
66
|
+
### 0. Display Command Header
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
⚡ @acp.command-create
|
|
70
|
+
Create command files with namespace enforcement, draft support, and automatic package updates
|
|
71
|
+
|
|
72
|
+
Usage:
|
|
73
|
+
@acp.command-create Guided command creation
|
|
74
|
+
@acp.command-create @my-draft.md Create from draft file
|
|
75
|
+
@acp.command-create --from-clar <file> Capture from specific clarification
|
|
76
|
+
@acp.command-create --from-context Capture from all sources
|
|
77
|
+
|
|
78
|
+
Related:
|
|
79
|
+
@acp.pattern-create Create patterns
|
|
80
|
+
@acp.design-create Create designs
|
|
81
|
+
@acp.package-validate Validate package after creation
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
This step is informational only — do not wait for user input.
|
|
85
|
+
|
|
66
86
|
### 1. Detect Context
|
|
67
87
|
|
|
68
88
|
Determine if in package or project directory:
|
|
@@ -63,6 +63,26 @@ This command creates a new design document with intelligent namespace handling,
|
|
|
63
63
|
|
|
64
64
|
## Steps
|
|
65
65
|
|
|
66
|
+
### 0. Display Command Header
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
⚡ @acp.design-create
|
|
70
|
+
Create design documents with namespace enforcement, draft support, and automatic package updates
|
|
71
|
+
|
|
72
|
+
Usage:
|
|
73
|
+
@acp.design-create Guided design creation
|
|
74
|
+
@acp.design-create @my-draft.md Create from draft file
|
|
75
|
+
@acp.design-create --from-context Capture from all sources
|
|
76
|
+
@acp.design-create --no-commit Skip automatic commit
|
|
77
|
+
|
|
78
|
+
Related:
|
|
79
|
+
@acp.pattern-create Create patterns
|
|
80
|
+
@acp.command-create Create commands
|
|
81
|
+
@acp.package-validate Validate package after creation
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
This step is informational only — do not wait for user input.
|
|
85
|
+
|
|
66
86
|
### 1. Detect Context
|
|
67
87
|
|
|
68
88
|
Determine if in package or project directory:
|
|
@@ -62,6 +62,15 @@ This directive dynamically discovers design documents relevant to the current ta
|
|
|
62
62
|
|
|
63
63
|
## Steps
|
|
64
64
|
|
|
65
|
+
### 0. Display Directive Header
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
⚡ @acp.design-reference
|
|
69
|
+
Discover and cross-reference design documents to ensure tasks have complete implementation detail
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
This step is informational only — do not wait for user input.
|
|
73
|
+
|
|
65
74
|
### 1. Determine Topic
|
|
66
75
|
|
|
67
76
|
Extract topic keywords from the calling context to form a search query.
|
|
@@ -56,6 +56,23 @@ The report is written to be understandable by any agent, though ACP-aware agents
|
|
|
56
56
|
|
|
57
57
|
## Steps
|
|
58
58
|
|
|
59
|
+
### 0. Display Command Header
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
⚡ @acp.handoff
|
|
63
|
+
Generate a context-aware handoff report for transferring work to another agent context
|
|
64
|
+
|
|
65
|
+
Usage:
|
|
66
|
+
@acp.handoff Infer target from context
|
|
67
|
+
@acp.handoff --to <project> Handoff to a named project or path
|
|
68
|
+
|
|
69
|
+
Related:
|
|
70
|
+
@acp.report Generate session reports (same project)
|
|
71
|
+
@acp.status Check current project status
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
This step is informational only — do not wait for user input.
|
|
75
|
+
|
|
59
76
|
### 1. Identify Target Project
|
|
60
77
|
|
|
61
78
|
Determine where the handoff is going.
|
|
@@ -71,6 +71,29 @@ See also: `agent/design/local.key-file-index-system.md`
|
|
|
71
71
|
|
|
72
72
|
## Steps
|
|
73
73
|
|
|
74
|
+
### 0. Display Command Header
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
⚡ @acp.index
|
|
78
|
+
Manage the key file index — list, add, remove, explore, and show indexed key files
|
|
79
|
+
|
|
80
|
+
Usage:
|
|
81
|
+
@acp.index List all indexed key files
|
|
82
|
+
@acp.index add <path> Add a file to the index
|
|
83
|
+
@acp.index remove <path> Remove a file from the index
|
|
84
|
+
@acp.index explore Scan codebase and suggest key files
|
|
85
|
+
@acp.index show Show full metadata for all entries
|
|
86
|
+
|
|
87
|
+
Related:
|
|
88
|
+
@acp.init Reads key files during initialization
|
|
89
|
+
@acp.proceed Reads contextual key files before tasks
|
|
90
|
+
@acp.validate Validates index file paths and schema
|
|
91
|
+
@acp.design-create Prompts to add new designs to index
|
|
92
|
+
@acp.pattern-create Prompts to add new patterns to index
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
This step is informational only — do not wait for user input.
|
|
96
|
+
|
|
74
97
|
### 1. Check Index Directory
|
|
75
98
|
|
|
76
99
|
**Actions**:
|
|
@@ -70,6 +70,25 @@ Unlike `@acp-status` which only reads progress.yaml, or `@acp-proceed` which foc
|
|
|
70
70
|
|
|
71
71
|
## Steps
|
|
72
72
|
|
|
73
|
+
### 0. Display Command Header
|
|
74
|
+
|
|
75
|
+
Display the following informational header, then continue immediately:
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
⚡ @acp.init
|
|
79
|
+
Initialize agent context by loading documentation, reviewing source code, and preparing for work
|
|
80
|
+
|
|
81
|
+
Usage:
|
|
82
|
+
@acp.init Full initialization
|
|
83
|
+
@acp.init --quick Skip version checks, files, sync
|
|
84
|
+
@acp.init --skip <items> Skip specific steps
|
|
85
|
+
|
|
86
|
+
Related:
|
|
87
|
+
@acp.proceed Start working on current task
|
|
88
|
+
@acp.status Quick status check without full init
|
|
89
|
+
@acp.version-check-for-updates Part of init process
|
|
90
|
+
```
|
|
91
|
+
|
|
73
92
|
### 1. Check for ACP Updates
|
|
74
93
|
|
|
75
94
|
**Skip item**: `checks` | **Skipped by**: `--quick`
|
|
@@ -211,14 +230,18 @@ Load critical project files from the key file index.
|
|
|
211
230
|
|
|
212
231
|
**Display format**:
|
|
213
232
|
```
|
|
214
|
-
📑 Reading Key Files...
|
|
233
|
+
📑 Reading Key Files & Context...
|
|
215
234
|
✓ agent/design/acp-commands-design.md (weight: 0.9, design)
|
|
216
235
|
✓ agent/patterns/local.e2e-testing.md (weight: 0.8, pattern)
|
|
236
|
+
📝 "Migration files MUST be numbered sequentia..." (weight: 1.0, note)
|
|
237
|
+
⚡ "Never modify files in src/legacy/ without..." (weight: 0.9, directive)
|
|
217
238
|
○ agent/patterns/local.tracked-untracked-directories.md (weight: 0.7, skipped — below threshold)
|
|
218
239
|
|
|
219
|
-
2 index files scanned, 2
|
|
240
|
+
2 index files scanned, 2 files read, 2 inline entries loaded, 1 skipped
|
|
220
241
|
```
|
|
221
242
|
|
|
243
|
+
**Inline entries** (`path: null`): For entries with `kind: note` or `kind: directive`, the `description` field IS the content. Display the first ~40 characters of the description in quotes. Use 📝 for notes, ⚡ for directives.
|
|
244
|
+
|
|
222
245
|
**Expected Outcome**: High-importance key files loaded into context
|
|
223
246
|
|
|
224
247
|
**Note**: If `agent/index/` does not exist, skip this step silently. The index is optional but recommended.
|
|
@@ -63,6 +63,20 @@ This happens automatically - no manual setup required.
|
|
|
63
63
|
|
|
64
64
|
## Steps
|
|
65
65
|
|
|
66
|
+
### 0. Display Command Header
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
⚡ @acp.package-create
|
|
70
|
+
Create a new ACP package with full installation and hooks
|
|
71
|
+
|
|
72
|
+
Related:
|
|
73
|
+
@acp.pattern-create Create patterns in package
|
|
74
|
+
@acp.command-create Create commands in package
|
|
75
|
+
@acp.design-create Create designs in package
|
|
76
|
+
@acp.package-validate Validate package before publishing
|
|
77
|
+
@acp.package-publish Publish package to GitHub
|
|
78
|
+
```
|
|
79
|
+
|
|
66
80
|
### 1. Gather Package Information via Chat
|
|
67
81
|
|
|
68
82
|
**IMPORTANT**: Collect all information from the user via chat BEFORE executing the script.
|
|
@@ -36,6 +36,23 @@ Use this command when you need detailed information about a package (local or gl
|
|
|
36
36
|
|
|
37
37
|
## Steps
|
|
38
38
|
|
|
39
|
+
### 0. Display Command Header
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
⚡ @acp.package-info
|
|
43
|
+
Display detailed information about an installed package
|
|
44
|
+
|
|
45
|
+
Usage:
|
|
46
|
+
@acp.package-info <package-name> Show local package info
|
|
47
|
+
@acp.package-info --global <package-name> Show global package info
|
|
48
|
+
|
|
49
|
+
Related:
|
|
50
|
+
@acp.package-list List all installed packages
|
|
51
|
+
@acp.package-update Update package
|
|
52
|
+
@acp.package-remove Remove package
|
|
53
|
+
@acp.package-install Install package
|
|
54
|
+
```
|
|
55
|
+
|
|
39
56
|
### 1. Run Package Info Script
|
|
40
57
|
|
|
41
58
|
Execute the info script with the package name.
|
|
@@ -99,6 +99,26 @@ This happens automatically - no manual setup required.
|
|
|
99
99
|
|
|
100
100
|
## Steps
|
|
101
101
|
|
|
102
|
+
### 0. Display Command Header
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
⚡ @acp.package-install
|
|
106
|
+
Install third-party command packages from git repositories
|
|
107
|
+
|
|
108
|
+
Usage:
|
|
109
|
+
@acp.package-install Install package (prompted for repo)
|
|
110
|
+
@acp.package-install --global Install to ~/.acp/ globally
|
|
111
|
+
@acp.package-install --list Preview files without installing
|
|
112
|
+
@acp.package-install --patterns Install only patterns
|
|
113
|
+
@acp.package-install --commands Install only commands
|
|
114
|
+
@acp.package-install --experimental Include experimental features
|
|
115
|
+
|
|
116
|
+
Related:
|
|
117
|
+
@acp.validate Validate installed commands
|
|
118
|
+
@acp.version-update Update core ACP commands
|
|
119
|
+
@acp.status View project status
|
|
120
|
+
```
|
|
121
|
+
|
|
102
122
|
### 1. Choose Installation Mode
|
|
103
123
|
|
|
104
124
|
Decide what to install from the package.
|
|
@@ -47,6 +47,26 @@ This happens automatically - no manual setup required.
|
|
|
47
47
|
|
|
48
48
|
## Steps
|
|
49
49
|
|
|
50
|
+
### 0. Display Command Header
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
⚡ @acp.package-list
|
|
54
|
+
List installed ACP packages with versions and details
|
|
55
|
+
|
|
56
|
+
Usage:
|
|
57
|
+
@acp.package-list List local packages
|
|
58
|
+
@acp.package-list --global List global packages
|
|
59
|
+
@acp.package-list --verbose Show detailed information
|
|
60
|
+
@acp.package-list --outdated Show packages with updates
|
|
61
|
+
@acp.package-list --modified Show packages with local changes
|
|
62
|
+
|
|
63
|
+
Related:
|
|
64
|
+
@acp.package-install Install packages
|
|
65
|
+
@acp.package-update Update packages
|
|
66
|
+
@acp.package-info Show detailed package info
|
|
67
|
+
@acp.package-remove Remove packages
|
|
68
|
+
```
|
|
69
|
+
|
|
50
70
|
### 1. Run Package List Script
|
|
51
71
|
|
|
52
72
|
Execute the list script with desired options.
|
|
@@ -41,6 +41,19 @@ Unlike manual publishing which is error-prone and time-consuming, this command p
|
|
|
41
41
|
|
|
42
42
|
## Steps
|
|
43
43
|
|
|
44
|
+
### 0. Display Command Header
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
⚡ @acp.package-publish
|
|
48
|
+
Automated package publishing with validation and testing
|
|
49
|
+
|
|
50
|
+
Related:
|
|
51
|
+
@acp.package-validate Validate package before publishing
|
|
52
|
+
@acp.package-create Create new package
|
|
53
|
+
@acp.pattern-create Add patterns to package
|
|
54
|
+
@acp.command-create Add commands to package
|
|
55
|
+
```
|
|
56
|
+
|
|
44
57
|
### 1. Run Non-Destructive Validation
|
|
45
58
|
|
|
46
59
|
Validate package before making any changes.
|
|
@@ -36,6 +36,24 @@ Use this command when you no longer need a package, want to clean up unused depe
|
|
|
36
36
|
|
|
37
37
|
## Steps
|
|
38
38
|
|
|
39
|
+
### 0. Display Command Header
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
⚡ @acp.package-remove
|
|
43
|
+
Remove installed ACP packages and clean up manifest
|
|
44
|
+
|
|
45
|
+
Usage:
|
|
46
|
+
@acp.package-remove <package-name> Remove package (prompted)
|
|
47
|
+
@acp.package-remove -y <package-name> Remove without confirmation
|
|
48
|
+
@acp.package-remove --keep-modified <name> Keep locally modified files
|
|
49
|
+
|
|
50
|
+
Related:
|
|
51
|
+
@acp.package-install Install packages
|
|
52
|
+
@acp.package-list List installed packages
|
|
53
|
+
@acp.package-info Show package details
|
|
54
|
+
@acp.package-update Update packages
|
|
55
|
+
```
|
|
56
|
+
|
|
39
57
|
### 1. Run Package Remove Script
|
|
40
58
|
|
|
41
59
|
Execute the remove script with the package name.
|
|
@@ -38,6 +38,25 @@ Use this command when you want to discover available ACP packages, find packages
|
|
|
38
38
|
|
|
39
39
|
## Steps
|
|
40
40
|
|
|
41
|
+
### 0. Display Command Header
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
⚡ @acp.package-search
|
|
45
|
+
Discover ACP packages on GitHub using the GitHub API
|
|
46
|
+
|
|
47
|
+
Usage:
|
|
48
|
+
@acp.package-search <query> Search by keyword
|
|
49
|
+
@acp.package-search --tag <tag> Filter by tag
|
|
50
|
+
@acp.package-search --user <username> Search user's packages
|
|
51
|
+
@acp.package-search --sort updated Sort by recently updated
|
|
52
|
+
@acp.package-search --limit <n> Limit results
|
|
53
|
+
|
|
54
|
+
Related:
|
|
55
|
+
@acp.package-install Install discovered packages
|
|
56
|
+
@acp.package-list List installed packages
|
|
57
|
+
@acp.package-info Show package details
|
|
58
|
+
```
|
|
59
|
+
|
|
41
60
|
### 1. Run Package Search Script
|
|
42
61
|
|
|
43
62
|
Execute the search script with your query.
|
|
@@ -39,6 +39,27 @@ Unlike `@acp.version-update` which updates ACP itself, this command updates thir
|
|
|
39
39
|
|
|
40
40
|
## Steps
|
|
41
41
|
|
|
42
|
+
### 0. Display Command Header
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
⚡ @acp.package-update
|
|
46
|
+
Update installed ACP packages to latest versions
|
|
47
|
+
|
|
48
|
+
Usage:
|
|
49
|
+
@acp.package-update Update all packages
|
|
50
|
+
@acp.package-update <package-name> Update specific package
|
|
51
|
+
@acp.package-update --check Preview available updates
|
|
52
|
+
@acp.package-update --skip-modified Skip locally modified files
|
|
53
|
+
@acp.package-update --force Overwrite modified files
|
|
54
|
+
@acp.package-update --global Update global packages
|
|
55
|
+
|
|
56
|
+
Related:
|
|
57
|
+
@acp.package-install Install packages
|
|
58
|
+
@acp.package-list List installed packages
|
|
59
|
+
@acp.package-info Show package details
|
|
60
|
+
@acp.version-update Update ACP itself (not packages)
|
|
61
|
+
```
|
|
62
|
+
|
|
42
63
|
### 1. Choose Update Mode
|
|
43
64
|
|
|
44
65
|
Decide what to update.
|
|
@@ -40,6 +40,20 @@ Unlike `@acp.validate` which validates general ACP documentation, `@acp.package-
|
|
|
40
40
|
|
|
41
41
|
## Steps
|
|
42
42
|
|
|
43
|
+
### 0. Display Command Header
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
⚡ @acp.package-validate
|
|
47
|
+
Comprehensive package validation with auto-fix
|
|
48
|
+
|
|
49
|
+
Related:
|
|
50
|
+
@acp.validate General ACP validation
|
|
51
|
+
@acp.package-publish Publish package (runs validation first)
|
|
52
|
+
@acp.pattern-create Create patterns
|
|
53
|
+
@acp.command-create Create commands
|
|
54
|
+
@acp.design-create Create designs
|
|
55
|
+
```
|
|
56
|
+
|
|
43
57
|
### 1. Detect Package Context
|
|
44
58
|
|
|
45
59
|
Verify this is a package directory.
|
|
@@ -63,6 +63,26 @@ This command creates a new pattern file with intelligent namespace handling, opt
|
|
|
63
63
|
|
|
64
64
|
## Steps
|
|
65
65
|
|
|
66
|
+
### 0. Display Command Header
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
⚡ @acp.pattern-create
|
|
70
|
+
Create pattern files with namespace enforcement, draft support, and automatic package updates
|
|
71
|
+
|
|
72
|
+
Usage:
|
|
73
|
+
@acp.pattern-create Guided pattern creation
|
|
74
|
+
@acp.pattern-create @my-draft.md Create from draft file
|
|
75
|
+
@acp.pattern-create --from-context Capture from all sources
|
|
76
|
+
@acp.pattern-create --no-commit Skip automatic commit
|
|
77
|
+
|
|
78
|
+
Related:
|
|
79
|
+
@acp.command-create Create commands
|
|
80
|
+
@acp.design-create Create designs
|
|
81
|
+
@acp.package-validate Validate package after creation
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
This step is informational only — do not wait for user input.
|
|
85
|
+
|
|
66
86
|
### 1. Detect Context
|
|
67
87
|
|
|
68
88
|
Determine if in package or project directory:
|