@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
|
@@ -0,0 +1,730 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @claude-flow/codex - AGENTS.md Generator
|
|
3
|
+
*
|
|
4
|
+
* Generates AGENTS.md files for OpenAI Codex CLI
|
|
5
|
+
* Following the Agentic AI Foundation standard
|
|
6
|
+
*/
|
|
7
|
+
import { BUILT_IN_SKILLS } from '../templates/index.js';
|
|
8
|
+
function concurrentRufloWorkflow() {
|
|
9
|
+
return `## Ruflo + Codex Automated Workflow
|
|
10
|
+
|
|
11
|
+
Ruflo is the coordination ledger and policy decision point; Codex workers execute code, tests, and commands. A Ruflo coordination call records work but never replaces implementation.
|
|
12
|
+
|
|
13
|
+
Use \`guidance_brain({ mode: "recommend", task: "..." })\` when the task can
|
|
14
|
+
benefit from Ruflo-specific capabilities. Its live registry is authoritative
|
|
15
|
+
for tool presence; registration alone does not prove configuration,
|
|
16
|
+
reachability, health, or authorization. If it is not registered, use compatible
|
|
17
|
+
\`guidance_recommend\`, CLI discovery, and repository instructions.
|
|
18
|
+
|
|
19
|
+
1. **Recall** — search AgentDB memory and relevant ADRs for patterns and constraints.
|
|
20
|
+
2. **Inspect** — read source, runtime, dependency, policy, and health state.
|
|
21
|
+
3. **Route** — choose the smallest capable topology, agents, skills, and tools.
|
|
22
|
+
4. **Plan** — define acceptance criteria, safety envelope, ownership, and validation.
|
|
23
|
+
5. **Execute** — Codex workers implement in isolated scopes; Ruflo records coordination.
|
|
24
|
+
6. **Test** — run focused tests, regression tests, and failure-path checks.
|
|
25
|
+
7. **Validate** — check types, security, policy, compatibility, and artifact integrity.
|
|
26
|
+
8. **Benchmark** — compare a source-bound candidate with a source-bound baseline.
|
|
27
|
+
9. **Optimize** — improve measured bottlenecks without weakening the safety envelope.
|
|
28
|
+
10. **Receipt** — bind claims, evidence, and decisions to exact source/build inputs.
|
|
29
|
+
11. **Handoff** — reconcile concurrent work and disclose unresolved limitations.
|
|
30
|
+
12. **Publish** — only an independently authorized release gate may publish immutable artifacts.
|
|
31
|
+
|
|
32
|
+
### Concurrency and authority invariants
|
|
33
|
+
|
|
34
|
+
- Never allow two writers in one worktree.
|
|
35
|
+
- Read-only research agents may share a checkout; writing agents may not.
|
|
36
|
+
- A child may drop capabilities but can never add tools, servers, namespaces, network access, spend, concurrency, or delegation depth.
|
|
37
|
+
- Cancel dependent and not-yet-started sibling work when policy denies an action or a required dependency fails.
|
|
38
|
+
- MetaHarness may benchmark candidates concurrently, but it cannot promote, serve, or expand its own SafetyEnvelope.
|
|
39
|
+
- Only the integration agent changes shared manifests or lockfiles.
|
|
40
|
+
- Do not auto-commit, push, merge, release, or delete worktrees unless the user authorized that operation.
|
|
41
|
+
- Every consequential action must produce a policy decision receipt; production, destructive, spend, and promotion actions may require human approval.
|
|
42
|
+
|
|
43
|
+
### Repository harness adapter
|
|
44
|
+
|
|
45
|
+
When tracked repository instructions define a local collaboration harness:
|
|
46
|
+
|
|
47
|
+
1. Assign the isolated worktree before starting a writing session.
|
|
48
|
+
2. Start or register the session, inspect current claims, and acquire only the
|
|
49
|
+
exact paths, resources, and development ports needed for the task.
|
|
50
|
+
3. Renew leases during long work, check acknowledged inbox messages at integration
|
|
51
|
+
boundaries, and release claims when handing off or ending.
|
|
52
|
+
4. Record focused and integration evidence against the exact source state,
|
|
53
|
+
then let the designated integration owner decide release.
|
|
54
|
+
|
|
55
|
+
A repository lease coordinates ownership; it does not grant authorization.
|
|
56
|
+
In-memory reference adapters demonstrate semantics but are not distributed,
|
|
57
|
+
restart-durable release authorities.
|
|
58
|
+
The worker still needs the current ADR-324/325 action capability and fencing
|
|
59
|
+
epoch for every protected side effect. Heartbeat and lease expiry establish
|
|
60
|
+
liveness; a PID is diagnostic only. HEAD alone is not an exact source-state
|
|
61
|
+
identity when tracked or untracked changes exist, so a release receipt must
|
|
62
|
+
bind a clean commit or an immutable snapshot including those changes.
|
|
63
|
+
`;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Generate an AGENTS.md file based on the provided options
|
|
67
|
+
*/
|
|
68
|
+
export async function generateAgentsMd(options) {
|
|
69
|
+
const template = options.template ?? 'default';
|
|
70
|
+
switch (template) {
|
|
71
|
+
case 'minimal':
|
|
72
|
+
return generateMinimal(options);
|
|
73
|
+
case 'full':
|
|
74
|
+
return generateFull(options);
|
|
75
|
+
case 'enterprise':
|
|
76
|
+
return generateEnterprise(options);
|
|
77
|
+
case 'default':
|
|
78
|
+
default:
|
|
79
|
+
return generateDefault(options);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Generate minimal AGENTS.md template
|
|
84
|
+
*/
|
|
85
|
+
function generateMinimal(options) {
|
|
86
|
+
const { projectName, description = 'A Claude Flow powered project', buildCommand = 'npm run build', testCommand = 'npm test', } = options;
|
|
87
|
+
return `# ${projectName}
|
|
88
|
+
|
|
89
|
+
> ${description}
|
|
90
|
+
|
|
91
|
+
## Quick Start
|
|
92
|
+
|
|
93
|
+
### Setup
|
|
94
|
+
\`\`\`bash
|
|
95
|
+
npm install && ${buildCommand}
|
|
96
|
+
\`\`\`
|
|
97
|
+
|
|
98
|
+
### Test
|
|
99
|
+
\`\`\`bash
|
|
100
|
+
${testCommand}
|
|
101
|
+
\`\`\`
|
|
102
|
+
|
|
103
|
+
## Agent Behavior
|
|
104
|
+
|
|
105
|
+
### Code Standards
|
|
106
|
+
- Keep files under 500 lines
|
|
107
|
+
- No hardcoded secrets or credentials
|
|
108
|
+
- Validate input at system boundaries
|
|
109
|
+
- Use typed interfaces for public APIs
|
|
110
|
+
|
|
111
|
+
### File Organization
|
|
112
|
+
- \`/src\` - Source code files
|
|
113
|
+
- \`/tests\` - Test files
|
|
114
|
+
- \`/docs\` - Documentation
|
|
115
|
+
- \`/config\` - Configuration files
|
|
116
|
+
|
|
117
|
+
## Skills
|
|
118
|
+
|
|
119
|
+
| Skill | Purpose |
|
|
120
|
+
|-------|---------|
|
|
121
|
+
| \`$swarm-orchestration\` | Multi-agent coordination for complex tasks |
|
|
122
|
+
| \`$memory-management\` | Pattern storage and semantic search |
|
|
123
|
+
|
|
124
|
+
## Security Rules
|
|
125
|
+
|
|
126
|
+
- NEVER commit .env files or secrets
|
|
127
|
+
- Always validate user inputs
|
|
128
|
+
- Prevent directory traversal attacks
|
|
129
|
+
- Use parameterized queries for databases
|
|
130
|
+
- Sanitize output to prevent XSS
|
|
131
|
+
|
|
132
|
+
${concurrentRufloWorkflow()}
|
|
133
|
+
|
|
134
|
+
## Links
|
|
135
|
+
|
|
136
|
+
- Documentation: https://github.com/ruvnet/ruflo
|
|
137
|
+
`;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Generate default AGENTS.md template
|
|
141
|
+
*/
|
|
142
|
+
function generateDefault(options) {
|
|
143
|
+
const { projectName, description = 'A Claude Flow powered project', techStack = 'TypeScript, Node.js', buildCommand = 'npm run build', testCommand = 'npm test', devCommand = 'npm run dev', skills = ['swarm-orchestration', 'memory-management', 'sparc-methodology', 'security-audit'], } = options;
|
|
144
|
+
const skillsTable = skills
|
|
145
|
+
.map((skill) => {
|
|
146
|
+
const info = BUILT_IN_SKILLS[skill];
|
|
147
|
+
return info
|
|
148
|
+
? `| \`$${skill}\` | ${info.description} |`
|
|
149
|
+
: `| \`$${skill}\` | Custom skill |`;
|
|
150
|
+
})
|
|
151
|
+
.join('\n');
|
|
152
|
+
return `# ${projectName}
|
|
153
|
+
|
|
154
|
+
> Multi-agent orchestration framework for agentic coding
|
|
155
|
+
|
|
156
|
+
## Project Overview
|
|
157
|
+
|
|
158
|
+
${description}
|
|
159
|
+
|
|
160
|
+
**Tech Stack**: ${techStack}
|
|
161
|
+
**Architecture**: Domain-Driven Design with bounded contexts
|
|
162
|
+
|
|
163
|
+
## Quick Start
|
|
164
|
+
|
|
165
|
+
### Installation
|
|
166
|
+
\`\`\`bash
|
|
167
|
+
npm install
|
|
168
|
+
\`\`\`
|
|
169
|
+
|
|
170
|
+
### Build
|
|
171
|
+
\`\`\`bash
|
|
172
|
+
${buildCommand}
|
|
173
|
+
\`\`\`
|
|
174
|
+
|
|
175
|
+
### Test
|
|
176
|
+
\`\`\`bash
|
|
177
|
+
${testCommand}
|
|
178
|
+
\`\`\`
|
|
179
|
+
|
|
180
|
+
### Development
|
|
181
|
+
\`\`\`bash
|
|
182
|
+
${devCommand}
|
|
183
|
+
\`\`\`
|
|
184
|
+
|
|
185
|
+
## Agent Coordination
|
|
186
|
+
|
|
187
|
+
### Swarm Configuration
|
|
188
|
+
|
|
189
|
+
This project uses hierarchical swarm coordination for complex tasks:
|
|
190
|
+
|
|
191
|
+
| Setting | Value | Purpose |
|
|
192
|
+
|---------|-------|---------|
|
|
193
|
+
| Topology | \`hierarchical\` | Queen-led coordination (anti-drift) |
|
|
194
|
+
| Max Agents | 8 | Optimal team size |
|
|
195
|
+
| Strategy | \`specialized\` | Clear role boundaries |
|
|
196
|
+
| Consensus | \`raft\` | Leader-based consistency |
|
|
197
|
+
|
|
198
|
+
### When to Use Swarms
|
|
199
|
+
|
|
200
|
+
**Invoke swarm for:**
|
|
201
|
+
- Multi-file changes (3+ files)
|
|
202
|
+
- New feature implementation
|
|
203
|
+
- Cross-module refactoring
|
|
204
|
+
- API changes with tests
|
|
205
|
+
- Security-related changes
|
|
206
|
+
- Performance optimization
|
|
207
|
+
|
|
208
|
+
**Skip swarm for:**
|
|
209
|
+
- Single file edits
|
|
210
|
+
- Simple bug fixes (1-2 lines)
|
|
211
|
+
- Documentation updates
|
|
212
|
+
- Configuration changes
|
|
213
|
+
|
|
214
|
+
### Available Skills
|
|
215
|
+
|
|
216
|
+
Use \`$skill-name\` syntax to invoke:
|
|
217
|
+
|
|
218
|
+
| Skill | Use Case |
|
|
219
|
+
|-------|----------|
|
|
220
|
+
${skillsTable}
|
|
221
|
+
|
|
222
|
+
### Agent Types
|
|
223
|
+
|
|
224
|
+
| Type | Role | Use Case |
|
|
225
|
+
|------|------|----------|
|
|
226
|
+
| \`researcher\` | Requirements analysis | Understanding scope |
|
|
227
|
+
| \`architect\` | System design | Planning structure |
|
|
228
|
+
| \`coder\` | Implementation | Writing code |
|
|
229
|
+
| \`tester\` | Test creation | Quality assurance |
|
|
230
|
+
| \`reviewer\` | Code review | Security and quality |
|
|
231
|
+
|
|
232
|
+
## Execution Model
|
|
233
|
+
|
|
234
|
+
- **claude-flow** = LEDGER (coordinates: memory, routing, swarm state)
|
|
235
|
+
- **Codex** = EXECUTOR (writes code, runs tests, creates files)
|
|
236
|
+
|
|
237
|
+
**Critical rule:** DON'T STOP after calling claude-flow commands. Coordination commands return instantly — continue immediately with the next implementation step.
|
|
238
|
+
|
|
239
|
+
${concurrentRufloWorkflow()}
|
|
240
|
+
|
|
241
|
+
## MCP Integration
|
|
242
|
+
|
|
243
|
+
Use MCP tools for coordination, then keep coding:
|
|
244
|
+
|
|
245
|
+
| Tool | Purpose | Example |
|
|
246
|
+
|------|---------|---------|
|
|
247
|
+
| \`swarm_init\` | Start coordination | \`swarm_init({topology: "hierarchical"})\` |
|
|
248
|
+
| \`memory_store\` | Save patterns | \`memory_store({key: "auth", value: "JWT"})\` |
|
|
249
|
+
| \`memory_search\` | Find patterns | \`memory_search({query: "auth patterns"})\` |
|
|
250
|
+
| \`task_orchestrate\` | Assign work | \`task_orchestrate({task: "implement"})\` |
|
|
251
|
+
|
|
252
|
+
## Code Standards
|
|
253
|
+
|
|
254
|
+
### File Organization
|
|
255
|
+
- **NEVER** save to root folder
|
|
256
|
+
- \`/src\` - Source code files
|
|
257
|
+
- \`/tests\` - Test files
|
|
258
|
+
- \`/docs\` - Documentation
|
|
259
|
+
- \`/config\` - Configuration files
|
|
260
|
+
|
|
261
|
+
### Quality Rules
|
|
262
|
+
- Files under 500 lines
|
|
263
|
+
- No hardcoded secrets
|
|
264
|
+
- Input validation at boundaries
|
|
265
|
+
- Typed interfaces for public APIs
|
|
266
|
+
- TDD London School (mock-first) preferred
|
|
267
|
+
|
|
268
|
+
### Commit Messages
|
|
269
|
+
\`\`\`
|
|
270
|
+
<type>(<scope>): <description>
|
|
271
|
+
|
|
272
|
+
[optional body]
|
|
273
|
+
\`\`\`
|
|
274
|
+
|
|
275
|
+
Types: \`feat\`, \`fix\`, \`docs\`, \`style\`, \`refactor\`, \`perf\`, \`test\`, \`chore\`
|
|
276
|
+
|
|
277
|
+
Do not add a \`Co-Authored-By\` trailer unless the repository explicitly
|
|
278
|
+
configures and authorizes that attribution.
|
|
279
|
+
|
|
280
|
+
## Security
|
|
281
|
+
|
|
282
|
+
### Critical Rules
|
|
283
|
+
- NEVER commit secrets, credentials, or .env files
|
|
284
|
+
- NEVER hardcode API keys
|
|
285
|
+
- Always validate user input
|
|
286
|
+
- Use parameterized queries for SQL
|
|
287
|
+
- Sanitize output to prevent XSS
|
|
288
|
+
|
|
289
|
+
### Path Security
|
|
290
|
+
- Validate all file paths
|
|
291
|
+
- Prevent directory traversal (../)
|
|
292
|
+
- Use absolute paths internally
|
|
293
|
+
|
|
294
|
+
## Memory System
|
|
295
|
+
|
|
296
|
+
### Storing Patterns
|
|
297
|
+
\`\`\`bash
|
|
298
|
+
npx @claude-flow/cli memory store \\
|
|
299
|
+
--key "pattern-name" \\
|
|
300
|
+
--value "pattern description" \\
|
|
301
|
+
--namespace patterns
|
|
302
|
+
\`\`\`
|
|
303
|
+
|
|
304
|
+
### Searching Memory
|
|
305
|
+
\`\`\`bash
|
|
306
|
+
npx @claude-flow/cli memory search \\
|
|
307
|
+
--query "search terms" \\
|
|
308
|
+
--namespace patterns
|
|
309
|
+
\`\`\`
|
|
310
|
+
|
|
311
|
+
## Quick Commands
|
|
312
|
+
|
|
313
|
+
\`\`\`bash
|
|
314
|
+
npx @claude-flow/cli memory search --query "relevant patterns"
|
|
315
|
+
npx @claude-flow/cli hooks route --task "current task description"
|
|
316
|
+
npx @claude-flow/cli swarm init --topology hierarchical
|
|
317
|
+
npx @claude-flow/cli hooks pre-task --description "task summary"
|
|
318
|
+
\`\`\`
|
|
319
|
+
|
|
320
|
+
## Links
|
|
321
|
+
|
|
322
|
+
- Documentation: https://github.com/ruvnet/ruflo
|
|
323
|
+
- Issues: https://github.com/ruvnet/ruflo/issues
|
|
324
|
+
`;
|
|
325
|
+
}
|
|
326
|
+
/**
|
|
327
|
+
* Generate full AGENTS.md template with all sections
|
|
328
|
+
*/
|
|
329
|
+
function generateFull(options) {
|
|
330
|
+
const base = generateDefault(options);
|
|
331
|
+
const additionalSections = `
|
|
332
|
+
## Performance Targets
|
|
333
|
+
|
|
334
|
+
| Metric | Target | Notes |
|
|
335
|
+
|--------|--------|-------|
|
|
336
|
+
| HNSW Search | 150x-12,500x faster | Vector operations |
|
|
337
|
+
| Memory Reduction | 50-75% | Int8 quantization |
|
|
338
|
+
| MCP Response | <100ms | API latency |
|
|
339
|
+
| CLI Startup | <500ms | Cold start |
|
|
340
|
+
| SONA Adaptation | <0.05ms | Neural learning |
|
|
341
|
+
|
|
342
|
+
## Testing
|
|
343
|
+
|
|
344
|
+
### Running Tests
|
|
345
|
+
\`\`\`bash
|
|
346
|
+
# Unit tests
|
|
347
|
+
npm test
|
|
348
|
+
|
|
349
|
+
# Integration tests
|
|
350
|
+
npm run test:integration
|
|
351
|
+
|
|
352
|
+
# Coverage
|
|
353
|
+
npm run test:coverage
|
|
354
|
+
|
|
355
|
+
# Security tests
|
|
356
|
+
npm run test:security
|
|
357
|
+
\`\`\`
|
|
358
|
+
|
|
359
|
+
### Test Philosophy
|
|
360
|
+
- TDD London School (mock-first)
|
|
361
|
+
- Unit tests for business logic
|
|
362
|
+
- Integration tests for boundaries
|
|
363
|
+
- E2E tests for critical paths
|
|
364
|
+
- Security tests for sensitive operations
|
|
365
|
+
|
|
366
|
+
### Coverage Requirements
|
|
367
|
+
- Minimum 80% line coverage
|
|
368
|
+
- 100% coverage for security-critical code
|
|
369
|
+
- All public APIs must have tests
|
|
370
|
+
|
|
371
|
+
## MCP Integration
|
|
372
|
+
|
|
373
|
+
Claude Flow exposes tools via Model Context Protocol:
|
|
374
|
+
|
|
375
|
+
\`\`\`bash
|
|
376
|
+
# Start MCP server
|
|
377
|
+
npx ruflo mcp start
|
|
378
|
+
|
|
379
|
+
# List available tools
|
|
380
|
+
npx ruflo mcp tools
|
|
381
|
+
\`\`\`
|
|
382
|
+
|
|
383
|
+
### Available Tools
|
|
384
|
+
|
|
385
|
+
| Tool | Purpose | Example |
|
|
386
|
+
|------|---------|---------|
|
|
387
|
+
| \`swarm_init\` | Initialize swarm coordination | \`swarm_init({topology: "hierarchical"})\` |
|
|
388
|
+
| \`agent_spawn\` | Spawn new agents | \`agent_spawn({type: "coder", name: "dev-1"})\` |
|
|
389
|
+
| \`memory_store\` | Store in AgentDB | \`memory_store({key: "pattern", value: "..."})\` |
|
|
390
|
+
| \`memory_search\` | Semantic search | \`memory_search({query: "auth patterns"})\` |
|
|
391
|
+
| \`task_orchestrate\` | Task coordination | \`task_orchestrate({task: "implement feature"})\` |
|
|
392
|
+
| \`neural_train\` | Train neural patterns | \`neural_train({iterations: 10})\` |
|
|
393
|
+
| \`benchmark_run\` | Performance benchmarks | \`benchmark_run({type: "all"})\` |
|
|
394
|
+
|
|
395
|
+
## Hooks System
|
|
396
|
+
|
|
397
|
+
Claude Flow uses hooks for lifecycle automation:
|
|
398
|
+
|
|
399
|
+
### Core Hooks
|
|
400
|
+
|
|
401
|
+
| Hook | Trigger | Purpose |
|
|
402
|
+
|------|---------|---------|
|
|
403
|
+
| \`pre-task\` | Before task starts | Get context, load patterns |
|
|
404
|
+
| \`post-task\` | After task completes | Record completion, train |
|
|
405
|
+
| \`pre-edit\` | Before file changes | Validate, backup |
|
|
406
|
+
| \`post-edit\` | After file changes | Train patterns, verify |
|
|
407
|
+
| \`pre-command\` | Before shell commands | Security check |
|
|
408
|
+
| \`post-command\` | After shell commands | Log results |
|
|
409
|
+
|
|
410
|
+
### Session Hooks
|
|
411
|
+
|
|
412
|
+
| Hook | Purpose |
|
|
413
|
+
|------|---------|
|
|
414
|
+
| \`session-start\` | Initialize context, load memory |
|
|
415
|
+
| \`session-end\` | Export metrics, consolidate memory |
|
|
416
|
+
| \`session-restore\` | Resume from checkpoint |
|
|
417
|
+
| \`notify\` | Send notifications |
|
|
418
|
+
|
|
419
|
+
### Intelligence Hooks
|
|
420
|
+
|
|
421
|
+
| Hook | Purpose |
|
|
422
|
+
|------|---------|
|
|
423
|
+
| \`route\` | Route task to appropriate agents |
|
|
424
|
+
| \`explain\` | Generate explanations |
|
|
425
|
+
| \`pretrain\` | Pre-train neural patterns |
|
|
426
|
+
| \`build-agents\` | Build specialized agents |
|
|
427
|
+
| \`transfer\` | Transfer learning between domains |
|
|
428
|
+
|
|
429
|
+
### Example Usage
|
|
430
|
+
\`\`\`bash
|
|
431
|
+
# Before starting a task
|
|
432
|
+
npx @claude-flow/cli hooks pre-task \\
|
|
433
|
+
--description "implementing authentication"
|
|
434
|
+
|
|
435
|
+
# After completing a task
|
|
436
|
+
npx @claude-flow/cli hooks post-task \\
|
|
437
|
+
--task-id "task-123" \\
|
|
438
|
+
--success true
|
|
439
|
+
|
|
440
|
+
# Route a task to agents
|
|
441
|
+
npx @claude-flow/cli hooks route \\
|
|
442
|
+
--task "implement OAuth2 login flow"
|
|
443
|
+
\`\`\`
|
|
444
|
+
|
|
445
|
+
## Background Workers
|
|
446
|
+
|
|
447
|
+
12 background workers provide continuous optimization:
|
|
448
|
+
|
|
449
|
+
| Worker | Priority | Purpose |
|
|
450
|
+
|--------|----------|---------|
|
|
451
|
+
| \`ultralearn\` | normal | Deep knowledge acquisition |
|
|
452
|
+
| \`optimize\` | high | Performance optimization |
|
|
453
|
+
| \`consolidate\` | low | Memory consolidation |
|
|
454
|
+
| \`predict\` | normal | Predictive preloading |
|
|
455
|
+
| \`audit\` | critical | Security analysis |
|
|
456
|
+
| \`map\` | normal | Codebase mapping |
|
|
457
|
+
| \`preload\` | low | Resource preloading |
|
|
458
|
+
| \`deepdive\` | normal | Deep code analysis |
|
|
459
|
+
| \`document\` | normal | Auto-documentation |
|
|
460
|
+
| \`refactor\` | normal | Refactoring suggestions |
|
|
461
|
+
| \`benchmark\` | normal | Performance benchmarking |
|
|
462
|
+
| \`testgaps\` | normal | Test coverage analysis |
|
|
463
|
+
|
|
464
|
+
### Managing Workers
|
|
465
|
+
\`\`\`bash
|
|
466
|
+
# List workers
|
|
467
|
+
npx @claude-flow/cli hooks worker list
|
|
468
|
+
|
|
469
|
+
# Trigger specific worker
|
|
470
|
+
npx @claude-flow/cli hooks worker dispatch --trigger audit
|
|
471
|
+
|
|
472
|
+
# Check worker status
|
|
473
|
+
npx @claude-flow/cli hooks worker status
|
|
474
|
+
\`\`\`
|
|
475
|
+
|
|
476
|
+
## Intelligence System
|
|
477
|
+
|
|
478
|
+
The RuVector Intelligence System provides neural learning:
|
|
479
|
+
|
|
480
|
+
### Components
|
|
481
|
+
- **SONA**: Self-Optimizing Neural Architecture (<0.05ms adaptation)
|
|
482
|
+
- **MoE**: Mixture of Experts for specialized routing
|
|
483
|
+
- **HNSW**: Hierarchical Navigable Small World for fast search
|
|
484
|
+
- **EWC++**: Elastic Weight Consolidation (prevents forgetting)
|
|
485
|
+
- **Flash Attention**: Optimized attention mechanism
|
|
486
|
+
|
|
487
|
+
### 4-Step Pipeline
|
|
488
|
+
1. **RETRIEVE** - Fetch relevant patterns via HNSW
|
|
489
|
+
2. **JUDGE** - Evaluate with verdicts (success/failure)
|
|
490
|
+
3. **DISTILL** - Extract key learnings via LoRA
|
|
491
|
+
4. **CONSOLIDATE** - Prevent catastrophic forgetting via EWC++
|
|
492
|
+
|
|
493
|
+
## Debugging
|
|
494
|
+
|
|
495
|
+
### Log Levels
|
|
496
|
+
\`\`\`bash
|
|
497
|
+
# Set log level
|
|
498
|
+
export CLAUDE_FLOW_LOG_LEVEL=debug
|
|
499
|
+
|
|
500
|
+
# Enable verbose mode
|
|
501
|
+
npx @claude-flow/cli --verbose <command>
|
|
502
|
+
\`\`\`
|
|
503
|
+
|
|
504
|
+
### Health Checks
|
|
505
|
+
\`\`\`bash
|
|
506
|
+
# Run diagnostics
|
|
507
|
+
npx @claude-flow/cli doctor --fix
|
|
508
|
+
|
|
509
|
+
# Check system status
|
|
510
|
+
npx @claude-flow/cli status
|
|
511
|
+
\`\`\`
|
|
512
|
+
`;
|
|
513
|
+
return base + additionalSections;
|
|
514
|
+
}
|
|
515
|
+
/**
|
|
516
|
+
* Generate enterprise AGENTS.md template with governance
|
|
517
|
+
*/
|
|
518
|
+
function generateEnterprise(options) {
|
|
519
|
+
const full = generateFull(options);
|
|
520
|
+
const enterpriseSections = `
|
|
521
|
+
## Governance
|
|
522
|
+
|
|
523
|
+
### Approval Workflow
|
|
524
|
+
All significant changes require:
|
|
525
|
+
1. Code review by designated reviewer
|
|
526
|
+
2. Security scan passing
|
|
527
|
+
3. Test coverage > 80%
|
|
528
|
+
4. Documentation update
|
|
529
|
+
5. Change request ticket linked
|
|
530
|
+
|
|
531
|
+
### Change Classification
|
|
532
|
+
|
|
533
|
+
| Class | Approval | Review Time | Examples |
|
|
534
|
+
|-------|----------|-------------|----------|
|
|
535
|
+
| Standard | Auto | <1 hour | Bug fixes, docs, config |
|
|
536
|
+
| Normal | 1 reviewer | <4 hours | Features, refactoring |
|
|
537
|
+
| Major | 2 reviewers | <24 hours | Architecture, security |
|
|
538
|
+
| Emergency | Skip + post-review | Immediate | Production hotfix |
|
|
539
|
+
|
|
540
|
+
### Audit Trail
|
|
541
|
+
All agent actions are logged to:
|
|
542
|
+
- \`/logs/agent-actions.log\` - Local file log
|
|
543
|
+
- \`/logs/audit.json\` - Structured JSON log
|
|
544
|
+
- Central audit system (if configured via AUDIT_ENDPOINT)
|
|
545
|
+
|
|
546
|
+
\`\`\`bash
|
|
547
|
+
# View recent agent actions
|
|
548
|
+
npx @claude-flow/cli logs --type agent-actions --last 1h
|
|
549
|
+
|
|
550
|
+
# Export audit log
|
|
551
|
+
npx @claude-flow/cli logs export --format json --output audit.json
|
|
552
|
+
\`\`\`
|
|
553
|
+
|
|
554
|
+
### Compliance
|
|
555
|
+
|
|
556
|
+
#### SOC2 Controls
|
|
557
|
+
- All actions timestamped with actor ID
|
|
558
|
+
- Immutable audit log retention (90 days minimum)
|
|
559
|
+
- Access control for sensitive operations
|
|
560
|
+
- Automated security scanning
|
|
561
|
+
|
|
562
|
+
#### GDPR Data Handling
|
|
563
|
+
- PII detection and masking in logs
|
|
564
|
+
- Data minimization in memory storage
|
|
565
|
+
- Right to erasure support in AgentDB
|
|
566
|
+
- Cross-border transfer controls
|
|
567
|
+
|
|
568
|
+
#### PCI-DSS (if applicable)
|
|
569
|
+
- No storage of card data in agent memory
|
|
570
|
+
- Encrypted communication for sensitive data
|
|
571
|
+
- Access logging for cardholder data operations
|
|
572
|
+
- Quarterly security reviews
|
|
573
|
+
|
|
574
|
+
### Role-Based Access Control (RBAC)
|
|
575
|
+
|
|
576
|
+
| Role | Permissions |
|
|
577
|
+
|------|-------------|
|
|
578
|
+
| Developer | Read, write source code, run tests |
|
|
579
|
+
| Lead | Developer + approve PRs, deploy to staging |
|
|
580
|
+
| Admin | Lead + deploy to production, manage config |
|
|
581
|
+
| Security | Audit logs, security scans, CVE remediation |
|
|
582
|
+
| Observer | Read-only access to logs and metrics |
|
|
583
|
+
|
|
584
|
+
\`\`\`bash
|
|
585
|
+
# Check current role
|
|
586
|
+
npx @claude-flow/cli claims list
|
|
587
|
+
|
|
588
|
+
# Request elevated permissions
|
|
589
|
+
npx @claude-flow/cli claims request --permission deploy:production
|
|
590
|
+
\`\`\`
|
|
591
|
+
|
|
592
|
+
## Service Level Agreements (SLAs)
|
|
593
|
+
|
|
594
|
+
### Agent Response Times
|
|
595
|
+
|
|
596
|
+
| Operation | Target | Max | Escalation |
|
|
597
|
+
|-----------|--------|-----|------------|
|
|
598
|
+
| Code generation | <5s | 30s | Alert on-call |
|
|
599
|
+
| Memory search | <100ms | 500ms | Log warning |
|
|
600
|
+
| Security scan | <60s | 5min | Queue retry |
|
|
601
|
+
| Test execution | <2min | 10min | Split test suite |
|
|
602
|
+
|
|
603
|
+
### Availability Targets
|
|
604
|
+
- Agent availability: 99.9% uptime
|
|
605
|
+
- Memory system: 99.99% availability
|
|
606
|
+
- MCP server: 99.5% uptime
|
|
607
|
+
|
|
608
|
+
## Incident Response
|
|
609
|
+
|
|
610
|
+
### Severity Levels
|
|
611
|
+
|
|
612
|
+
| Level | Description | Response Time | Notification |
|
|
613
|
+
|-------|-------------|---------------|--------------|
|
|
614
|
+
| P1 | Production down | <15 min | Page on-call |
|
|
615
|
+
| P2 | Major feature broken | <1 hour | Slack alert |
|
|
616
|
+
| P3 | Minor issue | <4 hours | Email |
|
|
617
|
+
| P4 | Cosmetic/docs | Next sprint | Ticket |
|
|
618
|
+
|
|
619
|
+
### On Security Issue
|
|
620
|
+
1. **Contain** - Immediately stop affected agents
|
|
621
|
+
\`\`\`bash
|
|
622
|
+
npx @claude-flow/cli agent stop --all --force
|
|
623
|
+
\`\`\`
|
|
624
|
+
2. **Isolate** - Quarantine compromised resources
|
|
625
|
+
3. **Document** - Record timeline in incident log
|
|
626
|
+
4. **Notify** - Alert security team via configured channel
|
|
627
|
+
5. **Remediate** - Apply fix with expedited review
|
|
628
|
+
6. **Review** - Post-incident analysis within 48 hours
|
|
629
|
+
|
|
630
|
+
### On Production Bug
|
|
631
|
+
1. **Assess** - Determine impact and scope
|
|
632
|
+
2. **Decide** - Roll back if safe, or forward-fix
|
|
633
|
+
\`\`\`bash
|
|
634
|
+
# Rollback
|
|
635
|
+
npx @claude-flow/cli deployment rollback --env production
|
|
636
|
+
|
|
637
|
+
# Or forward-fix
|
|
638
|
+
npx @claude-flow/cli workflow run hotfix
|
|
639
|
+
\`\`\`
|
|
640
|
+
3. **Document** - Capture reproduction steps
|
|
641
|
+
4. **Fix** - Create hotfix on dedicated branch
|
|
642
|
+
5. **Validate** - Full regression test suite
|
|
643
|
+
6. **Deploy** - With expedited review process
|
|
644
|
+
|
|
645
|
+
### Communication Templates
|
|
646
|
+
|
|
647
|
+
\`\`\`markdown
|
|
648
|
+
# Incident Started
|
|
649
|
+
**Status**: Investigating
|
|
650
|
+
**Impact**: [Brief description]
|
|
651
|
+
**Started**: [Timestamp]
|
|
652
|
+
**Next Update**: [ETA]
|
|
653
|
+
|
|
654
|
+
# Incident Resolved
|
|
655
|
+
**Status**: Resolved
|
|
656
|
+
**Impact**: [Summary]
|
|
657
|
+
**Duration**: [Time]
|
|
658
|
+
**Root Cause**: [Brief description]
|
|
659
|
+
**Prevention**: [Actions taken]
|
|
660
|
+
\`\`\`
|
|
661
|
+
|
|
662
|
+
## Disaster Recovery
|
|
663
|
+
|
|
664
|
+
### Backup Strategy
|
|
665
|
+
- **Memory DB**: Hourly snapshots, 7-day retention
|
|
666
|
+
- **Configuration**: Version controlled, immutable
|
|
667
|
+
- **Agent State**: Checkpoint every 10 tasks
|
|
668
|
+
|
|
669
|
+
### Recovery Procedures
|
|
670
|
+
\`\`\`bash
|
|
671
|
+
# Restore from backup
|
|
672
|
+
npx @claude-flow/cli memory restore --snapshot latest
|
|
673
|
+
|
|
674
|
+
# Restore specific checkpoint
|
|
675
|
+
npx @claude-flow/cli session restore --checkpoint <id>
|
|
676
|
+
\`\`\`
|
|
677
|
+
|
|
678
|
+
### Recovery Time Objectives
|
|
679
|
+
| Component | RTO | RPO |
|
|
680
|
+
|-----------|-----|-----|
|
|
681
|
+
| Memory DB | <1 hour | <1 hour |
|
|
682
|
+
| Agent State | <15 min | <10 tasks |
|
|
683
|
+
| Configuration | <5 min | 0 (git) |
|
|
684
|
+
|
|
685
|
+
## Monitoring & Alerting
|
|
686
|
+
|
|
687
|
+
### Key Metrics
|
|
688
|
+
- Agent task completion rate
|
|
689
|
+
- Average response latency
|
|
690
|
+
- Error rate by type
|
|
691
|
+
- Memory usage trends
|
|
692
|
+
- Security scan findings
|
|
693
|
+
|
|
694
|
+
### Alert Thresholds
|
|
695
|
+
\`\`\`yaml
|
|
696
|
+
alerts:
|
|
697
|
+
- name: high_error_rate
|
|
698
|
+
condition: error_rate > 5%
|
|
699
|
+
duration: 5m
|
|
700
|
+
severity: critical
|
|
701
|
+
|
|
702
|
+
- name: slow_response
|
|
703
|
+
condition: p99_latency > 10s
|
|
704
|
+
duration: 10m
|
|
705
|
+
severity: warning
|
|
706
|
+
|
|
707
|
+
- name: memory_pressure
|
|
708
|
+
condition: memory_usage > 90%
|
|
709
|
+
duration: 1m
|
|
710
|
+
severity: critical
|
|
711
|
+
\`\`\`
|
|
712
|
+
|
|
713
|
+
## Training & Onboarding
|
|
714
|
+
|
|
715
|
+
### New Team Member Checklist
|
|
716
|
+
- [ ] Read this AGENTS.md document
|
|
717
|
+
- [ ] Complete security awareness training
|
|
718
|
+
- [ ] Set up local development environment
|
|
719
|
+
- [ ] Run \`npx @claude-flow/cli doctor\` to verify setup
|
|
720
|
+
- [ ] Complete first guided task with mentor
|
|
721
|
+
- [ ] Review incident response procedures
|
|
722
|
+
|
|
723
|
+
### Knowledge Base
|
|
724
|
+
- Internal wiki: [Link to wiki]
|
|
725
|
+
- Architecture Decision Records: \`/docs/adr/\`
|
|
726
|
+
- Runbooks: \`/docs/runbooks/\`
|
|
727
|
+
`;
|
|
728
|
+
return full + enterpriseSections;
|
|
729
|
+
}
|
|
730
|
+
//# sourceMappingURL=agents-md.js.map
|