brainclaw 1.6.0 → 1.7.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 +33 -9
- package/dist/brainclaw-vscode.vsix +0 -0
- package/dist/commands/mcp-schemas.generated.js +33 -0
- package/dist/commands/mcp.js +66 -31
- package/dist/commands/setup.js +64 -13
- package/dist/commands/switch.js +40 -8
- package/dist/core/agent-capability.js +19 -0
- package/dist/core/agent-files.js +86 -0
- package/dist/core/agent-integrations.js +34 -0
- package/dist/core/agent-inventory.js +27 -0
- package/dist/core/agentrun-reconciler.js +80 -15
- package/dist/core/ai-agent-detection.js +17 -1
- package/dist/core/claims.js +25 -3
- package/dist/core/dirty-scope.js +242 -0
- package/dist/core/facade-schema.js +17 -1
- package/dist/core/identity.js +40 -13
- package/dist/core/schema.js +2 -0
- package/dist/core/worktree.js +58 -0
- package/dist/facts.js +356 -3
- package/dist/facts.json +355 -2
- package/docs/cli.md +10 -7
- package/docs/concepts/troubleshooting.md +26 -0
- package/docs/index.md +4 -3
- package/docs/integrations/hermes.md +78 -0
- package/docs/integrations/overview.md +9 -7
- package/docs/mcp-schema-changelog.md +8 -1
- package/docs/quickstart-existing-project.md +1 -1
- package/package.json +5 -4
package/dist/facts.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Generated by scripts/emit-site-facts.mjs at build time. Do not edit manually.
|
|
2
|
-
// Source: brainclaw v1.
|
|
2
|
+
// Source: brainclaw v1.7.1 on 2026-06-02T10:24:49.702Z
|
|
3
3
|
export const FACTS = {
|
|
4
|
-
"version": "1.
|
|
5
|
-
"generated_at": "2026-
|
|
4
|
+
"version": "1.7.1",
|
|
5
|
+
"generated_at": "2026-06-02T10:24:49.702Z",
|
|
6
6
|
"tools": {
|
|
7
7
|
"count": 62,
|
|
8
8
|
"published_count": 61,
|
|
@@ -111,6 +111,359 @@ export const FACTS = {
|
|
|
111
111
|
"action": "act",
|
|
112
112
|
"cross_project_link": "xpl"
|
|
113
113
|
}
|
|
114
|
+
},
|
|
115
|
+
"agent_integrations": {
|
|
116
|
+
"count": 19,
|
|
117
|
+
"names": [
|
|
118
|
+
"antigravity",
|
|
119
|
+
"claude-code",
|
|
120
|
+
"claude-sonnet",
|
|
121
|
+
"cline",
|
|
122
|
+
"codex",
|
|
123
|
+
"continue",
|
|
124
|
+
"cursor",
|
|
125
|
+
"github-copilot",
|
|
126
|
+
"hermes",
|
|
127
|
+
"kilocode",
|
|
128
|
+
"mistral-vibe",
|
|
129
|
+
"nanoclaw",
|
|
130
|
+
"nemoclaw",
|
|
131
|
+
"openclaw",
|
|
132
|
+
"opencode",
|
|
133
|
+
"picoclaw",
|
|
134
|
+
"roo",
|
|
135
|
+
"windsurf",
|
|
136
|
+
"zeroclaw"
|
|
137
|
+
],
|
|
138
|
+
"profiles": [
|
|
139
|
+
{
|
|
140
|
+
"name": "antigravity",
|
|
141
|
+
"category": "code-agent",
|
|
142
|
+
"workflow_model": "interactive",
|
|
143
|
+
"tier": "B",
|
|
144
|
+
"has_mcp": true,
|
|
145
|
+
"has_hooks": false,
|
|
146
|
+
"has_skills": false,
|
|
147
|
+
"has_rules": true,
|
|
148
|
+
"instruction_file": "GEMINI.md",
|
|
149
|
+
"mcp_config_scope": "machine",
|
|
150
|
+
"role_capabilities": [
|
|
151
|
+
"execute",
|
|
152
|
+
"consult"
|
|
153
|
+
],
|
|
154
|
+
"max_concurrent_tasks": 2
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "claude-code",
|
|
158
|
+
"category": "code-agent",
|
|
159
|
+
"workflow_model": "interactive",
|
|
160
|
+
"tier": "A",
|
|
161
|
+
"has_mcp": true,
|
|
162
|
+
"has_hooks": true,
|
|
163
|
+
"has_skills": true,
|
|
164
|
+
"has_rules": true,
|
|
165
|
+
"instruction_file": "CLAUDE.md",
|
|
166
|
+
"mcp_config_scope": "both",
|
|
167
|
+
"role_capabilities": [
|
|
168
|
+
"execute",
|
|
169
|
+
"coordinate",
|
|
170
|
+
"review",
|
|
171
|
+
"consult"
|
|
172
|
+
],
|
|
173
|
+
"max_concurrent_tasks": 3
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "claude-sonnet",
|
|
177
|
+
"category": "code-agent",
|
|
178
|
+
"workflow_model": "interactive",
|
|
179
|
+
"tier": "A",
|
|
180
|
+
"has_mcp": true,
|
|
181
|
+
"has_hooks": true,
|
|
182
|
+
"has_skills": true,
|
|
183
|
+
"has_rules": true,
|
|
184
|
+
"instruction_file": "CLAUDE.md",
|
|
185
|
+
"mcp_config_scope": "both",
|
|
186
|
+
"role_capabilities": [
|
|
187
|
+
"execute",
|
|
188
|
+
"coordinate",
|
|
189
|
+
"review",
|
|
190
|
+
"consult"
|
|
191
|
+
],
|
|
192
|
+
"max_concurrent_tasks": 6
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"name": "cline",
|
|
196
|
+
"category": "code-agent",
|
|
197
|
+
"workflow_model": "interactive",
|
|
198
|
+
"tier": "A",
|
|
199
|
+
"has_mcp": true,
|
|
200
|
+
"has_hooks": true,
|
|
201
|
+
"has_skills": true,
|
|
202
|
+
"has_rules": true,
|
|
203
|
+
"instruction_file": ".clinerules/brainclaw.md",
|
|
204
|
+
"mcp_config_scope": "project",
|
|
205
|
+
"role_capabilities": [
|
|
206
|
+
"execute",
|
|
207
|
+
"review"
|
|
208
|
+
],
|
|
209
|
+
"max_concurrent_tasks": 3
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "codex",
|
|
213
|
+
"category": "code-agent",
|
|
214
|
+
"workflow_model": "task-based",
|
|
215
|
+
"tier": "A",
|
|
216
|
+
"has_mcp": true,
|
|
217
|
+
"has_hooks": true,
|
|
218
|
+
"has_skills": true,
|
|
219
|
+
"has_rules": true,
|
|
220
|
+
"instruction_file": "AGENTS.md",
|
|
221
|
+
"mcp_config_scope": "machine",
|
|
222
|
+
"role_capabilities": [
|
|
223
|
+
"execute",
|
|
224
|
+
"review"
|
|
225
|
+
],
|
|
226
|
+
"max_concurrent_tasks": 5
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "continue",
|
|
230
|
+
"category": "code-agent",
|
|
231
|
+
"workflow_model": "interactive",
|
|
232
|
+
"tier": "B",
|
|
233
|
+
"has_mcp": true,
|
|
234
|
+
"has_hooks": false,
|
|
235
|
+
"has_skills": false,
|
|
236
|
+
"has_rules": true,
|
|
237
|
+
"instruction_file": ".continue/rules/brainclaw.md",
|
|
238
|
+
"mcp_config_scope": "both",
|
|
239
|
+
"role_capabilities": [
|
|
240
|
+
"execute",
|
|
241
|
+
"consult"
|
|
242
|
+
],
|
|
243
|
+
"max_concurrent_tasks": 2
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "cursor",
|
|
247
|
+
"category": "code-agent",
|
|
248
|
+
"workflow_model": "interactive",
|
|
249
|
+
"tier": "A",
|
|
250
|
+
"has_mcp": true,
|
|
251
|
+
"has_hooks": true,
|
|
252
|
+
"has_skills": true,
|
|
253
|
+
"has_rules": true,
|
|
254
|
+
"instruction_file": ".cursor/rules/brainclaw.md",
|
|
255
|
+
"mcp_config_scope": "machine",
|
|
256
|
+
"role_capabilities": [
|
|
257
|
+
"execute",
|
|
258
|
+
"review"
|
|
259
|
+
],
|
|
260
|
+
"max_concurrent_tasks": 1
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "github-copilot",
|
|
264
|
+
"category": "code-agent",
|
|
265
|
+
"workflow_model": "interactive",
|
|
266
|
+
"tier": "A",
|
|
267
|
+
"has_mcp": true,
|
|
268
|
+
"has_hooks": true,
|
|
269
|
+
"has_skills": true,
|
|
270
|
+
"has_rules": true,
|
|
271
|
+
"instruction_file": ".github/copilot-instructions.md",
|
|
272
|
+
"mcp_config_scope": "project",
|
|
273
|
+
"role_capabilities": [
|
|
274
|
+
"execute",
|
|
275
|
+
"review",
|
|
276
|
+
"consult"
|
|
277
|
+
],
|
|
278
|
+
"max_concurrent_tasks": 1
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"name": "hermes",
|
|
282
|
+
"category": "autonomous-agent",
|
|
283
|
+
"workflow_model": "task-based",
|
|
284
|
+
"tier": "B",
|
|
285
|
+
"has_mcp": true,
|
|
286
|
+
"has_hooks": false,
|
|
287
|
+
"has_skills": true,
|
|
288
|
+
"has_rules": false,
|
|
289
|
+
"instruction_file": "AGENTS.md",
|
|
290
|
+
"mcp_config_scope": "machine",
|
|
291
|
+
"role_capabilities": [
|
|
292
|
+
"execute",
|
|
293
|
+
"review",
|
|
294
|
+
"consult"
|
|
295
|
+
],
|
|
296
|
+
"max_concurrent_tasks": 1
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "kilocode",
|
|
300
|
+
"category": "code-agent",
|
|
301
|
+
"workflow_model": "interactive",
|
|
302
|
+
"tier": "B",
|
|
303
|
+
"has_mcp": true,
|
|
304
|
+
"has_hooks": false,
|
|
305
|
+
"has_skills": true,
|
|
306
|
+
"has_rules": true,
|
|
307
|
+
"instruction_file": ".kilo/rules/brainclaw.md",
|
|
308
|
+
"mcp_config_scope": "project",
|
|
309
|
+
"role_capabilities": [
|
|
310
|
+
"execute",
|
|
311
|
+
"review",
|
|
312
|
+
"consult"
|
|
313
|
+
],
|
|
314
|
+
"max_concurrent_tasks": 2
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "mistral-vibe",
|
|
318
|
+
"category": "code-agent",
|
|
319
|
+
"workflow_model": "task-based",
|
|
320
|
+
"tier": "B",
|
|
321
|
+
"has_mcp": true,
|
|
322
|
+
"has_hooks": false,
|
|
323
|
+
"has_skills": true,
|
|
324
|
+
"has_rules": false,
|
|
325
|
+
"instruction_file": "AGENTS.md",
|
|
326
|
+
"mcp_config_scope": "both",
|
|
327
|
+
"role_capabilities": [
|
|
328
|
+
"execute",
|
|
329
|
+
"review",
|
|
330
|
+
"consult"
|
|
331
|
+
],
|
|
332
|
+
"max_concurrent_tasks": 2
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "nanoclaw",
|
|
336
|
+
"category": "autonomous-agent",
|
|
337
|
+
"workflow_model": "task-based",
|
|
338
|
+
"tier": "C",
|
|
339
|
+
"has_mcp": false,
|
|
340
|
+
"has_hooks": false,
|
|
341
|
+
"has_skills": true,
|
|
342
|
+
"has_rules": false,
|
|
343
|
+
"instruction_file": "skills/nanoclaw/SKILL.md",
|
|
344
|
+
"mcp_config_scope": "none",
|
|
345
|
+
"role_capabilities": [
|
|
346
|
+
"execute"
|
|
347
|
+
],
|
|
348
|
+
"max_concurrent_tasks": 1
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"name": "nemoclaw",
|
|
352
|
+
"category": "autonomous-agent",
|
|
353
|
+
"workflow_model": "task-based",
|
|
354
|
+
"tier": "C",
|
|
355
|
+
"has_mcp": false,
|
|
356
|
+
"has_hooks": false,
|
|
357
|
+
"has_skills": true,
|
|
358
|
+
"has_rules": false,
|
|
359
|
+
"instruction_file": "skills/nemoclaw/SKILL.md",
|
|
360
|
+
"mcp_config_scope": "none",
|
|
361
|
+
"role_capabilities": [
|
|
362
|
+
"execute"
|
|
363
|
+
],
|
|
364
|
+
"max_concurrent_tasks": 1
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"name": "openclaw",
|
|
368
|
+
"category": "autonomous-agent",
|
|
369
|
+
"workflow_model": "task-based",
|
|
370
|
+
"tier": "B",
|
|
371
|
+
"has_mcp": true,
|
|
372
|
+
"has_hooks": false,
|
|
373
|
+
"has_skills": true,
|
|
374
|
+
"has_rules": false,
|
|
375
|
+
"instruction_file": "skills/openclaw/SKILL.md",
|
|
376
|
+
"mcp_config_scope": "machine",
|
|
377
|
+
"role_capabilities": [
|
|
378
|
+
"execute",
|
|
379
|
+
"coordinate"
|
|
380
|
+
],
|
|
381
|
+
"max_concurrent_tasks": 1
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "opencode",
|
|
385
|
+
"category": "code-agent",
|
|
386
|
+
"workflow_model": "interactive",
|
|
387
|
+
"tier": "B",
|
|
388
|
+
"has_mcp": true,
|
|
389
|
+
"has_hooks": false,
|
|
390
|
+
"has_skills": false,
|
|
391
|
+
"has_rules": true,
|
|
392
|
+
"instruction_file": "AGENTS.md",
|
|
393
|
+
"mcp_config_scope": "project",
|
|
394
|
+
"role_capabilities": [
|
|
395
|
+
"execute",
|
|
396
|
+
"review"
|
|
397
|
+
],
|
|
398
|
+
"max_concurrent_tasks": 2
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "picoclaw",
|
|
402
|
+
"category": "autonomous-agent",
|
|
403
|
+
"workflow_model": "scheduled",
|
|
404
|
+
"tier": "C",
|
|
405
|
+
"has_mcp": false,
|
|
406
|
+
"has_hooks": false,
|
|
407
|
+
"has_skills": true,
|
|
408
|
+
"has_rules": false,
|
|
409
|
+
"instruction_file": "skills/picoclaw/SKILL.md",
|
|
410
|
+
"mcp_config_scope": "none",
|
|
411
|
+
"role_capabilities": [
|
|
412
|
+
"execute"
|
|
413
|
+
],
|
|
414
|
+
"max_concurrent_tasks": 1
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "roo",
|
|
418
|
+
"category": "code-agent",
|
|
419
|
+
"workflow_model": "interactive",
|
|
420
|
+
"tier": "B",
|
|
421
|
+
"has_mcp": true,
|
|
422
|
+
"has_hooks": false,
|
|
423
|
+
"has_skills": false,
|
|
424
|
+
"has_rules": true,
|
|
425
|
+
"instruction_file": ".roo/rules/brainclaw.md",
|
|
426
|
+
"mcp_config_scope": "project",
|
|
427
|
+
"role_capabilities": [
|
|
428
|
+
"execute",
|
|
429
|
+
"review"
|
|
430
|
+
],
|
|
431
|
+
"max_concurrent_tasks": 2
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"name": "windsurf",
|
|
435
|
+
"category": "code-agent",
|
|
436
|
+
"workflow_model": "interactive",
|
|
437
|
+
"tier": "A",
|
|
438
|
+
"has_mcp": true,
|
|
439
|
+
"has_hooks": true,
|
|
440
|
+
"has_skills": true,
|
|
441
|
+
"has_rules": true,
|
|
442
|
+
"instruction_file": ".windsurfrules",
|
|
443
|
+
"mcp_config_scope": "machine",
|
|
444
|
+
"role_capabilities": [
|
|
445
|
+
"execute",
|
|
446
|
+
"review"
|
|
447
|
+
],
|
|
448
|
+
"max_concurrent_tasks": 1
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"name": "zeroclaw",
|
|
452
|
+
"category": "autonomous-agent",
|
|
453
|
+
"workflow_model": "task-based",
|
|
454
|
+
"tier": "C",
|
|
455
|
+
"has_mcp": false,
|
|
456
|
+
"has_hooks": false,
|
|
457
|
+
"has_skills": true,
|
|
458
|
+
"has_rules": false,
|
|
459
|
+
"instruction_file": "skills/zeroclaw/SKILL.md",
|
|
460
|
+
"mcp_config_scope": "none",
|
|
461
|
+
"role_capabilities": [
|
|
462
|
+
"execute"
|
|
463
|
+
],
|
|
464
|
+
"max_concurrent_tasks": 1
|
|
465
|
+
}
|
|
466
|
+
]
|
|
114
467
|
}
|
|
115
468
|
}
|
|
116
469
|
export default FACTS
|