@claude-flow/cli 3.32.29 → 3.32.30
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/.claude/helpers/helpers.manifest.json +2 -2
- package/catalog-manifest.json +2 -2
- package/dist/src/init/claudemd-generator.js +53 -2
- package/dist/src/mcp-tools/capability-brain.js +22 -22
- package/dist/src/mcp-tools/guidance-tools.js +1 -1
- package/node_modules/@claude-flow/codex/.agents/skills/memory-management/SKILL.md +45 -0
- package/node_modules/@claude-flow/codex/.agents/skills/security-audit/SKILL.md +46 -0
- package/node_modules/@claude-flow/codex/.agents/skills/sparc-methodology/SKILL.md +46 -0
- package/node_modules/@claude-flow/codex/.agents/skills/swarm-orchestration/SKILL.md +53 -0
- package/node_modules/@claude-flow/codex/README.md +1044 -0
- package/node_modules/@claude-flow/codex/dist/cli.d.ts +9 -0
- package/node_modules/@claude-flow/codex/dist/cli.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/cli.js +686 -0
- package/node_modules/@claude-flow/codex/dist/cli.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/cli.d.ts +17 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/cli.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/cli.js +278 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/cli.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/index.d.ts +8 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/index.js +7 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.d.ts +143 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.js +621 -0
- package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/agents-md.d.ts +12 -0
- package/node_modules/@claude-flow/codex/dist/generators/agents-md.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/agents-md.js +730 -0
- package/node_modules/@claude-flow/codex/dist/generators/agents-md.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/config-toml.d.ts +74 -0
- package/node_modules/@claude-flow/codex/dist/generators/config-toml.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/config-toml.js +922 -0
- package/node_modules/@claude-flow/codex/dist/generators/config-toml.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/index.d.ts +9 -0
- package/node_modules/@claude-flow/codex/dist/generators/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/index.js +9 -0
- package/node_modules/@claude-flow/codex/dist/generators/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/skill-md.d.ts +20 -0
- package/node_modules/@claude-flow/codex/dist/generators/skill-md.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/generators/skill-md.js +951 -0
- package/node_modules/@claude-flow/codex/dist/generators/skill-md.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/build-evidence.d.ts +46 -0
- package/node_modules/@claude-flow/codex/dist/harness/build-evidence.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/build-evidence.js +126 -0
- package/node_modules/@claude-flow/codex/dist/harness/build-evidence.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/contract.d.ts +153 -0
- package/node_modules/@claude-flow/codex/dist/harness/contract.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/contract.js +44 -0
- package/node_modules/@claude-flow/codex/dist/harness/contract.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.d.ts +33 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.js +175 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.d.ts +42 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.js +140 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.d.ts +19 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.js +79 -0
- package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/index.d.ts +9 -0
- package/node_modules/@claude-flow/codex/dist/harness/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/index.js +9 -0
- package/node_modules/@claude-flow/codex/dist/harness/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.d.ts +8 -0
- package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.js +10 -0
- package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/repository-state.d.ts +68 -0
- package/node_modules/@claude-flow/codex/dist/harness/repository-state.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/repository-state.js +403 -0
- package/node_modules/@claude-flow/codex/dist/harness/repository-state.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.d.ts +3 -0
- package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.js +14 -0
- package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/index.d.ts +53 -0
- package/node_modules/@claude-flow/codex/dist/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/index.js +54 -0
- package/node_modules/@claude-flow/codex/dist/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/initializer.d.ts +98 -0
- package/node_modules/@claude-flow/codex/dist/initializer.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/initializer.js +795 -0
- package/node_modules/@claude-flow/codex/dist/initializer.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/loop/cli.d.ts +3 -0
- package/node_modules/@claude-flow/codex/dist/loop/cli.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/loop/cli.js +123 -0
- package/node_modules/@claude-flow/codex/dist/loop/cli.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/loop/index.d.ts +58 -0
- package/node_modules/@claude-flow/codex/dist/loop/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/loop/index.js +230 -0
- package/node_modules/@claude-flow/codex/dist/loop/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/mcp-config.d.ts +28 -0
- package/node_modules/@claude-flow/codex/dist/mcp-config.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/mcp-config.js +121 -0
- package/node_modules/@claude-flow/codex/dist/mcp-config.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/migrations/index.d.ts +114 -0
- package/node_modules/@claude-flow/codex/dist/migrations/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/migrations/index.js +880 -0
- package/node_modules/@claude-flow/codex/dist/migrations/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/templates/index.d.ts +92 -0
- package/node_modules/@claude-flow/codex/dist/templates/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/templates/index.js +284 -0
- package/node_modules/@claude-flow/codex/dist/templates/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/types.d.ts +240 -0
- package/node_modules/@claude-flow/codex/dist/types.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/types.js +8 -0
- package/node_modules/@claude-flow/codex/dist/types.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/validators/index.d.ts +42 -0
- package/node_modules/@claude-flow/codex/dist/validators/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/validators/index.js +929 -0
- package/node_modules/@claude-flow/codex/dist/validators/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.d.ts +37 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.js +137 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.js.map +1 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/index.d.ts +2 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/index.js +2 -0
- package/node_modules/@claude-flow/codex/dist/worktrees/index.js.map +1 -0
- package/node_modules/@claude-flow/codex/package.json +122 -0
- package/node_modules/@claude-flow/plugin-agent-federation/README.md +49 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.d.ts +130 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.js +239 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.d.ts +34 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.js +69 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.d.ts +46 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.js +84 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.d.ts +27 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.js +46 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.d.ts +192 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.js +253 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.d.ts +211 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.js +501 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.d.ts +114 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.js +356 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.d.ts +41 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.js +184 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.d.ts +150 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.js +128 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.d.ts +74 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.js +179 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.d.ts +13 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.js +189 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.d.ts +7 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.js +317 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.d.ts +45 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.js +71 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.d.ts +104 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.js +152 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.d.ts +55 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.js +105 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.d.ts +17 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.js +35 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.d.ts +69 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.js +149 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.d.ts +68 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.js +161 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.d.ts +58 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.js +122 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.d.ts +65 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.js +208 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.d.ts +51 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.js +147 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.d.ts +71 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.js +194 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.d.ts +156 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.js +292 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.d.ts +98 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.js +122 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.d.ts +89 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.js +165 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.d.ts +92 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.js +100 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.d.ts +70 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.js +104 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/index.d.ts +23 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/index.js +24 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/index.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.d.ts +10 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.js +439 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.d.ts +19 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.js +515 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.d.ts +72 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.js +269 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/version.d.ts +3 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/version.d.ts.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/version.js +3 -0
- package/node_modules/@claude-flow/plugin-agent-federation/dist/version.js.map +1 -0
- package/node_modules/@claude-flow/plugin-agent-federation/package.json +64 -0
- package/node_modules/@claude-flow/security/README.md +292 -0
- package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.d.ts +97 -0
- package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.js +537 -0
- package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/application/index.d.ts +7 -0
- package/node_modules/@claude-flow/security/dist/application/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/application/index.js +7 -0
- package/node_modules/@claude-flow/security/dist/application/index.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/application/services/security-application-service.d.ts +71 -0
- package/node_modules/@claude-flow/security/dist/application/services/security-application-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/application/services/security-application-service.js +153 -0
- package/node_modules/@claude-flow/security/dist/application/services/security-application-service.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/authorization/propagator.d.ts +148 -0
- package/node_modules/@claude-flow/security/dist/authorization/propagator.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/authorization/propagator.js +182 -0
- package/node_modules/@claude-flow/security/dist/authorization/propagator.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/credential-generator.d.ts +176 -0
- package/node_modules/@claude-flow/security/dist/credential-generator.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/credential-generator.js +272 -0
- package/node_modules/@claude-flow/security/dist/credential-generator.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/domain/entities/security-context.d.ts +68 -0
- package/node_modules/@claude-flow/security/dist/domain/entities/security-context.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/domain/entities/security-context.js +132 -0
- package/node_modules/@claude-flow/security/dist/domain/entities/security-context.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/domain/index.d.ts +8 -0
- package/node_modules/@claude-flow/security/dist/domain/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/domain/index.js +8 -0
- package/node_modules/@claude-flow/security/dist/domain/index.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.d.ts +71 -0
- package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.js +237 -0
- package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/index.d.ts +129 -0
- package/node_modules/@claude-flow/security/dist/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/index.js +176 -0
- package/node_modules/@claude-flow/security/dist/index.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/input-validator.d.ts +306 -0
- package/node_modules/@claude-flow/security/dist/input-validator.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/input-validator.js +393 -0
- package/node_modules/@claude-flow/security/dist/input-validator.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/keychain-adapter.d.ts +48 -0
- package/node_modules/@claude-flow/security/dist/keychain-adapter.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/keychain-adapter.js +0 -0
- package/node_modules/@claude-flow/security/dist/keychain-adapter.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.d.ts +133 -0
- package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.js +254 -0
- package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/browser.d.ts +31 -0
- package/node_modules/@claude-flow/security/dist/oauth/browser.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/browser.js +55 -0
- package/node_modules/@claude-flow/security/dist/oauth/browser.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/callback-server.d.ts +37 -0
- package/node_modules/@claude-flow/security/dist/oauth/callback-server.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/callback-server.js +86 -0
- package/node_modules/@claude-flow/security/dist/oauth/callback-server.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/client.d.ts +57 -0
- package/node_modules/@claude-flow/security/dist/oauth/client.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/client.js +120 -0
- package/node_modules/@claude-flow/security/dist/oauth/client.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/pkce.d.ts +25 -0
- package/node_modules/@claude-flow/security/dist/oauth/pkce.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/oauth/pkce.js +36 -0
- package/node_modules/@claude-flow/security/dist/oauth/pkce.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/password-hasher.d.ts +128 -0
- package/node_modules/@claude-flow/security/dist/password-hasher.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/password-hasher.js +190 -0
- package/node_modules/@claude-flow/security/dist/password-hasher.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/path-validator.d.ts +148 -0
- package/node_modules/@claude-flow/security/dist/path-validator.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/path-validator.js +421 -0
- package/node_modules/@claude-flow/security/dist/path-validator.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.d.ts +125 -0
- package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.js +186 -0
- package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/canonical.d.ts +5 -0
- package/node_modules/@claude-flow/security/dist/policy/canonical.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/canonical.js +30 -0
- package/node_modules/@claude-flow/security/dist/policy/canonical.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/engine.d.ts +34 -0
- package/node_modules/@claude-flow/security/dist/policy/engine.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/engine.js +285 -0
- package/node_modules/@claude-flow/security/dist/policy/engine.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/envelope.d.ts +9 -0
- package/node_modules/@claude-flow/security/dist/policy/envelope.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/envelope.js +90 -0
- package/node_modules/@claude-flow/security/dist/policy/envelope.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/evaluator.d.ts +4 -0
- package/node_modules/@claude-flow/security/dist/policy/evaluator.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/evaluator.js +119 -0
- package/node_modules/@claude-flow/security/dist/policy/evaluator.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/index.d.ts +7 -0
- package/node_modules/@claude-flow/security/dist/policy/index.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/index.js +7 -0
- package/node_modules/@claude-flow/security/dist/policy/index.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/product-plane.d.ts +238 -0
- package/node_modules/@claude-flow/security/dist/policy/product-plane.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/product-plane.js +1022 -0
- package/node_modules/@claude-flow/security/dist/policy/product-plane.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/types.d.ts +169 -0
- package/node_modules/@claude-flow/security/dist/policy/types.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/policy/types.js +2 -0
- package/node_modules/@claude-flow/security/dist/policy/types.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/safe-executor.d.ts +180 -0
- package/node_modules/@claude-flow/security/dist/safe-executor.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/safe-executor.js +390 -0
- package/node_modules/@claude-flow/security/dist/safe-executor.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/token-generator.d.ts +224 -0
- package/node_modules/@claude-flow/security/dist/token-generator.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/token-generator.js +351 -0
- package/node_modules/@claude-flow/security/dist/token-generator.js.map +1 -0
- package/node_modules/@claude-flow/security/dist/tool-output-guardrail.d.ts +126 -0
- package/node_modules/@claude-flow/security/dist/tool-output-guardrail.d.ts.map +1 -0
- package/node_modules/@claude-flow/security/dist/tool-output-guardrail.js +257 -0
- package/node_modules/@claude-flow/security/dist/tool-output-guardrail.js.map +1 -0
- package/node_modules/@claude-flow/security/package.json +44 -0
- package/package.json +24 -8
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest": {
|
|
3
|
-
"version": "3.32.
|
|
3
|
+
"version": "3.32.30",
|
|
4
4
|
"files": {
|
|
5
5
|
"auto-memory-hook.mjs": "68be7e9a9eba7bf9c4e8a230db7bf61a243b965639f8504842799d6c6ca28762",
|
|
6
6
|
"hook-handler.cjs": "50ea92a72651bdc95634f7588d56a5870963168eef5226f66ed14af3b47c8d9a",
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"statusline.cjs": "d2a0eac56d1267d8dbed2d70b09feb592299469196ec4b215909f2b052144882"
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
-
"signature": "
|
|
11
|
+
"signature": "6wQg/DXPVzG1hEnZzI0RcEi/6wfUnXyFYZ09Ho7jVHz84sbuX1flCWZA3qq5c8BvUtZ9/oCs9GOpEnMykGk4CA==",
|
|
12
12
|
"algorithm": "ed25519"
|
|
13
13
|
}
|
package/catalog-manifest.json
CHANGED
|
@@ -19,6 +19,49 @@ function behavioralRules() {
|
|
|
19
19
|
- Keep files under 500 lines
|
|
20
20
|
- Validate input at system boundaries`;
|
|
21
21
|
}
|
|
22
|
+
function policyGovernedWorkflow() {
|
|
23
|
+
return `## Ruflo Capability Brain & Implementation Loop
|
|
24
|
+
|
|
25
|
+
Ruflo is the coordination ledger and policy decision point. Claude Code is the
|
|
26
|
+
executor: after a Ruflo coordination call, continue implementing the task.
|
|
27
|
+
|
|
28
|
+
When it is registered, call
|
|
29
|
+
\`guidance_brain({ mode: "recommend", task: "..." })\` before complex Ruflo
|
|
30
|
+
work. Use its live registry instead of guessing tool names. Treat
|
|
31
|
+
\`registered\`, \`configured\`, \`reachable\`, \`healthy\`, and \`authorized\`
|
|
32
|
+
as separate facts. If the brain is unavailable, continue with the compatible
|
|
33
|
+
\`guidance_recommend\` tool, CLI discovery, and repository instructions.
|
|
34
|
+
|
|
35
|
+
Follow the returned loop:
|
|
36
|
+
|
|
37
|
+
1. Recall memory and ADR constraints.
|
|
38
|
+
2. Inspect source, runtime, dependencies, policy, and health.
|
|
39
|
+
3. Route to the smallest capable topology, agents, skills, and tools.
|
|
40
|
+
4. Plan acceptance criteria, safety envelope, ownership, and validation.
|
|
41
|
+
5. Execute in isolated scopes; the coding agent performs the work.
|
|
42
|
+
6. Test focused, regression, and failure paths.
|
|
43
|
+
7. Validate types, security, policy, compatibility, and artifacts.
|
|
44
|
+
8. Benchmark a source-bound candidate against a source-bound baseline.
|
|
45
|
+
9. Optimize measured bottlenecks without weakening safety.
|
|
46
|
+
10. Bind claims and evidence to exact source/build receipts.
|
|
47
|
+
11. Reconcile concurrent handoffs and disclose limitations.
|
|
48
|
+
12. Publish only through a separately authorized release gate.
|
|
49
|
+
|
|
50
|
+
### Concurrency and authority
|
|
51
|
+
|
|
52
|
+
- Never allow two writers in one worktree; give each writing agent an isolated
|
|
53
|
+
worktree and explicit file ownership.
|
|
54
|
+
- Read-only research may run concurrently and report findings to the owner.
|
|
55
|
+
- Only the integration owner edits shared manifests and lockfiles or reconciles
|
|
56
|
+
overlapping changes.
|
|
57
|
+
- A child may drop capabilities but cannot add tools, network, secrets, spend,
|
|
58
|
+
concurrency, namespaces, or delegation depth.
|
|
59
|
+
- A lease or claim coordinates ownership; it does not authorize a side effect.
|
|
60
|
+
- Darwin, Flywheel, MetaHarness, memory, and neural systems may propose or
|
|
61
|
+
evaluate candidates but cannot self-promote or expand their SafetyEnvelope.
|
|
62
|
+
- Bind tests, benchmarks, policy decisions, and release evidence to an exact
|
|
63
|
+
commit or immutable dirty-worktree snapshot.`;
|
|
64
|
+
}
|
|
22
65
|
function agentComms() {
|
|
23
66
|
return `## Agent Comms (SendMessage-First Coordination)
|
|
24
67
|
|
|
@@ -61,8 +104,10 @@ SendMessage({ to: "researcher", summary: "Start", message: "[task context]" })
|
|
|
61
104
|
- ALWAYS name agents — \`name: "role"\` makes them addressable
|
|
62
105
|
- ALWAYS include comms instructions in prompts — who to message, what to send
|
|
63
106
|
- Spawn ALL agents in ONE message with \`run_in_background: true\`
|
|
64
|
-
- After spawning
|
|
65
|
-
|
|
107
|
+
- After spawning, continue independent local work; wait only when a dependency
|
|
108
|
+
genuinely blocks progress
|
|
109
|
+
- Do not poll repeatedly — agents message back or complete automatically
|
|
110
|
+
- Give every writing agent an isolated worktree and a non-overlapping file scope`;
|
|
66
111
|
}
|
|
67
112
|
function swarmConfig(options) {
|
|
68
113
|
return `## Swarm & Routing
|
|
@@ -283,6 +328,7 @@ CLAUDE_FLOW_MEMORY_PATH=./data/memory
|
|
|
283
328
|
const TEMPLATE_SECTIONS = {
|
|
284
329
|
minimal: [
|
|
285
330
|
behavioralRules,
|
|
331
|
+
(_opts) => policyGovernedWorkflow(),
|
|
286
332
|
(_opts) => agentComms(),
|
|
287
333
|
swarmConfig,
|
|
288
334
|
(_opts) => buildAndTest(),
|
|
@@ -291,6 +337,7 @@ const TEMPLATE_SECTIONS = {
|
|
|
291
337
|
],
|
|
292
338
|
standard: [
|
|
293
339
|
behavioralRules,
|
|
340
|
+
(_opts) => policyGovernedWorkflow(),
|
|
294
341
|
(_opts) => agentComms(),
|
|
295
342
|
swarmConfig,
|
|
296
343
|
(_opts) => memoryAndLearning(),
|
|
@@ -301,6 +348,7 @@ const TEMPLATE_SECTIONS = {
|
|
|
301
348
|
],
|
|
302
349
|
full: [
|
|
303
350
|
behavioralRules,
|
|
351
|
+
(_opts) => policyGovernedWorkflow(),
|
|
304
352
|
(_opts) => agentComms(),
|
|
305
353
|
swarmConfig,
|
|
306
354
|
(_opts) => memoryAndLearning(),
|
|
@@ -315,6 +363,7 @@ const TEMPLATE_SECTIONS = {
|
|
|
315
363
|
],
|
|
316
364
|
security: [
|
|
317
365
|
behavioralRules,
|
|
366
|
+
(_opts) => policyGovernedWorkflow(),
|
|
318
367
|
(_opts) => agentComms(),
|
|
319
368
|
swarmConfig,
|
|
320
369
|
(_opts) => securitySection(),
|
|
@@ -326,6 +375,7 @@ const TEMPLATE_SECTIONS = {
|
|
|
326
375
|
],
|
|
327
376
|
performance: [
|
|
328
377
|
behavioralRules,
|
|
378
|
+
(_opts) => policyGovernedWorkflow(),
|
|
329
379
|
(_opts) => agentComms(),
|
|
330
380
|
swarmConfig,
|
|
331
381
|
(_opts) => performanceSection(),
|
|
@@ -338,6 +388,7 @@ const TEMPLATE_SECTIONS = {
|
|
|
338
388
|
],
|
|
339
389
|
solo: [
|
|
340
390
|
behavioralRules,
|
|
391
|
+
(_opts) => policyGovernedWorkflow(),
|
|
341
392
|
(_opts) => agentComms(),
|
|
342
393
|
(_opts) => memoryAndLearning(),
|
|
343
394
|
(_opts) => buildAndTest(),
|
|
@@ -125,8 +125,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
125
125
|
{
|
|
126
126
|
id: 'guidance',
|
|
127
127
|
name: 'Capability Guidance',
|
|
128
|
-
description: 'Live capability inventory, task routing, workflow guidance, and system discovery.',
|
|
129
128
|
prefixes: ['guidance_'],
|
|
129
|
+
description: 'Live capability inventory, task routing, workflow guidance, and system discovery.',
|
|
130
130
|
taskSignals: ['guidance', 'discover', 'capability', 'what can ruflo do'],
|
|
131
131
|
commands: ['guidance compile', 'guidance retrieve', 'guidance gates', 'guidance optimize'],
|
|
132
132
|
skills: [],
|
|
@@ -140,8 +140,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
140
140
|
{
|
|
141
141
|
id: 'identity-auth',
|
|
142
142
|
name: 'Cognitum Identity & OAuth',
|
|
143
|
-
description: 'Profile-aware PKCE/OOB authentication, credential status, consent-bound scopes, refresh, and local logout.',
|
|
144
143
|
prefixes: ['auth_', 'oauth_'],
|
|
144
|
+
description: 'Profile-aware PKCE/OOB authentication, credential status, consent-bound scopes, refresh, and local logout.',
|
|
145
145
|
taskSignals: ['auth', 'oauth', 'login', 'logout', 'credential', 'profile', 'scope', 'consent'],
|
|
146
146
|
commands: ['auth login', 'auth login --no-browser', 'auth status', 'auth status --check', 'auth logout'],
|
|
147
147
|
skills: ['security-audit'],
|
|
@@ -163,8 +163,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
163
163
|
{
|
|
164
164
|
id: 'policy-authorization',
|
|
165
165
|
name: 'Policy Authorization',
|
|
166
|
-
description: 'Policy-decision evaluation and status for exact subject/action/resource requests.',
|
|
167
166
|
prefixes: ['policy_'],
|
|
167
|
+
description: 'Policy-decision evaluation and status for exact subject/action/resource requests.',
|
|
168
168
|
taskSignals: ['policy', 'authorization', 'permission', 'capability', 'access control'],
|
|
169
169
|
commands: ['policy evaluate', 'policy status', 'guidance gates'],
|
|
170
170
|
skills: ['claims', 'security-audit', 'v3-security-overhaul'],
|
|
@@ -181,8 +181,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
181
181
|
{
|
|
182
182
|
id: 'work-claims',
|
|
183
183
|
name: 'Exclusive Work Claims',
|
|
184
|
-
description: 'Repository/task ownership claims, handoffs, contention, stealing, and rebalance.',
|
|
185
184
|
prefixes: ['claims_'],
|
|
185
|
+
description: 'Repository/task ownership claims, handoffs, contention, stealing, and rebalance.',
|
|
186
186
|
taskSignals: ['work claim', 'claim task', 'handoff', 'ownership', 'concurrent work', 'rebalance'],
|
|
187
187
|
commands: ['claims claim', 'claims handoff', 'claims status'],
|
|
188
188
|
skills: ['claims'],
|
|
@@ -198,8 +198,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
198
198
|
{
|
|
199
199
|
id: 'content-safety',
|
|
200
200
|
name: 'AIDefence Content Safety',
|
|
201
|
-
description: 'Prompt/content safety, PII detection, learning, and security evidence.',
|
|
202
201
|
prefixes: ['aidefence_', 'security_'],
|
|
202
|
+
description: 'Prompt/content safety, PII detection, learning, and security evidence.',
|
|
203
203
|
taskSignals: ['security', 'content safety', 'pii', 'prompt injection', 'threat', 'audit'],
|
|
204
204
|
commands: ['security scan'],
|
|
205
205
|
skills: ['security-audit', 'v3-security-overhaul'],
|
|
@@ -215,8 +215,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
215
215
|
{
|
|
216
216
|
id: 'metaharness-flywheel',
|
|
217
217
|
name: 'MetaHarness, Darwin & Flywheel',
|
|
218
|
-
description: 'Candidate scoring, static analysis, threat modeling, genome exploration, and controlled improvement loops.',
|
|
219
218
|
prefixes: ['metaharness_', 'autopilot_'],
|
|
219
|
+
description: 'Candidate scoring, static analysis, threat modeling, genome exploration, and controlled improvement loops.',
|
|
220
220
|
taskSignals: ['metaharness', 'darwin', 'flywheel', 'genome', 'optimize', 'autopilot'],
|
|
221
221
|
commands: ['metaharness score', 'metaharness genome', 'autopilot run'],
|
|
222
222
|
skills: ['metaharness-brain', 'performance-analysis'],
|
|
@@ -233,8 +233,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
233
233
|
{
|
|
234
234
|
id: 'memory-knowledge',
|
|
235
235
|
name: 'Memory, AgentDB & Embeddings',
|
|
236
|
-
description: 'Persistent memory, semantic/vector retrieval, namespaces, embeddings, and AgentDB controllers.',
|
|
237
236
|
prefixes: ['memory_', 'agentdb_', 'embeddings_'],
|
|
237
|
+
description: 'Persistent memory, semantic/vector retrieval, namespaces, embeddings, and AgentDB controllers.',
|
|
238
238
|
taskSignals: ['memory', 'agentdb', 'vector', 'embedding', 'semantic', 'recall'],
|
|
239
239
|
commands: ['memory search', 'memory store', 'memory retrieve'],
|
|
240
240
|
skills: ['memory-management', 'agentdb-advanced', 'agentdb-vector-search'],
|
|
@@ -250,8 +250,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
250
250
|
{
|
|
251
251
|
id: 'memory-branching',
|
|
252
252
|
name: 'Copy-on-Write & Speculative Memory',
|
|
253
|
-
description: 'Low-cost memory branching, checkpoint, rollback, comparison, and validated promotion.',
|
|
254
253
|
prefixes: ['agenticow_'],
|
|
254
|
+
description: 'Low-cost memory branching, checkpoint, rollback, comparison, and validated promotion.',
|
|
255
255
|
taskSignals: ['branch memory', 'checkpoint', 'rollback', 'speculative'],
|
|
256
256
|
commands: [],
|
|
257
257
|
skills: ['agentdb-learning'],
|
|
@@ -267,8 +267,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
267
267
|
{
|
|
268
268
|
id: 'agents-runtimes',
|
|
269
269
|
name: 'Agent Lifecycle & Runtimes',
|
|
270
|
-
description: 'Local agents, managed cloud agents, WASM sandboxes, and inference runtimes.',
|
|
271
270
|
prefixes: ['agent_', 'managed_agent_', 'wasm_agent_', 'wasm_gallery_', 'ruvllm_'],
|
|
271
|
+
description: 'Local agents, managed cloud agents, WASM sandboxes, and inference runtimes.',
|
|
272
272
|
taskSignals: ['agent', 'worker', 'wasm', 'sandbox', 'inference', 'managed agent'],
|
|
273
273
|
commands: ['agent spawn', 'agent status', 'agent stop'],
|
|
274
274
|
skills: ['agent-coder', 'agent-tester', 'agent-reviewer'],
|
|
@@ -284,8 +284,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
284
284
|
{
|
|
285
285
|
id: 'swarm-coordination',
|
|
286
286
|
name: 'Swarm & Coordination',
|
|
287
|
-
description: 'Topology-aware multi-agent coordination, task ownership, and collective scheduling.',
|
|
288
287
|
prefixes: ['swarm_', 'coordination_', 'daa_'],
|
|
288
|
+
description: 'Topology-aware multi-agent coordination, task ownership, and collective scheduling.',
|
|
289
289
|
taskSignals: ['swarm', 'concurrent', 'parallel', 'coordinate', 'multi-agent'],
|
|
290
290
|
commands: ['swarm init', 'swarm status', 'swarm coordinate'],
|
|
291
291
|
skills: ['swarm-orchestration', 'swarm-advanced'],
|
|
@@ -299,8 +299,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
299
299
|
{
|
|
300
300
|
id: 'consensus-federation',
|
|
301
301
|
name: 'Hive Mind & Consensus',
|
|
302
|
-
description: 'Hive, quorum, voting, gossip, and distributed agreement primitives.',
|
|
303
302
|
prefixes: ['hive_', 'hive-mind_', 'consensus_', 'quorum_'],
|
|
303
|
+
description: 'Hive, quorum, voting, gossip, and distributed agreement primitives.',
|
|
304
304
|
taskSignals: ['hive', 'consensus', 'quorum', 'byzantine', 'federation'],
|
|
305
305
|
commands: ['hive-mind init', 'hive-mind status'],
|
|
306
306
|
skills: ['hive-mind', 'hive-mind-advanced'],
|
|
@@ -314,8 +314,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
314
314
|
{
|
|
315
315
|
id: 'tasks-workflows-sessions',
|
|
316
316
|
name: 'Tasks, Workflows, Sessions & Progress',
|
|
317
|
-
description: 'Task orchestration, reusable workflows, session state, progress, and handoff.',
|
|
318
317
|
prefixes: ['task_', 'workflow_', 'session_', 'progress_'],
|
|
318
|
+
description: 'Task orchestration, reusable workflows, session state, progress, and handoff.',
|
|
319
319
|
taskSignals: ['task', 'workflow', 'session', 'handoff', 'progress'],
|
|
320
320
|
commands: ['task create', 'task status', 'workflow run'],
|
|
321
321
|
skills: ['workflow-automation'],
|
|
@@ -329,8 +329,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
329
329
|
{
|
|
330
330
|
id: 'hooks-learning-routing',
|
|
331
331
|
name: 'Hooks, Coverage & Learning Routing',
|
|
332
|
-
description: 'Lifecycle hooks, coverage-aware routing, background workers, and validated pattern capture.',
|
|
333
332
|
prefixes: ['hooks_', 'coverage_'],
|
|
333
|
+
description: 'Lifecycle hooks, coverage-aware routing, background workers, and validated pattern capture.',
|
|
334
334
|
taskSignals: ['hook', 'coverage', 'route', 'worker', 'learning'],
|
|
335
335
|
commands: ['hooks pre-task', 'hooks post-task', 'hooks route', 'hooks coverage-gaps'],
|
|
336
336
|
skills: ['hooks-automation'],
|
|
@@ -345,8 +345,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
345
345
|
{
|
|
346
346
|
id: 'analysis-quality',
|
|
347
347
|
name: 'Analysis & Quality',
|
|
348
|
-
description: 'Code/project analysis, quality assessment, and change inspection.',
|
|
349
348
|
prefixes: ['analyze_', 'analysis_'],
|
|
349
|
+
description: 'Code/project analysis, quality assessment, and change inspection.',
|
|
350
350
|
taskSignals: ['analyze', 'review', 'quality', 'dependency'],
|
|
351
351
|
commands: ['analyze code', 'analyze project'],
|
|
352
352
|
skills: ['verification-quality'],
|
|
@@ -360,8 +360,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
360
360
|
{
|
|
361
361
|
id: 'test-generation',
|
|
362
362
|
name: 'TDD Test Generation',
|
|
363
|
-
description: 'TDD repair and test-generation capability exported by Ruflo but intentionally reported as unregistered until the MCP registry enables it.',
|
|
364
363
|
prefixes: ['testgen_'],
|
|
364
|
+
description: 'TDD repair and test-generation capability exported by Ruflo but intentionally reported as unregistered until the MCP registry enables it.',
|
|
365
365
|
exactTools: ['testgen_tdd_repair'],
|
|
366
366
|
taskSignals: ['generate tests', 'tdd repair', 'test generation'],
|
|
367
367
|
commands: [],
|
|
@@ -379,8 +379,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
379
379
|
{
|
|
380
380
|
id: 'performance-neural',
|
|
381
381
|
name: 'Performance & Neural Optimization',
|
|
382
|
-
description: 'Profiling, benchmarks, learned routing, pattern training, and optimization.',
|
|
383
382
|
prefixes: ['performance_', 'neural_'],
|
|
383
|
+
description: 'Profiling, benchmarks, learned routing, pattern training, and optimization.',
|
|
384
384
|
taskSignals: ['performance', 'benchmark', 'profile', 'latency', 'neural', 'train'],
|
|
385
385
|
commands: ['performance benchmark', 'performance profile', 'neural train'],
|
|
386
386
|
skills: ['performance-analysis', 'neural-training'],
|
|
@@ -396,8 +396,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
396
396
|
{
|
|
397
397
|
id: 'browser-web',
|
|
398
398
|
name: 'Browser & Web Actions',
|
|
399
|
-
description: 'Browser sessions, page actions, intent routing, and guarded HTTP probes.',
|
|
400
399
|
prefixes: ['browser_', 'http_fetch'],
|
|
400
|
+
description: 'Browser sessions, page actions, intent routing, and guarded HTTP probes.',
|
|
401
401
|
taskSignals: ['browser', 'web page', 'navigate', 'click', 'http', 'fetch'],
|
|
402
402
|
commands: ['browser open', 'browser act'],
|
|
403
403
|
skills: [],
|
|
@@ -413,8 +413,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
413
413
|
{
|
|
414
414
|
id: 'github-delivery',
|
|
415
415
|
name: 'GitHub & Delivery',
|
|
416
|
-
description: 'Issues, pull requests, workflows, releases, repository automation, and handoff.',
|
|
417
416
|
prefixes: ['github_', 'pr_', 'release_'],
|
|
417
|
+
description: 'Issues, pull requests, workflows, releases, repository automation, and handoff.',
|
|
418
418
|
taskSignals: ['github', 'issue', 'pull request', 'merge', 'release', 'publish'],
|
|
419
419
|
commands: ['github pr', 'github release'],
|
|
420
420
|
skills: ['github-automation', 'github-release-management'],
|
|
@@ -429,9 +429,9 @@ export const CAPABILITY_DOMAINS = [
|
|
|
429
429
|
{
|
|
430
430
|
id: 'business-collaboration',
|
|
431
431
|
name: 'AgentBBS & Business Pods',
|
|
432
|
-
description: 'Federated business rooms, domain-affinity routing, and business-pod validation.',
|
|
433
432
|
// Metadata classification only; execution remains behind the existing loadAgentbbs guard.
|
|
434
433
|
prefixes: ['agentbbs_', 'business_pod_', 'federation_bbs_'],
|
|
434
|
+
description: 'Federated business rooms, domain-affinity routing, and business-pod validation.',
|
|
435
435
|
taskSignals: ['business pod', 'bbs', 'room', 'domain affinity'],
|
|
436
436
|
commands: [],
|
|
437
437
|
skills: [],
|
|
@@ -447,8 +447,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
447
447
|
{
|
|
448
448
|
id: 'configuration-transfer',
|
|
449
449
|
name: 'Configuration & Transfer',
|
|
450
|
-
description: 'Configuration state plus portable import, export, backup, and migration.',
|
|
451
450
|
prefixes: ['config_', 'transfer_'],
|
|
451
|
+
description: 'Configuration state plus portable import, export, backup, and migration.',
|
|
452
452
|
taskSignals: ['config', 'setup', 'import', 'export', 'backup', 'migrate'],
|
|
453
453
|
commands: ['config show', 'memory export'],
|
|
454
454
|
skills: [],
|
|
@@ -463,8 +463,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
463
463
|
{
|
|
464
464
|
id: 'system-terminal',
|
|
465
465
|
name: 'System & Terminal Compatibility',
|
|
466
|
-
description: 'System diagnostics and legacy-compatible terminal execution surfaces.',
|
|
467
466
|
prefixes: ['system_', 'terminal_', 'mcp_'],
|
|
467
|
+
description: 'System diagnostics and legacy-compatible terminal execution surfaces.',
|
|
468
468
|
taskSignals: ['terminal', 'shell', 'doctor', 'system status'],
|
|
469
469
|
commands: ['doctor', 'status'],
|
|
470
470
|
skills: [],
|
|
@@ -479,8 +479,8 @@ export const CAPABILITY_DOMAINS = [
|
|
|
479
479
|
{
|
|
480
480
|
id: 'runtime-services',
|
|
481
481
|
name: 'Other Registered Runtime Services',
|
|
482
|
-
description: 'Live MCP tools not yet assigned to a specialized domain; included so coverage is never silently incomplete.',
|
|
483
482
|
prefixes: [],
|
|
483
|
+
description: 'Live MCP tools not yet assigned to a specialized domain; included so coverage is never silently incomplete.',
|
|
484
484
|
taskSignals: [],
|
|
485
485
|
commands: [],
|
|
486
486
|
skills: [],
|
|
@@ -814,7 +814,7 @@ const guidanceQuickRef = {
|
|
|
814
814
|
};
|
|
815
815
|
const guidanceBrain = {
|
|
816
816
|
name: 'guidance_brain',
|
|
817
|
-
description: '
|
|
817
|
+
description: 'Use when choosing how to execute a task with Ruflo. Queries the live capability brain, covers every registered MCP tool, separates registration from configuration/reachability/health/authorization, recommends capabilities, and returns the validated implementation loop.',
|
|
818
818
|
inputSchema: {
|
|
819
819
|
type: 'object',
|
|
820
820
|
properties: {
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: memory-management
|
|
3
|
+
description: >
|
|
4
|
+
AgentDB memory system with HNSW vector search.
|
|
5
|
+
Use when: need to store patterns, search for solutions, semantic lookup.
|
|
6
|
+
Skip when: no learning needed, ephemeral tasks.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Memory Management Skill
|
|
10
|
+
|
|
11
|
+
## Purpose
|
|
12
|
+
AgentDB memory system with HNSW vector search.
|
|
13
|
+
|
|
14
|
+
## When to Trigger
|
|
15
|
+
- need to store patterns
|
|
16
|
+
- search for solutions
|
|
17
|
+
- semantic lookup
|
|
18
|
+
|
|
19
|
+
## When to Skip
|
|
20
|
+
- no learning needed
|
|
21
|
+
- ephemeral tasks
|
|
22
|
+
|
|
23
|
+
## Commands
|
|
24
|
+
|
|
25
|
+
### Store Data
|
|
26
|
+
Store a pattern in memory
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npx @claude-flow/cli memory store --key "key" --value "value" --namespace patterns
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Search Data
|
|
33
|
+
Semantic search in memory
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx @claude-flow/cli memory search --query "search terms" --limit 10
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## Best Practices
|
|
42
|
+
1. Check memory for existing patterns before starting
|
|
43
|
+
2. Use hierarchical topology for coordination
|
|
44
|
+
3. Store successful patterns after completion
|
|
45
|
+
4. Document any new learnings
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: security-audit
|
|
3
|
+
description: >
|
|
4
|
+
Security scanning and vulnerability detection.
|
|
5
|
+
Use when: authentication, authorization, payment processing, user data.
|
|
6
|
+
Skip when: read-only operations, internal tooling.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Security Audit Skill
|
|
10
|
+
|
|
11
|
+
## Purpose
|
|
12
|
+
Security scanning and vulnerability detection.
|
|
13
|
+
|
|
14
|
+
## When to Trigger
|
|
15
|
+
- authentication
|
|
16
|
+
- authorization
|
|
17
|
+
- payment processing
|
|
18
|
+
- user data
|
|
19
|
+
|
|
20
|
+
## When to Skip
|
|
21
|
+
- read-only operations
|
|
22
|
+
- internal tooling
|
|
23
|
+
|
|
24
|
+
## Commands
|
|
25
|
+
|
|
26
|
+
### Full Security Scan
|
|
27
|
+
Run comprehensive security analysis
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx @claude-flow/cli security scan --depth full
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Input Validation Check
|
|
34
|
+
Check for input validation issues
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx @claude-flow/cli security scan --check input-validation
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## Best Practices
|
|
43
|
+
1. Check memory for existing patterns before starting
|
|
44
|
+
2. Use hierarchical topology for coordination
|
|
45
|
+
3. Store successful patterns after completion
|
|
46
|
+
4. Document any new learnings
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: sparc-methodology
|
|
3
|
+
description: >
|
|
4
|
+
SPARC development workflow (Specification, Pseudocode, Architecture, Refinement, Completion).
|
|
5
|
+
Use when: new features, complex implementations, architectural changes.
|
|
6
|
+
Skip when: simple fixes, documentation, configuration.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Sparc Methodology Skill
|
|
10
|
+
|
|
11
|
+
## Purpose
|
|
12
|
+
SPARC development workflow (Specification, Pseudocode, Architecture, Refinement, Completion).
|
|
13
|
+
|
|
14
|
+
## When to Trigger
|
|
15
|
+
- new features
|
|
16
|
+
- complex implementations
|
|
17
|
+
- architectural changes
|
|
18
|
+
|
|
19
|
+
## When to Skip
|
|
20
|
+
- simple fixes
|
|
21
|
+
- documentation
|
|
22
|
+
- configuration
|
|
23
|
+
|
|
24
|
+
## Commands
|
|
25
|
+
|
|
26
|
+
### Specification Phase
|
|
27
|
+
Define requirements and acceptance criteria
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx @claude-flow/cli hooks route --task "specification: [requirements]"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Architecture Phase
|
|
34
|
+
Design system structure
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx @claude-flow/cli hooks route --task "architecture: [design]"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## Best Practices
|
|
43
|
+
1. Check memory for existing patterns before starting
|
|
44
|
+
2. Use hierarchical topology for coordination
|
|
45
|
+
3. Store successful patterns after completion
|
|
46
|
+
4. Document any new learnings
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: swarm-orchestration
|
|
3
|
+
description: >
|
|
4
|
+
Multi-agent swarm coordination for complex tasks.
|
|
5
|
+
Use when: 3+ files need changes, new features, refactoring.
|
|
6
|
+
Skip when: single file edits, simple fixes, documentation.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Swarm Orchestration Skill
|
|
10
|
+
|
|
11
|
+
## Purpose
|
|
12
|
+
Multi-agent swarm coordination for complex tasks.
|
|
13
|
+
|
|
14
|
+
## When to Trigger
|
|
15
|
+
- 3+ files need changes
|
|
16
|
+
- new features
|
|
17
|
+
- refactoring
|
|
18
|
+
|
|
19
|
+
## When to Skip
|
|
20
|
+
- single file edits
|
|
21
|
+
- simple fixes
|
|
22
|
+
- documentation
|
|
23
|
+
|
|
24
|
+
## Commands
|
|
25
|
+
|
|
26
|
+
### Initialize Swarm
|
|
27
|
+
Start a new swarm with hierarchical topology
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx @claude-flow/cli swarm init --topology hierarchical --max-agents 8
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Route Task
|
|
34
|
+
Route a task to the appropriate agents
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx @claude-flow/cli hooks route --task "[task description]"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Monitor Status
|
|
41
|
+
Check the current swarm status
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
npx @claude-flow/cli swarm status
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## Best Practices
|
|
50
|
+
1. Check memory for existing patterns before starting
|
|
51
|
+
2. Use hierarchical topology for coordination
|
|
52
|
+
3. Store successful patterns after completion
|
|
53
|
+
4. Document any new learnings
|