@cleocode/caamp 1.5.2 → 1.6.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 +25 -0
- package/dist/{chunk-ZEXRZTQX.js → chunk-N5E7BZM2.js} +267 -80
- package/dist/chunk-N5E7BZM2.js.map +1 -0
- package/dist/cli.js +240 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +273 -52
- package/dist/index.js +23 -1
- package/package.json +2 -1
- package/providers/registry.json +121 -10
- package/dist/chunk-ZEXRZTQX.js.map +0 -1
package/providers/registry.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"lastUpdated": "2026-02
|
|
2
|
+
"version": "1.1.0",
|
|
3
|
+
"lastUpdated": "2026-03-02",
|
|
4
4
|
"providers": {
|
|
5
5
|
"claude-code": {
|
|
6
6
|
"id": "claude-code",
|
|
@@ -26,7 +26,21 @@
|
|
|
26
26
|
"supportsHeaders": true,
|
|
27
27
|
"priority": "high",
|
|
28
28
|
"status": "active",
|
|
29
|
-
"agentSkillsCompatible": true
|
|
29
|
+
"agentSkillsCompatible": true,
|
|
30
|
+
"capabilities": {
|
|
31
|
+
"hooks": {
|
|
32
|
+
"supported": ["onSessionStart", "onSessionEnd", "onToolStart", "onToolComplete", "onPromptSubmit", "onResponseComplete"],
|
|
33
|
+
"hookConfigPath": null,
|
|
34
|
+
"hookFormat": "json"
|
|
35
|
+
},
|
|
36
|
+
"spawn": {
|
|
37
|
+
"supportsSubagents": true,
|
|
38
|
+
"supportsProgrammaticSpawn": true,
|
|
39
|
+
"supportsInterAgentComms": true,
|
|
40
|
+
"supportsParallelSpawn": true,
|
|
41
|
+
"spawnMechanism": "native"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
30
44
|
},
|
|
31
45
|
"cursor": {
|
|
32
46
|
"id": "cursor",
|
|
@@ -52,7 +66,14 @@
|
|
|
52
66
|
"supportsHeaders": true,
|
|
53
67
|
"priority": "high",
|
|
54
68
|
"status": "active",
|
|
55
|
-
"agentSkillsCompatible": true
|
|
69
|
+
"agentSkillsCompatible": true,
|
|
70
|
+
"capabilities": {
|
|
71
|
+
"skills": {
|
|
72
|
+
"precedence": "vendor-global-agents-project",
|
|
73
|
+
"agentsGlobalPath": null,
|
|
74
|
+
"agentsProjectPath": ".agents/skills"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
56
77
|
},
|
|
57
78
|
"windsurf": {
|
|
58
79
|
"id": "windsurf",
|
|
@@ -104,7 +125,26 @@
|
|
|
104
125
|
"supportsHeaders": true,
|
|
105
126
|
"priority": "medium",
|
|
106
127
|
"status": "active",
|
|
107
|
-
"agentSkillsCompatible": true
|
|
128
|
+
"agentSkillsCompatible": true,
|
|
129
|
+
"capabilities": {
|
|
130
|
+
"skills": {
|
|
131
|
+
"precedence": "agents-canonical",
|
|
132
|
+
"agentsGlobalPath": "$HOME/.agents/skills",
|
|
133
|
+
"agentsProjectPath": ".agents/skills"
|
|
134
|
+
},
|
|
135
|
+
"hooks": {
|
|
136
|
+
"supported": ["onToolStart", "onToolComplete", "onSessionStart", "onSessionEnd"],
|
|
137
|
+
"hookConfigPath": null,
|
|
138
|
+
"hookFormat": "json"
|
|
139
|
+
},
|
|
140
|
+
"spawn": {
|
|
141
|
+
"supportsSubagents": true,
|
|
142
|
+
"supportsProgrammaticSpawn": true,
|
|
143
|
+
"supportsInterAgentComms": false,
|
|
144
|
+
"supportsParallelSpawn": true,
|
|
145
|
+
"spawnMechanism": "cli"
|
|
146
|
+
}
|
|
147
|
+
}
|
|
108
148
|
},
|
|
109
149
|
"gemini-cli": {
|
|
110
150
|
"id": "gemini-cli",
|
|
@@ -130,7 +170,26 @@
|
|
|
130
170
|
"supportsHeaders": true,
|
|
131
171
|
"priority": "medium",
|
|
132
172
|
"status": "active",
|
|
133
|
-
"agentSkillsCompatible": true
|
|
173
|
+
"agentSkillsCompatible": true,
|
|
174
|
+
"capabilities": {
|
|
175
|
+
"skills": {
|
|
176
|
+
"precedence": "agents-first",
|
|
177
|
+
"agentsGlobalPath": "$HOME/.agents/skills",
|
|
178
|
+
"agentsProjectPath": ".agents/skills"
|
|
179
|
+
},
|
|
180
|
+
"hooks": {
|
|
181
|
+
"supported": ["onSessionStart", "onSessionEnd", "onToolStart", "onToolComplete", "onPromptSubmit", "onResponseComplete"],
|
|
182
|
+
"hookConfigPath": "$HOME/.gemini/settings.json",
|
|
183
|
+
"hookFormat": "json"
|
|
184
|
+
},
|
|
185
|
+
"spawn": {
|
|
186
|
+
"supportsSubagents": true,
|
|
187
|
+
"supportsProgrammaticSpawn": true,
|
|
188
|
+
"supportsInterAgentComms": false,
|
|
189
|
+
"supportsParallelSpawn": false,
|
|
190
|
+
"spawnMechanism": "cli"
|
|
191
|
+
}
|
|
192
|
+
}
|
|
134
193
|
},
|
|
135
194
|
"github-copilot": {
|
|
136
195
|
"id": "github-copilot",
|
|
@@ -155,7 +214,14 @@
|
|
|
155
214
|
"supportsHeaders": true,
|
|
156
215
|
"priority": "medium",
|
|
157
216
|
"status": "active",
|
|
158
|
-
"agentSkillsCompatible": true
|
|
217
|
+
"agentSkillsCompatible": true,
|
|
218
|
+
"capabilities": {
|
|
219
|
+
"skills": {
|
|
220
|
+
"precedence": "agents-supported",
|
|
221
|
+
"agentsGlobalPath": "$HOME/.agents/skills",
|
|
222
|
+
"agentsProjectPath": ".agents/skills"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
159
225
|
},
|
|
160
226
|
"opencode": {
|
|
161
227
|
"id": "opencode",
|
|
@@ -180,7 +246,26 @@
|
|
|
180
246
|
"supportsHeaders": true,
|
|
181
247
|
"priority": "medium",
|
|
182
248
|
"status": "active",
|
|
183
|
-
"agentSkillsCompatible": true
|
|
249
|
+
"agentSkillsCompatible": true,
|
|
250
|
+
"capabilities": {
|
|
251
|
+
"skills": {
|
|
252
|
+
"precedence": "agents-supported",
|
|
253
|
+
"agentsGlobalPath": "$HOME/.agents/skills",
|
|
254
|
+
"agentsProjectPath": ".agents/skills"
|
|
255
|
+
},
|
|
256
|
+
"hooks": {
|
|
257
|
+
"supported": ["onToolStart", "onToolComplete", "onSessionStart", "onSessionEnd", "onPromptSubmit", "onResponseComplete"],
|
|
258
|
+
"hookConfigPath": null,
|
|
259
|
+
"hookFormat": "json"
|
|
260
|
+
},
|
|
261
|
+
"spawn": {
|
|
262
|
+
"supportsSubagents": true,
|
|
263
|
+
"supportsProgrammaticSpawn": true,
|
|
264
|
+
"supportsInterAgentComms": true,
|
|
265
|
+
"supportsParallelSpawn": true,
|
|
266
|
+
"spawnMechanism": "native"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
184
269
|
},
|
|
185
270
|
"cline": {
|
|
186
271
|
"id": "cline",
|
|
@@ -231,7 +316,26 @@
|
|
|
231
316
|
"supportsHeaders": true,
|
|
232
317
|
"priority": "medium",
|
|
233
318
|
"status": "active",
|
|
234
|
-
"agentSkillsCompatible": true
|
|
319
|
+
"agentSkillsCompatible": true,
|
|
320
|
+
"capabilities": {
|
|
321
|
+
"skills": {
|
|
322
|
+
"precedence": "vendor-only",
|
|
323
|
+
"agentsGlobalPath": null,
|
|
324
|
+
"agentsProjectPath": null
|
|
325
|
+
},
|
|
326
|
+
"hooks": {
|
|
327
|
+
"supported": ["onToolStart", "onToolComplete", "onPromptSubmit", "onResponseComplete"],
|
|
328
|
+
"hookConfigPath": null,
|
|
329
|
+
"hookFormat": "json"
|
|
330
|
+
},
|
|
331
|
+
"spawn": {
|
|
332
|
+
"supportsSubagents": false,
|
|
333
|
+
"supportsProgrammaticSpawn": false,
|
|
334
|
+
"supportsInterAgentComms": false,
|
|
335
|
+
"supportsParallelSpawn": false,
|
|
336
|
+
"spawnMechanism": null
|
|
337
|
+
}
|
|
338
|
+
}
|
|
235
339
|
},
|
|
236
340
|
"vscode": {
|
|
237
341
|
"id": "vscode",
|
|
@@ -410,7 +514,14 @@
|
|
|
410
514
|
"supportsHeaders": true,
|
|
411
515
|
"priority": "low",
|
|
412
516
|
"status": "active",
|
|
413
|
-
"agentSkillsCompatible": true
|
|
517
|
+
"agentSkillsCompatible": true,
|
|
518
|
+
"capabilities": {
|
|
519
|
+
"skills": {
|
|
520
|
+
"precedence": "vendor-global-agents-project",
|
|
521
|
+
"agentsGlobalPath": null,
|
|
522
|
+
"agentsProjectPath": ".agents/skills"
|
|
523
|
+
}
|
|
524
|
+
}
|
|
414
525
|
},
|
|
415
526
|
"kiro-cli": {
|
|
416
527
|
"id": "kiro-cli",
|