@cleocode/caamp 0.2.0 → 0.4.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/README.md +19 -2
- package/dist/{chunk-RW745KDU.js → chunk-ZYINKJDE.js} +948 -122
- package/dist/chunk-ZYINKJDE.js.map +1 -0
- package/dist/cli.js +1225 -29
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1764 -80
- package/dist/index.js +39 -1
- package/package.json +14 -10
- package/dist/chunk-RW745KDU.js.map +0 -1
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
|
|
17
17
|
CAAMP is a unified provider registry and package manager for AI coding agents. It replaces the need to manually configure each agent's MCP servers, skills, and instruction files individually -- handling the differences in config formats (JSON, JSONC, YAML, TOML), config keys (`mcpServers`, `mcp_servers`, `extensions`, `mcp`, `servers`, `context_servers`), and file paths across all supported providers.
|
|
18
18
|
|
|
19
|
+
CAAMP adopts an LLM-Agent-First Specification (LAFS) baseline for agent-facing outputs: machine-readable by default, human-readable by explicit opt-in, with MVI-focused token efficiency.
|
|
20
|
+
|
|
19
21
|
## Install
|
|
20
22
|
|
|
21
23
|
```bash
|
|
@@ -62,7 +64,7 @@ const installed = getInstalledProviders();
|
|
|
62
64
|
const servers = await listAllMcpServers(installed, "global");
|
|
63
65
|
```
|
|
64
66
|
|
|
65
|
-
See [API Reference](docs/API-REFERENCE.md) for full
|
|
67
|
+
See [API Reference](docs/API-REFERENCE.md) for full programmatic API documentation.
|
|
66
68
|
|
|
67
69
|
## CLI Commands
|
|
68
70
|
|
|
@@ -115,6 +117,17 @@ caamp config show <provider> # Show provider config contents
|
|
|
115
117
|
caamp config path <provider> # Show config file path
|
|
116
118
|
```
|
|
117
119
|
|
|
120
|
+
### Advanced (LAFS-compliant wrappers)
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
caamp advanced providers --min-tier medium --details
|
|
124
|
+
caamp advanced batch --mcp-file ./mcp-batch.json --skills-file ./skills-batch.json
|
|
125
|
+
caamp advanced conflicts --mcp-file ./mcp-batch.json
|
|
126
|
+
caamp advanced apply --mcp-file ./mcp-batch.json --policy skip
|
|
127
|
+
caamp advanced instructions --content-file ./AGENT-BLOCK.md --scope project
|
|
128
|
+
caamp advanced configure -a claude-code --global-mcp-file ./global-mcp.json --project-mcp-file ./project-mcp.json
|
|
129
|
+
```
|
|
130
|
+
|
|
118
131
|
## Global Flags
|
|
119
132
|
|
|
120
133
|
| Flag | Description |
|
|
@@ -183,10 +196,14 @@ Each provider uses a different key name for MCP server configuration:
|
|
|
183
196
|
|
|
184
197
|
| Document | Description |
|
|
185
198
|
|----------|-------------|
|
|
186
|
-
| [API Reference](docs/API-REFERENCE.md) | Full library API (
|
|
199
|
+
| [API Reference](docs/API-REFERENCE.md) | Full library API (signatures and examples) |
|
|
200
|
+
| [Advanced CLI](docs/ADVANCED-CLI.md) | LAFS-compliant advanced command wrappers and input/output schemas |
|
|
201
|
+
| [Advanced Recipes](docs/ADVANCED-RECIPES.md) | Production TypeScript patterns for tier filtering, rollback, conflict handling, and dual-scope operations |
|
|
202
|
+
| [Generated API Docs](docs/api/) | Auto-generated from TSDoc (run `npm run docs:api`) |
|
|
187
203
|
| [Vision & Architecture](claudedocs/VISION.md) | Project vision, design philosophy, and architecture |
|
|
188
204
|
| [Product Requirements](claudedocs/PRD.md) | Full PRD with user stories and feature requirements |
|
|
189
205
|
| [Technical Specification](claudedocs/specs/CAAMP-SPEC.md) | RFC 2119 spec covering all subsystems |
|
|
206
|
+
| [LAFS Specification](lafs.md) | Cross-language LLM-agent-first protocol for output, context, and MVI |
|
|
190
207
|
| [Gap Analysis & Roadmap](claudedocs/GAP-ANALYSIS.md) | Current state vs plan, v0.2.0+ roadmap |
|
|
191
208
|
|
|
192
209
|
## Contributing
|