@cleocode/caamp 1.0.1 → 1.0.3
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 +18 -15
- package/dist/{chunk-VAFYP7CI.js → chunk-PBHH6KMJ.js} +2934 -2912
- package/dist/chunk-PBHH6KMJ.js.map +1 -0
- package/dist/cli.js +2136 -2048
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +13 -5
- package/dist/chunk-VAFYP7CI.js.map +0 -1
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
<img src="https://img.shields.io/node/v/@cleocode/caamp" alt="node version" />
|
|
9
9
|
<img src="https://img.shields.io/badge/providers-44-green" alt="providers" />
|
|
10
10
|
<img src="https://img.shields.io/badge/TypeScript-strict-blue" alt="typescript" />
|
|
11
|
+
<a href="https://codluv.gitbook.io/caamp/"><img src="https://img.shields.io/badge/docs-GitBook-blue?logo=gitbook" alt="docs" /></a>
|
|
11
12
|
</p>
|
|
12
13
|
|
|
13
14
|
# CAAMP - Central AI Agent Managed Packages
|
|
@@ -64,7 +65,7 @@ const installed = getInstalledProviders();
|
|
|
64
65
|
const servers = await listAllMcpServers(installed, "global");
|
|
65
66
|
```
|
|
66
67
|
|
|
67
|
-
See [API Reference](
|
|
68
|
+
See [API Reference](https://codluv.gitbook.io/caamp/api-and-reference/api-reference) for full programmatic API documentation.
|
|
68
69
|
|
|
69
70
|
## CLI Commands
|
|
70
71
|
|
|
@@ -209,23 +210,25 @@ Each provider uses a different key name for MCP server configuration:
|
|
|
209
210
|
|
|
210
211
|
## Documentation
|
|
211
212
|
|
|
213
|
+
**[Read the full documentation on GitBook](https://codluv.gitbook.io/caamp/)**
|
|
214
|
+
|
|
212
215
|
| Document | Description |
|
|
213
216
|
|----------|-------------|
|
|
214
|
-
| [API Reference](
|
|
215
|
-
| [Advanced CLI](
|
|
216
|
-
| [Advanced Recipes](
|
|
217
|
-
| [Provider Configuration Guide](
|
|
218
|
-
| [Migration Guide](
|
|
219
|
-
| [Troubleshooting](
|
|
220
|
-
| [CLI Help Examples](
|
|
221
|
-
| [
|
|
222
|
-
| [
|
|
223
|
-
| [
|
|
224
|
-
| [
|
|
225
|
-
| [
|
|
226
|
-
| [Technical Specification](claudedocs/specs/CAAMP-SPEC.md) | RFC 2119 spec covering all subsystems |
|
|
217
|
+
| [API Reference](https://codluv.gitbook.io/caamp/api-and-reference/api-reference) | Full library API (signatures and examples) |
|
|
218
|
+
| [Advanced CLI](https://codluv.gitbook.io/caamp/advanced-usage/advanced-cli) | LAFS-compliant advanced command wrappers and input/output schemas |
|
|
219
|
+
| [Advanced Recipes](https://codluv.gitbook.io/caamp/advanced-usage/advanced-recipes) | Production TypeScript patterns for tier filtering, rollback, conflict handling, and dual-scope operations |
|
|
220
|
+
| [Provider Configuration Guide](https://codluv.gitbook.io/caamp/user-guides/provider-configuration) | Config keys, formats, scopes, and provider mapping guidance |
|
|
221
|
+
| [Migration Guide](https://codluv.gitbook.io/caamp/getting-started/migration-v1) | Upgrade notes for moving to v1.0.0 |
|
|
222
|
+
| [Troubleshooting](https://codluv.gitbook.io/caamp/user-guides/troubleshooting) | Common failure modes and remediation steps |
|
|
223
|
+
| [CLI Help Examples](https://codluv.gitbook.io/caamp/user-guides/cli-help-examples) | `--help` command examples for every command group |
|
|
224
|
+
| [Skills Recommendations](https://codluv.gitbook.io/caamp/advanced-usage/skills-recommendations) | Marketplace search and recommendation engine |
|
|
225
|
+
| [Contributing](https://codluv.gitbook.io/caamp/contributing/contributing) | Development workflow and PR expectations |
|
|
226
|
+
| [Security Policy](https://codluv.gitbook.io/caamp/contributing/security) | Private vulnerability disclosure process |
|
|
227
|
+
| [LAFS Compliance Profile](https://codluv.gitbook.io/caamp/api-and-reference/lafs-compliance) | CAAMP-specific LAFS adoption scope and compliance mapping |
|
|
228
|
+
| [Agents Directory Standard](https://codluv.gitbook.io/caamp/api-and-reference/agents-directory-standard) | `.agents/` standard directory structure |
|
|
227
229
|
| [LAFS Specification](https://github.com/kryptobaseddev/lafs-protocol/blob/main/lafs.md) | Canonical cross-language LLM-agent-first protocol |
|
|
228
|
-
| [
|
|
230
|
+
| [Technical Specification](claudedocs/specs/CAAMP-SPEC.md) | RFC 2119 spec covering all subsystems |
|
|
231
|
+
| [Vision & Architecture](claudedocs/VISION.md) | Project vision, design philosophy, and architecture |
|
|
229
232
|
| [Gap Analysis & Roadmap](claudedocs/GAP-ANALYSIS.md) | Current state vs plan, v0.2.0+ roadmap |
|
|
230
233
|
|
|
231
234
|
## Contributing
|