@cleocode/caamp 0.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/README.md +85 -0
- package/dist/chunk-63BH7QMR.js +1998 -0
- package/dist/chunk-63BH7QMR.js.map +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +941 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +465 -0
- package/dist/index.js +119 -0
- package/dist/index.js.map +1 -0
- package/package.json +70 -0
- package/providers/registry.json +721 -0
package/README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# CAAMP - Central AI Agent Managed Packages
|
|
2
|
+
|
|
3
|
+
Unified provider registry and package manager for AI coding agents. One CLI to manage Skills, MCP servers, and instruction files across 28+ AI coding tools.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx caamp <command>
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Commands
|
|
12
|
+
|
|
13
|
+
### Providers
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
caamp providers list # List all 28+ supported providers
|
|
17
|
+
caamp providers detect # Auto-detect installed providers
|
|
18
|
+
caamp providers show <id> # Show provider details
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Skills
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
caamp skills install <source> # Install from GitHub/marketplace
|
|
25
|
+
caamp skills remove [name] # Remove skill(s)
|
|
26
|
+
caamp skills list [-g] # List installed skills
|
|
27
|
+
caamp skills find [query] # Search marketplace
|
|
28
|
+
caamp skills init [name] # Create new skill template
|
|
29
|
+
caamp skills validate [path] # Validate SKILL.md
|
|
30
|
+
caamp skills audit [path] # Security scan (46+ rules, SARIF)
|
|
31
|
+
caamp skills check # Check for updates
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### MCP Servers
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
caamp mcp install <source> # Install MCP server to agent configs
|
|
38
|
+
caamp mcp remove <name> # Remove MCP server
|
|
39
|
+
caamp mcp list # List configured servers
|
|
40
|
+
caamp mcp detect # Auto-detect MCP configs
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Instructions
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
caamp instructions inject # Inject blocks into instruction files
|
|
47
|
+
caamp instructions check # Check injection status
|
|
48
|
+
caamp instructions update # Update all injections
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Config
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
caamp config show <provider> # Show provider config
|
|
55
|
+
caamp config path <provider> # Show config file path
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Global Flags
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
-a, --agent <name> Target specific agent(s), repeatable
|
|
62
|
+
-g, --global Use global scope (default: project)
|
|
63
|
+
-y, --yes Skip confirmation prompts
|
|
64
|
+
--all Target all detected agents
|
|
65
|
+
--json JSON output
|
|
66
|
+
--dry-run Preview without writing
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Supported Providers
|
|
70
|
+
|
|
71
|
+
| Priority | Providers |
|
|
72
|
+
|----------|-----------|
|
|
73
|
+
| High | Claude Code, Cursor, Windsurf |
|
|
74
|
+
| Medium | Codex, Gemini CLI, GitHub Copilot, OpenCode, Cline, Kimi, VS Code, Zed, Claude Desktop |
|
|
75
|
+
| Low | Roo, Continue, Goose, Antigravity, Kiro, Amp, Trae, Aide, Pear AI, Void AI, Cody, Kilo Code, Qwen Code, OpenHands, CodeBuddy, CodeStory |
|
|
76
|
+
|
|
77
|
+
## Instruction File Mapping
|
|
78
|
+
|
|
79
|
+
- `CLAUDE.md` - Claude Code only
|
|
80
|
+
- `GEMINI.md` - Gemini CLI only
|
|
81
|
+
- `AGENTS.md` - All other providers (Cursor, Windsurf, Codex, Kimi, etc.)
|
|
82
|
+
|
|
83
|
+
## License
|
|
84
|
+
|
|
85
|
+
MIT
|