@cleocode/caamp 0.3.0 → 0.4.1

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 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 documentation of all 82 exported symbols.
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,11 +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 (82 exports with signatures and examples) |
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 |
187
202
  | [Generated API Docs](docs/api/) | Auto-generated from TSDoc (run `npm run docs:api`) |
188
203
  | [Vision & Architecture](claudedocs/VISION.md) | Project vision, design philosophy, and architecture |
189
204
  | [Product Requirements](claudedocs/PRD.md) | Full PRD with user stories and feature requirements |
190
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 |
191
207
  | [Gap Analysis & Roadmap](claudedocs/GAP-ANALYSIS.md) | Current state vs plan, v0.2.0+ roadmap |
192
208
 
193
209
  ## Contributing