claude-flow 2.7.0-alpha.9 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.reasoningbank-example.json +124 -0
- package/.claude/settings.reasoningbank-minimal.json +40 -0
- package/.claude/skills/agentdb-advanced/SKILL.md +550 -0
- package/.claude/skills/agentdb-learning/SKILL.md +545 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +339 -0
- package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
- package/.claude/skills/agentdb-vector-search/SKILL.md +339 -0
- package/.claude/skills/flow-nexus-neural/SKILL.md +738 -0
- package/.claude/skills/flow-nexus-platform/SKILL.md +1157 -0
- package/.claude/skills/flow-nexus-swarm/SKILL.md +610 -0
- package/.claude/skills/github-code-review/SKILL.md +1140 -0
- package/.claude/skills/github-multi-repo/SKILL.md +874 -0
- package/.claude/skills/github-project-management/SKILL.md +1277 -0
- package/.claude/skills/github-release-management/SKILL.md +1081 -0
- package/.claude/skills/github-workflow-automation/SKILL.md +1065 -0
- package/.claude/skills/hive-mind-advanced/SKILL.md +712 -0
- package/.claude/skills/hooks-automation/SKILL.md +1201 -0
- package/.claude/skills/pair-programming/SKILL.md +1202 -0
- package/.claude/skills/performance-analysis/SKILL.md +563 -0
- package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
- package/.claude/skills/skill-builder/SKILL.md +910 -0
- package/.claude/skills/sparc-methodology/SKILL.md +1115 -0
- package/.claude/skills/stream-chain/SKILL.md +563 -0
- package/.claude/skills/swarm-advanced/SKILL.md +973 -0
- package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
- package/.claude/skills/verification-quality/SKILL.md +649 -0
- package/.claude/statusline-command.sh +175 -0
- package/.claude/test-reasoningbank-hooks.sh +99 -0
- package/CHANGELOG.md +460 -0
- package/README.md +254 -188
- package/bin/claude-flow +1 -1
- package/dist/src/cli/simple-cli.js +182 -172
- package/dist/src/cli/simple-cli.js.map +1 -1
- package/dist/src/cli/simple-commands/config.js +115 -257
- package/dist/src/cli/simple-commands/config.js.map +1 -1
- package/dist/src/cli/simple-commands/init/index.js +36 -22
- package/dist/src/cli/simple-commands/init/index.js.map +1 -1
- package/dist/src/cli/simple-commands/init/skills-copier.js +186 -0
- package/dist/src/cli/simple-commands/init/skills-copier.js.map +1 -0
- package/dist/src/cli/simple-commands/memory.js +12 -1
- package/dist/src/cli/simple-commands/memory.js.map +1 -1
- package/dist/src/cli/simple-commands/process-ui-enhanced.js +1 -1
- package/dist/src/cli/simple-commands/process-ui-enhanced.js.map +1 -1
- package/dist/src/cli/simple-commands/status.js +1 -1
- package/dist/src/cli/simple-commands/status.js.map +1 -1
- package/dist/src/core/version.js +1 -1
- package/dist/src/mcp/mcp-server.js +261 -3
- package/dist/src/mcp/mcp-server.js.map +1 -1
- package/dist/src/reasoningbank/reasoningbank-adapter.js +152 -99
- package/dist/src/reasoningbank/reasoningbank-adapter.js.map +1 -1
- package/dist/src/utils/metrics-reader.js +39 -37
- package/dist/src/utils/metrics-reader.js.map +1 -1
- package/docker-test/.claude-flow/metrics/performance.json +3 -3
- package/docker-test/.claude-flow/metrics/task-metrics.json +3 -3
- package/docker-test/Dockerfile.alpha11-test +26 -0
- package/docker-test/Dockerfile.alpha12-test +47 -0
- package/docker-test/Dockerfile.local-test +42 -0
- package/docker-test/test-alpha11.sh +244 -0
- package/docker-test/test-local-fix.sh +235 -0
- package/docs/COMMANDS_TO_SKILLS_MIGRATION.md +382 -0
- package/docs/FINAL_INIT_STRUCTURE.md +320 -0
- package/docs/PATTERN_PERSISTENCE_FIX.md +328 -0
- package/docs/RELEASE-NOTES-v2.7.0-alpha.10.md +309 -0
- package/docs/RELEASE-NOTES-v2.7.0-alpha.9.md +208 -0
- package/docs/RELEASE_v2.7.1.md +244 -0
- package/docs/integrations/reasoningbank/MIGRATION-v1.5.13.md +1 -1
- package/docs/reasoningbank/CLAUDE-CODE-INTEGRATION.md +563 -0
- package/docs/reasoningbank/EXAMPLES.md +611 -0
- package/docs/reasoningbank/README.md +1139 -0
- package/docs/reasoningbank/agentic-flow-integration.md +800 -0
- package/docs/reasoningbank/architecture.md +680 -0
- package/docs/reasoningbank/google-research.md +1017 -0
- package/docs/reasoningbank/models/.claude-flow/metrics/agent-metrics.json +1 -0
- package/docs/reasoningbank/models/.claude-flow/metrics/performance.json +87 -0
- package/docs/reasoningbank/models/.claude-flow/metrics/task-metrics.json +10 -0
- package/docs/reasoningbank/models/HOW-TO-TRAIN.md +537 -0
- package/docs/reasoningbank/models/HOW-TO-USE.md +655 -0
- package/docs/reasoningbank/models/INDEX.md +276 -0
- package/docs/reasoningbank/models/README.md +345 -0
- package/docs/reasoningbank/models/_docs/COMPATIBILITY.md +448 -0
- package/docs/reasoningbank/models/_docs/COMPLETION-SUMMARY.md +478 -0
- package/docs/reasoningbank/models/_docs/README.md +80 -0
- package/docs/reasoningbank/models/_docs/SCHEMA-UPDATE-SUMMARY.md +376 -0
- package/docs/reasoningbank/models/_docs/VERIFICATION-COMPLETE.md +370 -0
- package/docs/reasoningbank/models/_scripts/README.md +270 -0
- package/docs/reasoningbank/models/_scripts/benchmark-all.cjs +407 -0
- package/docs/reasoningbank/models/_scripts/fix-schema-compatibility.cjs +300 -0
- package/docs/reasoningbank/models/_scripts/schema-validator.cjs +360 -0
- package/docs/reasoningbank/models/_scripts/training-coordinator.cjs +85 -0
- package/docs/reasoningbank/models/_scripts/validation-suite.cjs +239 -0
- package/docs/reasoningbank/models/benchmark-output.log +41 -0
- package/docs/reasoningbank/models/code-reasoning/.claude-flow/metrics/agent-metrics.json +1 -0
- package/docs/reasoningbank/models/code-reasoning/.claude-flow/metrics/performance.json +87 -0
- package/docs/reasoningbank/models/code-reasoning/.claude-flow/metrics/task-metrics.json +18 -0
- package/docs/reasoningbank/models/code-reasoning/.swarm/SCHEMA-FIX-REPORT.md +69 -0
- package/docs/reasoningbank/models/code-reasoning/.swarm/memory.db +0 -0
- package/docs/reasoningbank/models/code-reasoning/.swarm/memory.db.backup +0 -0
- package/docs/reasoningbank/models/code-reasoning/README.md +451 -0
- package/docs/reasoningbank/models/code-reasoning/TRAINING-SUMMARY.md +416 -0
- package/docs/reasoningbank/models/code-reasoning/train-code.js +2059 -0
- package/docs/reasoningbank/models/code-reasoning/training.log +18 -0
- package/docs/reasoningbank/models/code-reasoning/validation-report.md +349 -0
- package/docs/reasoningbank/models/domain-expert/.claude-flow/metrics/agent-metrics.json +1 -0
- package/docs/reasoningbank/models/domain-expert/.claude-flow/metrics/performance.json +87 -0
- package/docs/reasoningbank/models/domain-expert/.claude-flow/metrics/task-metrics.json +18 -0
- package/docs/reasoningbank/models/domain-expert/COMPLETION-REPORT.md +451 -0
- package/docs/reasoningbank/models/domain-expert/INDEX.md +182 -0
- package/docs/reasoningbank/models/domain-expert/README.md +215 -0
- package/docs/reasoningbank/models/domain-expert/SCHEMA-FIX-REPORT.md +65 -0
- package/docs/reasoningbank/models/domain-expert/SUMMARY.md +286 -0
- package/docs/reasoningbank/models/domain-expert/USAGE.md +394 -0
- package/docs/reasoningbank/models/domain-expert/demo-queries.sh +42 -0
- package/docs/reasoningbank/models/domain-expert/memory.db +0 -0
- package/docs/reasoningbank/models/domain-expert/train-domain.js +1324 -0
- package/docs/reasoningbank/models/domain-expert/validate.js +218 -0
- package/docs/reasoningbank/models/domain-expert/validation-report.md +89 -0
- package/docs/reasoningbank/models/google-research/README.md +455 -0
- package/docs/reasoningbank/models/google-research/SCHEMA-FIX-REPORT.md +65 -0
- package/docs/reasoningbank/models/google-research/memory.db +0 -0
- package/docs/reasoningbank/models/google-research/memory.db.backup +0 -0
- package/docs/reasoningbank/models/google-research/train-google.js +697 -0
- package/docs/reasoningbank/models/google-research/validation-report.md +99 -0
- package/docs/reasoningbank/models/google-research/validation-suite.js +323 -0
- package/docs/reasoningbank/models/problem-solving/.claude-flow/metrics/agent-metrics.json +1 -0
- package/docs/reasoningbank/models/problem-solving/.claude-flow/metrics/performance.json +87 -0
- package/docs/reasoningbank/models/problem-solving/.claude-flow/metrics/task-metrics.json +10 -0
- package/docs/reasoningbank/models/problem-solving/.swarm/memory.db +0 -0
- package/docs/reasoningbank/models/problem-solving/README.md +629 -0
- package/docs/reasoningbank/models/problem-solving/SCHEMA-FIX-REPORT.md +66 -0
- package/docs/reasoningbank/models/problem-solving/TRAINING_SUMMARY.md +524 -0
- package/docs/reasoningbank/models/problem-solving/memory.db +0 -0
- package/docs/reasoningbank/models/problem-solving/memory.db.backup +0 -0
- package/docs/reasoningbank/models/problem-solving/train-problem.js +1319 -0
- package/docs/reasoningbank/models/problem-solving/validation-report.md +300 -0
- package/docs/reasoningbank/models/safla/.claude-flow/metrics/agent-metrics.json +1 -0
- package/docs/reasoningbank/models/safla/.claude-flow/metrics/performance.json +87 -0
- package/docs/reasoningbank/models/safla/.claude-flow/metrics/task-metrics.json +10 -0
- package/docs/reasoningbank/models/safla/CHEATSHEET.md +277 -0
- package/docs/reasoningbank/models/safla/COMPLETION_REPORT.txt +108 -0
- package/docs/reasoningbank/models/safla/MANIFEST.txt +104 -0
- package/docs/reasoningbank/models/safla/QUICKSTART.md +349 -0
- package/docs/reasoningbank/models/safla/README.md +457 -0
- package/docs/reasoningbank/models/safla/SCHEMA-FIX-REPORT.md +68 -0
- package/docs/reasoningbank/models/safla/TRAINING_SUMMARY.md +383 -0
- package/docs/reasoningbank/models/safla/memory/memory-store.json +11 -0
- package/docs/reasoningbank/models/safla/memory.db +0 -0
- package/docs/reasoningbank/models/safla/memory.db.backup +0 -0
- package/docs/reasoningbank/models/safla/node_modules/.package-lock.json +456 -0
- package/docs/reasoningbank/models/safla/node_modules/base64-js/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/base64-js/README.md +34 -0
- package/docs/reasoningbank/models/safla/node_modules/base64-js/base64js.min.js +1 -0
- package/docs/reasoningbank/models/safla/node_modules/base64-js/index.d.ts +3 -0
- package/docs/reasoningbank/models/safla/node_modules/base64-js/index.js +150 -0
- package/docs/reasoningbank/models/safla/node_modules/base64-js/package.json +47 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/README.md +99 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/binding.gyp +38 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/common.gypi +68 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/copy.js +31 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/defines.gypi +41 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/download.sh +122 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/patches/1208.patch +15 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +261480 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +13715 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +719 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/deps/test_extension.c +21 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/database.js +90 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/index.js +3 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/lib/util.js +12 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/package.json +54 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/src/better_sqlite3.cpp +2186 -0
- package/docs/reasoningbank/models/safla/node_modules/better-sqlite3/src/better_sqlite3.hpp +1036 -0
- package/docs/reasoningbank/models/safla/node_modules/bindings/LICENSE.md +22 -0
- package/docs/reasoningbank/models/safla/node_modules/bindings/README.md +98 -0
- package/docs/reasoningbank/models/safla/node_modules/bindings/bindings.js +221 -0
- package/docs/reasoningbank/models/safla/node_modules/bindings/package.json +28 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/.travis.yml +17 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/BufferList.js +396 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/LICENSE.md +13 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/README.md +247 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/bl.js +84 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/package.json +37 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/test/convert.js +21 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/test/indexOf.js +492 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/test/isBufferList.js +32 -0
- package/docs/reasoningbank/models/safla/node_modules/bl/test/test.js +869 -0
- package/docs/reasoningbank/models/safla/node_modules/buffer/AUTHORS.md +70 -0
- package/docs/reasoningbank/models/safla/node_modules/buffer/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/buffer/README.md +410 -0
- package/docs/reasoningbank/models/safla/node_modules/buffer/index.d.ts +186 -0
- package/docs/reasoningbank/models/safla/node_modules/buffer/index.js +1817 -0
- package/docs/reasoningbank/models/safla/node_modules/buffer/package.json +96 -0
- package/docs/reasoningbank/models/safla/node_modules/chownr/LICENSE +15 -0
- package/docs/reasoningbank/models/safla/node_modules/chownr/README.md +3 -0
- package/docs/reasoningbank/models/safla/node_modules/chownr/chownr.js +167 -0
- package/docs/reasoningbank/models/safla/node_modules/chownr/package.json +29 -0
- package/docs/reasoningbank/models/safla/node_modules/decompress-response/index.d.ts +22 -0
- package/docs/reasoningbank/models/safla/node_modules/decompress-response/index.js +58 -0
- package/docs/reasoningbank/models/safla/node_modules/decompress-response/license +9 -0
- package/docs/reasoningbank/models/safla/node_modules/decompress-response/package.json +56 -0
- package/docs/reasoningbank/models/safla/node_modules/decompress-response/readme.md +48 -0
- package/docs/reasoningbank/models/safla/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/docs/reasoningbank/models/safla/node_modules/deep-extend/LICENSE +20 -0
- package/docs/reasoningbank/models/safla/node_modules/deep-extend/README.md +91 -0
- package/docs/reasoningbank/models/safla/node_modules/deep-extend/index.js +1 -0
- package/docs/reasoningbank/models/safla/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/docs/reasoningbank/models/safla/node_modules/deep-extend/package.json +62 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/LICENSE +201 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/README.md +163 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/index.d.ts +14 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/lib/elf.js +39 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/lib/process.js +24 -0
- package/docs/reasoningbank/models/safla/node_modules/detect-libc/package.json +44 -0
- package/docs/reasoningbank/models/safla/node_modules/end-of-stream/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/end-of-stream/README.md +54 -0
- package/docs/reasoningbank/models/safla/node_modules/end-of-stream/index.js +96 -0
- package/docs/reasoningbank/models/safla/node_modules/end-of-stream/package.json +37 -0
- package/docs/reasoningbank/models/safla/node_modules/expand-template/.travis.yml +6 -0
- package/docs/reasoningbank/models/safla/node_modules/expand-template/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/expand-template/README.md +43 -0
- package/docs/reasoningbank/models/safla/node_modules/expand-template/index.js +26 -0
- package/docs/reasoningbank/models/safla/node_modules/expand-template/package.json +29 -0
- package/docs/reasoningbank/models/safla/node_modules/expand-template/test.js +67 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/History.md +21 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/LICENSE +20 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/README.md +74 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/index.js +66 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/package.json +32 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/test/test.js +24 -0
- package/docs/reasoningbank/models/safla/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/docs/reasoningbank/models/safla/node_modules/fs-constants/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/fs-constants/README.md +26 -0
- package/docs/reasoningbank/models/safla/node_modules/fs-constants/browser.js +1 -0
- package/docs/reasoningbank/models/safla/node_modules/fs-constants/index.js +1 -0
- package/docs/reasoningbank/models/safla/node_modules/fs-constants/package.json +19 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/.travis.yml +4 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/LICENSE +18 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/example/package.json +8 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/example/url.js +3 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/index.js +17 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/package.json +30 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/readme.markdown +53 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/test/a.json +8 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/test/b.json +5 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/test/c.json +5 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/test/d.json +7 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/test/e.json +5 -0
- package/docs/reasoningbank/models/safla/node_modules/github-from-package/test/url.js +19 -0
- package/docs/reasoningbank/models/safla/node_modules/ieee754/LICENSE +11 -0
- package/docs/reasoningbank/models/safla/node_modules/ieee754/README.md +51 -0
- package/docs/reasoningbank/models/safla/node_modules/ieee754/index.d.ts +10 -0
- package/docs/reasoningbank/models/safla/node_modules/ieee754/index.js +85 -0
- package/docs/reasoningbank/models/safla/node_modules/ieee754/package.json +52 -0
- package/docs/reasoningbank/models/safla/node_modules/inherits/LICENSE +16 -0
- package/docs/reasoningbank/models/safla/node_modules/inherits/README.md +42 -0
- package/docs/reasoningbank/models/safla/node_modules/inherits/inherits.js +9 -0
- package/docs/reasoningbank/models/safla/node_modules/inherits/inherits_browser.js +27 -0
- package/docs/reasoningbank/models/safla/node_modules/inherits/package.json +29 -0
- package/docs/reasoningbank/models/safla/node_modules/ini/LICENSE +15 -0
- package/docs/reasoningbank/models/safla/node_modules/ini/README.md +102 -0
- package/docs/reasoningbank/models/safla/node_modules/ini/ini.js +206 -0
- package/docs/reasoningbank/models/safla/node_modules/ini/package.json +33 -0
- package/docs/reasoningbank/models/safla/node_modules/mimic-response/index.d.ts +17 -0
- package/docs/reasoningbank/models/safla/node_modules/mimic-response/index.js +77 -0
- package/docs/reasoningbank/models/safla/node_modules/mimic-response/license +9 -0
- package/docs/reasoningbank/models/safla/node_modules/mimic-response/package.json +42 -0
- package/docs/reasoningbank/models/safla/node_modules/mimic-response/readme.md +78 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/.eslintrc +29 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/.nycrc +14 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/CHANGELOG.md +298 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/LICENSE +18 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/README.md +121 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/example/parse.js +4 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/index.js +263 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/package.json +75 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/all_bool.js +34 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/bool.js +177 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/dash.js +43 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/default_bool.js +37 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/dotted.js +24 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/kv_short.js +32 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/long.js +33 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/num.js +38 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/parse.js +209 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/parse_modified.js +11 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/proto.js +64 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/short.js +69 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/stop_early.js +17 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/unknown.js +104 -0
- package/docs/reasoningbank/models/safla/node_modules/minimist/test/whitespace.js +10 -0
- package/docs/reasoningbank/models/safla/node_modules/mkdirp-classic/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/mkdirp-classic/README.md +18 -0
- package/docs/reasoningbank/models/safla/node_modules/mkdirp-classic/index.js +98 -0
- package/docs/reasoningbank/models/safla/node_modules/mkdirp-classic/package.json +18 -0
- package/docs/reasoningbank/models/safla/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/docs/reasoningbank/models/safla/node_modules/napi-build-utils/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/napi-build-utils/README.md +52 -0
- package/docs/reasoningbank/models/safla/node_modules/napi-build-utils/index.js +214 -0
- package/docs/reasoningbank/models/safla/node_modules/napi-build-utils/index.md +0 -0
- package/docs/reasoningbank/models/safla/node_modules/napi-build-utils/package.json +42 -0
- package/docs/reasoningbank/models/safla/node_modules/node-abi/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/node-abi/README.md +54 -0
- package/docs/reasoningbank/models/safla/node_modules/node-abi/abi_registry.json +408 -0
- package/docs/reasoningbank/models/safla/node_modules/node-abi/index.js +179 -0
- package/docs/reasoningbank/models/safla/node_modules/node-abi/package.json +45 -0
- package/docs/reasoningbank/models/safla/node_modules/once/LICENSE +15 -0
- package/docs/reasoningbank/models/safla/node_modules/once/README.md +79 -0
- package/docs/reasoningbank/models/safla/node_modules/once/once.js +42 -0
- package/docs/reasoningbank/models/safla/node_modules/once/package.json +33 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/README.md +163 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/asset.js +44 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/bin.js +78 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/download.js +142 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/error.js +14 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/help.txt +16 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/index.js +1 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/log.js +33 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/package.json +67 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/proxy.js +35 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/rc.js +64 -0
- package/docs/reasoningbank/models/safla/node_modules/prebuild-install/util.js +143 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/.github/FUNDING.yml +2 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/.travis.yml +5 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/README.md +74 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/SECURITY.md +5 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/index.js +86 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/package.json +24 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/test-browser.js +66 -0
- package/docs/reasoningbank/models/safla/node_modules/pump/test-node.js +53 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/LICENSE.BSD +26 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/LICENSE.MIT +24 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/README.md +227 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/browser.js +7 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/cli.js +4 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/index.js +53 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/lib/utils.js +104 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/package.json +29 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/test/ini.js +16 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/test/nested-env-vars.js +50 -0
- package/docs/reasoningbank/models/safla/node_modules/rc/test/test.js +59 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/LICENSE +47 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/README.md +106 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/errors-browser.js +127 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/errors.js +116 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/package.json +68 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/readable-browser.js +9 -0
- package/docs/reasoningbank/models/safla/node_modules/readable-stream/readable.js +16 -0
- package/docs/reasoningbank/models/safla/node_modules/safe-buffer/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/safe-buffer/README.md +584 -0
- package/docs/reasoningbank/models/safla/node_modules/safe-buffer/index.d.ts +187 -0
- package/docs/reasoningbank/models/safla/node_modules/safe-buffer/index.js +65 -0
- package/docs/reasoningbank/models/safla/node_modules/safe-buffer/package.json +51 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/LICENSE +15 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/README.md +664 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/bin/semver.js +191 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/classes/comparator.js +143 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/classes/index.js +7 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/classes/range.js +557 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/classes/semver.js +333 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/clean.js +8 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/cmp.js +54 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/coerce.js +62 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/compare-build.js +9 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/compare-loose.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/compare.js +7 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/diff.js +60 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/eq.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/gt.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/gte.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/inc.js +21 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/lt.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/lte.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/major.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/minor.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/neq.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/parse.js +18 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/patch.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/prerelease.js +8 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/rcompare.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/rsort.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/satisfies.js +12 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/sort.js +5 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/functions/valid.js +8 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/index.js +91 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/internal/constants.js +37 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/internal/debug.js +11 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/internal/identifiers.js +29 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/internal/lrucache.js +42 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/internal/parse-options.js +17 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/internal/re.js +223 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/package.json +78 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/preload.js +4 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/range.bnf +16 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/gtr.js +6 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/intersects.js +9 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/ltr.js +6 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/min-version.js +63 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/outside.js +82 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/simplify.js +49 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/subset.js +249 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/to-comparators.js +10 -0
- package/docs/reasoningbank/models/safla/node_modules/semver/ranges/valid.js +13 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-concat/.travis.yml +3 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-concat/LICENSE +20 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-concat/README.md +44 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-concat/index.js +15 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-concat/package.json +47 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-concat/test/basic.js +41 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-get/LICENSE +20 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-get/README.md +333 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-get/index.js +108 -0
- package/docs/reasoningbank/models/safla/node_modules/simple-get/package.json +67 -0
- package/docs/reasoningbank/models/safla/node_modules/string_decoder/LICENSE +48 -0
- package/docs/reasoningbank/models/safla/node_modules/string_decoder/README.md +47 -0
- package/docs/reasoningbank/models/safla/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/docs/reasoningbank/models/safla/node_modules/string_decoder/package.json +34 -0
- package/docs/reasoningbank/models/safla/node_modules/strip-json-comments/index.js +70 -0
- package/docs/reasoningbank/models/safla/node_modules/strip-json-comments/license +21 -0
- package/docs/reasoningbank/models/safla/node_modules/strip-json-comments/package.json +42 -0
- package/docs/reasoningbank/models/safla/node_modules/strip-json-comments/readme.md +64 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/.travis.yml +6 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/README.md +165 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/index.js +363 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/package.json +41 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-fs/test/index.js +346 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/LICENSE +21 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/README.md +168 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/extract.js +257 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/headers.js +295 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/index.js +2 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/pack.js +255 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/package.json +58 -0
- package/docs/reasoningbank/models/safla/node_modules/tar-stream/sandbox.js +11 -0
- package/docs/reasoningbank/models/safla/node_modules/tunnel-agent/LICENSE +55 -0
- package/docs/reasoningbank/models/safla/node_modules/tunnel-agent/README.md +4 -0
- package/docs/reasoningbank/models/safla/node_modules/tunnel-agent/index.js +244 -0
- package/docs/reasoningbank/models/safla/node_modules/tunnel-agent/package.json +22 -0
- package/docs/reasoningbank/models/safla/node_modules/util-deprecate/History.md +16 -0
- package/docs/reasoningbank/models/safla/node_modules/util-deprecate/LICENSE +24 -0
- package/docs/reasoningbank/models/safla/node_modules/util-deprecate/README.md +53 -0
- package/docs/reasoningbank/models/safla/node_modules/util-deprecate/browser.js +67 -0
- package/docs/reasoningbank/models/safla/node_modules/util-deprecate/node.js +6 -0
- package/docs/reasoningbank/models/safla/node_modules/util-deprecate/package.json +27 -0
- package/docs/reasoningbank/models/safla/node_modules/wrappy/LICENSE +15 -0
- package/docs/reasoningbank/models/safla/node_modules/wrappy/README.md +36 -0
- package/docs/reasoningbank/models/safla/node_modules/wrappy/package.json +29 -0
- package/docs/reasoningbank/models/safla/node_modules/wrappy/wrappy.js +33 -0
- package/docs/reasoningbank/models/safla/package-lock.json +463 -0
- package/docs/reasoningbank/models/safla/package.json +14 -0
- package/docs/reasoningbank/models/safla/train-safla.js +524 -0
- package/docs/reasoningbank/models/safla/training.log +64 -0
- package/docs/reasoningbank/models/safla/validate-safla.js +449 -0
- package/docs/reasoningbank/models/safla/validation-report.md +115 -0
- package/docs/reasoningbank/models/safla/validation-results.json +189 -0
- package/docs/reasoningbank/tutorial-advanced.md +869 -0
- package/docs/reasoningbank/tutorial-basic.md +626 -0
- package/docs/reports/validation/PROCESS-EXIT-FIX-v2.7.0-alpha.9.md +154 -0
- package/docs/reports/validation/REASONINGBANK-v1.5.13-VALIDATION.md +1 -1
- package/docs/skills/skills-tutorial.md +2910 -0
- package/docs/skills-tutorial.md +1251 -0
- package/package.json +4 -3
- package/src/cli/simple-commands/init/index.js +32 -14
- package/src/cli/simple-commands/init/skills-copier.js +215 -0
- package/src/cli/simple-commands/process-ui-enhanced.js +1 -1
- package/src/cli/simple-commands/status.js +1 -1
- package/src/mcp/mcp-server.js +302 -2
- package/src/reasoningbank/reasoningbank-adapter.js +8 -6
- package/.claude/commands/analysis/COMMAND_COMPLIANCE_REPORT.md +0 -54
- package/.claude/commands/analysis/bottleneck-detect.md +0 -162
- package/.claude/commands/analysis/performance-bottlenecks.md +0 -59
- package/.claude/commands/analysis/performance-report.md +0 -25
- package/.claude/commands/flow-nexus/app-store.md +0 -124
- package/.claude/commands/flow-nexus/challenges.md +0 -120
- package/.claude/commands/flow-nexus/login-registration.md +0 -65
- package/.claude/commands/flow-nexus/neural-network.md +0 -134
- package/.claude/commands/flow-nexus/payments.md +0 -116
- package/.claude/commands/flow-nexus/sandbox.md +0 -83
- package/.claude/commands/flow-nexus/swarm.md +0 -87
- package/.claude/commands/flow-nexus/user-tools.md +0 -152
- package/.claude/commands/flow-nexus/workflow.md +0 -115
- package/.claude/commands/github/code-review-swarm.md +0 -514
- package/.claude/commands/github/github-modes.md +0 -147
- package/.claude/commands/github/issue-tracker.md +0 -292
- package/.claude/commands/github/multi-repo-swarm.md +0 -519
- package/.claude/commands/github/pr-manager.md +0 -170
- package/.claude/commands/github/project-board-sync.md +0 -471
- package/.claude/commands/github/release-manager.md +0 -338
- package/.claude/commands/github/release-swarm.md +0 -544
- package/.claude/commands/github/repo-architect.md +0 -367
- package/.claude/commands/github/swarm-issue.md +0 -482
- package/.claude/commands/github/swarm-pr.md +0 -285
- package/.claude/commands/github/sync-coordinator.md +0 -301
- package/.claude/commands/github/workflow-automation.md +0 -442
- package/.claude/commands/hive-mind/hive-mind-resume.md +0 -8
- package/.claude/commands/hive-mind/hive-mind-sessions.md +0 -8
- package/.claude/commands/hive-mind/hive-mind-stop.md +0 -8
- package/.claude/commands/hive-mind/hive-mind-wizard.md +0 -8
- package/.claude/commands/hive-mind/hive-mind.md +0 -27
- package/.claude/commands/hooks/overview.md +0 -132
- package/.claude/commands/memory/usage.md +0 -46
- package/.claude/commands/pair/commands.md +0 -546
- package/.claude/commands/pair/config.md +0 -510
- package/.claude/commands/pair/examples.md +0 -512
- package/.claude/commands/pair/modes.md +0 -348
- package/.claude/commands/pair/session.md +0 -407
- package/.claude/commands/pair/start.md +0 -209
- package/.claude/commands/sparc/orchestrator.md +0 -132
- package/.claude/commands/sparc/sparc-modes.md +0 -174
- package/.claude/commands/stream-chain/pipeline.md +0 -121
- package/.claude/commands/stream-chain/run.md +0 -70
- package/.claude/commands/swarm/analysis.md +0 -95
- package/.claude/commands/swarm/development.md +0 -96
- package/.claude/commands/swarm/examples.md +0 -168
- package/.claude/commands/swarm/maintenance.md +0 -102
- package/.claude/commands/swarm/optimization.md +0 -117
- package/.claude/commands/swarm/research.md +0 -136
- package/.claude/commands/swarm/swarm-analysis.md +0 -8
- package/.claude/commands/swarm/swarm-spawn.md +0 -19
- package/.claude/commands/swarm/swarm-strategies.md +0 -8
- package/.claude/commands/swarm/testing.md +0 -131
- package/.claude/commands/truth/start.md +0 -143
- package/.claude/commands/verify/check.md +0 -50
- package/.claude/commands/verify/start.md +0 -128
- /package/{.claude/agents → docs}/reasoning/README.md +0 -0
- /package/{.claude/agents → docs}/reasoning/example-reasoning-agent-template.md +0 -0
|
@@ -0,0 +1,1251 @@
|
|
|
1
|
+
# 🎓 Claude Flow Skills: Complete Introduction Tutorial
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
We’re shifting how Claude Flow evolves from here forward. This release marks the move from slash commands to a true skills-based system, our new foundation for intelligence, automation, and collaboration. Instead of memorizing /commands, you now just describe what you want. Claude reads the situation, identifies the right skills, and activates them automatically.
|
|
6
|
+
|
|
7
|
+
The new Skill Builder is at the heart of this system. It lets you create modular instruction sets, small, well-defined units of capability that can be shared, versioned, and composed. Each skill is a self-contained block of context with metadata, description, and progressive disclosure. Claude scans these on startup, loads what’s relevant, and builds the workflow around your intent.
|
|
8
|
+
|
|
9
|
+
We've included 25 practical skills across development, teamwork, and reasoning. SPARC Methodology guides structured feature building through five phases with TDD. Pair Programming enables driver/navigator modes with real-time quality checks. AgentDB provides persistent memory with 150x faster pattern retrieval and vector search. Swarm Orchestration coordinates parallel multi-agent work across mesh, hierarchical, and ring topologies. GitHub skills automate code reviews, releases, and multi-repo synchronization. Others handle performance optimization, truth scoring, and adaptive learning patterns.
|
|
10
|
+
|
|
11
|
+
There are GitHub skills that manage reviews, automate releases, and synchronize projects. Others focus on performance, quality verification, and adaptive learning through ReasoningBank.
|
|
12
|
+
|
|
13
|
+
In practice, this means no memorization. Skills scan your request, match intent to capability, and load only what's needed. Say "Build a login feature with tests" and SPARC activates. Say "Find similar code" and vector search loads. Each skill brings specialized context on-demand, keeping your workflow clean and focused.
|
|
14
|
+
|
|
15
|
+
This is the direction forward: modular, intelligent, and adaptive. Skills turn Claude Flow from a set of commands into a living system that learns how you work and grows with you.
|
|
16
|
+
|
|
17
|
+
## 🔄 What Changed: From Slash Commands to Skills
|
|
18
|
+
|
|
19
|
+
I'm transitioning claude-flow from slash commands to Claude Code's native skills system. Here's why this matters and what I've learned.
|
|
20
|
+
|
|
21
|
+
### The Old Way: Slash Commands
|
|
22
|
+
|
|
23
|
+
Previously, claude-flow used slash commands stored in `.claude/commands/`:
|
|
24
|
+
```bash
|
|
25
|
+
# Old approach
|
|
26
|
+
/.claude/commands/sparc-tdd.md
|
|
27
|
+
/.claude/commands/github-review.md
|
|
28
|
+
/.claude/commands/swarm-init.md
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
When you typed `/sparc-tdd`, Claude would load that markdown file as a prompt and execute it. This worked, but had limitations:
|
|
32
|
+
|
|
33
|
+
**Issues I Found:**
|
|
34
|
+
- Commands loaded every time, even when not needed (context pollution)
|
|
35
|
+
- No metadata for discovery - Claude couldn't tell when a command was relevant
|
|
36
|
+
- Flat structure - all commands mixed together
|
|
37
|
+
- Manual invocation required - no automatic activation
|
|
38
|
+
- Limited composability - commands didn't work well together
|
|
39
|
+
|
|
40
|
+
### The New Way: Skills System
|
|
41
|
+
|
|
42
|
+
Anthropic released the skills API in October 2025, and I immediately saw the potential. Skills solve the command problems elegantly:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# New approach
|
|
46
|
+
/.claude/skills/sparc-methodology/SKILL.md
|
|
47
|
+
/.claude/skills/github-code-review/SKILL.md
|
|
48
|
+
/.claude/skills/swarm-orchestration/SKILL.md
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Each skill has YAML frontmatter with metadata:
|
|
52
|
+
```yaml
|
|
53
|
+
---
|
|
54
|
+
name: sparc-methodology
|
|
55
|
+
description: SPARC development methodology for systematic feature building
|
|
56
|
+
tags: [development, tdd, methodology]
|
|
57
|
+
category: development
|
|
58
|
+
---
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**Why This Is Better (In My Opinion):**
|
|
62
|
+
|
|
63
|
+
1. **Automatic Discovery**: Claude scans skills at startup, reads the metadata, and only loads full content when relevant. A task about "building a feature with tests" automatically triggers SPARC methodology - no slash command needed.
|
|
64
|
+
|
|
65
|
+
2. **Progressive Disclosure**: Skills use a tiered structure (overview → details → advanced). Claude gets just enough information to decide if it's useful, then loads more if needed. This keeps context clean.
|
|
66
|
+
|
|
67
|
+
3. **Composability**: Skills can reference other skills. The GitHub review skill can use swarm orchestration internally without you knowing or caring. Commands couldn't do this well.
|
|
68
|
+
|
|
69
|
+
4. **Organization**: Skills live in categorized directories (development/, github/, memory/). Much easier to maintain than a flat commands folder.
|
|
70
|
+
|
|
71
|
+
5. **Standards-Based**: Anthropic designed this. It works across Claude.ai, Claude Code CLI, and any other Claude implementation. Commands were claude-flow specific.
|
|
72
|
+
|
|
73
|
+
### Migration Strategy
|
|
74
|
+
|
|
75
|
+
I'm not removing commands immediately - that would break existing workflows. Instead:
|
|
76
|
+
|
|
77
|
+
- **Phase 1** (Current): Both systems work. Skills are preferred, commands still function.
|
|
78
|
+
- **Phase 2** (Next release): Deprecation warnings when using old commands.
|
|
79
|
+
- **Phase 3** (Future): Commands removed, full skills migration.
|
|
80
|
+
|
|
81
|
+
If you're using commands like `/sparc tdd`, they still work. But I recommend switching to skills:
|
|
82
|
+
```bash
|
|
83
|
+
# Instead of this:
|
|
84
|
+
/sparc tdd "feature name"
|
|
85
|
+
|
|
86
|
+
# Do this:
|
|
87
|
+
npx claude-flow@alpha init --force # Install skills
|
|
88
|
+
# Then just ask: "Build a user authentication feature with TDD"
|
|
89
|
+
# The SPARC skill activates automatically
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Honest Assessment
|
|
93
|
+
|
|
94
|
+
**What Skills Do Better:**
|
|
95
|
+
- Context efficiency (40% less token usage in my testing)
|
|
96
|
+
- Automatic activation based on task matching
|
|
97
|
+
- Better organization and maintainability
|
|
98
|
+
- Cross-platform compatibility
|
|
99
|
+
|
|
100
|
+
**What Commands Did Better:**
|
|
101
|
+
- Explicit invocation - you knew exactly what ran
|
|
102
|
+
- Simpler mental model - type `/command`, it runs
|
|
103
|
+
- No "magic" - predictable behavior
|
|
104
|
+
|
|
105
|
+
**The Trade-off:**
|
|
106
|
+
Skills are more sophisticated but less explicit. Sometimes I miss the directness of `/command` - you knew what you were getting. With skills, Claude decides when to activate them. Usually it gets it right, but occasionally it misses or over-activates.
|
|
107
|
+
|
|
108
|
+
That said, the context savings and automatic discovery outweigh the loss of explicitness. And you can still manually invoke skills with `/skill-name` if you want that control.
|
|
109
|
+
|
|
110
|
+
### Bottom Line
|
|
111
|
+
|
|
112
|
+
Skills are the future of claude-flow. They align with Anthropic's vision, work better with Claude Code, and solve real problems I had with commands. The migration takes effort, but it's worth it.
|
|
113
|
+
|
|
114
|
+
If you're starting fresh, use skills. If you're on commands, plan to migrate. I'll support both for now, but my development focus is on skills.
|
|
115
|
+
|
|
116
|
+
## 🚀 What's New: AgentDB Integration
|
|
117
|
+
|
|
118
|
+
This release adds 4 new AgentDB skills that bring production-grade vector database capabilities to claude-flow:
|
|
119
|
+
|
|
120
|
+
**Performance Improvements:**
|
|
121
|
+
- **150x faster** pattern retrieval (<100µs vs 15ms)
|
|
122
|
+
- **500x faster** batch operations (2ms vs 1s for 100 vectors)
|
|
123
|
+
- **12,500x faster** large-scale queries (8ms vs 100s at 1M vectors)
|
|
124
|
+
- **4-32x memory reduction** with quantization (3GB → 96MB with binary quantization)
|
|
125
|
+
|
|
126
|
+
**New Skills:**
|
|
127
|
+
|
|
128
|
+
1. **`reasoningbank-agentdb`** - ReasoningBank with AgentDB backend
|
|
129
|
+
- 150x-12,500x performance improvement over legacy ReasoningBank
|
|
130
|
+
- Trajectory tracking and verdict judgment
|
|
131
|
+
- 100% backward compatible migration path
|
|
132
|
+
|
|
133
|
+
2. **`agentdb-learning`** - 9 Reinforcement Learning Algorithms
|
|
134
|
+
- Decision Transformer, Q-Learning, SARSA, Actor-Critic, Curiosity-Driven
|
|
135
|
+
- 10-100x faster training with WASM acceleration
|
|
136
|
+
- Create self-learning agents from historical data
|
|
137
|
+
|
|
138
|
+
3. **`agentdb-optimization`** - Performance Tuning
|
|
139
|
+
- Binary quantization (32x compression, ~2-5% accuracy loss)
|
|
140
|
+
- Scalar quantization (4x compression, ~1-2% accuracy loss)
|
|
141
|
+
- HNSW indexing for sub-100µs searches
|
|
142
|
+
- Production deployment optimization
|
|
143
|
+
|
|
144
|
+
4. **`agentdb-advanced`** - Enterprise Features
|
|
145
|
+
- QUIC synchronization (<1ms cross-node latency)
|
|
146
|
+
- Multi-database management with isolated namespaces
|
|
147
|
+
- Custom distance metrics (cosine, Euclidean, Hamming)
|
|
148
|
+
- Hybrid search (vector + metadata filtering)
|
|
149
|
+
|
|
150
|
+
**Why AgentDB?**
|
|
151
|
+
|
|
152
|
+
The original vector search and memory systems used ChromaDB and legacy ReasoningBank. While functional, they had performance limitations at scale. AgentDB provides:
|
|
153
|
+
|
|
154
|
+
- **Native TypeScript**: No Python dependency, simpler deployment
|
|
155
|
+
- **WASM Acceleration**: 10-100x faster neural operations
|
|
156
|
+
- **Better Compression**: 4-32x memory reduction
|
|
157
|
+
- **Sub-millisecond Latency**: <1ms pattern access
|
|
158
|
+
- **Distributed Sync**: QUIC protocol for multi-node coordination
|
|
159
|
+
|
|
160
|
+
These skills work alongside the existing `agentdb-memory-patterns` and `agentdb-vector-search` skills, giving you a complete vector database toolkit.
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## 📚 Complete Skills Catalog (25 Skills)
|
|
165
|
+
|
|
166
|
+
Claude Flow includes 25 specialized skills that activate automatically based on your task description. Just describe what you want in natural language - no commands needed.
|
|
167
|
+
|
|
168
|
+
### Development & Methodology (3 skills)
|
|
169
|
+
|
|
170
|
+
1. **`skill-builder`** - Create custom Claude Code skills with YAML frontmatter and progressive disclosure
|
|
171
|
+
2. **`sparc-methodology`** - SPARC development methodology (Specification, Pseudocode, Architecture, Refinement, Completion) with TDD
|
|
172
|
+
3. **`pair-programming`** - Driver/navigator pair programming with real-time verification and quality monitoring
|
|
173
|
+
|
|
174
|
+
### Intelligence & Memory (6 skills)
|
|
175
|
+
|
|
176
|
+
4. **`agentdb-memory-patterns`** - Persistent agent memory with session storage and long-term context management
|
|
177
|
+
5. **`agentdb-vector-search`** - Semantic vector search for intelligent document retrieval and similarity matching
|
|
178
|
+
6. **`reasoningbank-agentdb`** - ReasoningBank with 150x-12,500x faster AgentDB backend for experience learning
|
|
179
|
+
7. **`agentdb-learning`** - 9 reinforcement learning algorithms (Decision Transformer, Q-Learning, SARSA, Actor-Critic, etc.)
|
|
180
|
+
8. **`agentdb-optimization`** - Performance optimization with quantization (4-32x compression) and HNSW indexing
|
|
181
|
+
9. **`agentdb-advanced`** - QUIC synchronization, multi-database management, custom metrics, hybrid search
|
|
182
|
+
|
|
183
|
+
### Swarm Coordination (3 skills)
|
|
184
|
+
|
|
185
|
+
10. **`swarm-orchestration`** - Multi-agent swarm coordination with parallel task execution and dynamic topology
|
|
186
|
+
11. **`swarm-advanced`** - Advanced swarm patterns for research, development, testing, and complex workflows
|
|
187
|
+
12. **`hive-mind-advanced`** - Queen-led hierarchical coordination with consensus mechanisms and persistent memory
|
|
188
|
+
|
|
189
|
+
### GitHub Integration (5 skills)
|
|
190
|
+
|
|
191
|
+
13. **`github-code-review`** - AI-powered comprehensive code reviews with multi-agent analysis
|
|
192
|
+
14. **`github-workflow-automation`** - Intelligent CI/CD pipeline creation and optimization with GitHub Actions
|
|
193
|
+
15. **`github-project-management`** - Issue tracking, project board automation, and sprint planning
|
|
194
|
+
16. **`github-release-management`** - Release orchestration with versioning, testing, deployment, and rollback
|
|
195
|
+
17. **`github-multi-repo`** - Cross-repository synchronization and multi-package integration
|
|
196
|
+
|
|
197
|
+
### Automation & Quality (4 skills)
|
|
198
|
+
|
|
199
|
+
18. **`hooks-automation`** - Pre/post task hooks with automated formatting, learning, and session management
|
|
200
|
+
19. **`verification-quality`** - Truth scoring and automatic rollback with 0.95 accuracy threshold
|
|
201
|
+
20. **`performance-analysis`** - Bottleneck detection and optimization recommendations for workflows
|
|
202
|
+
21. **`stream-chain`** - Stream-JSON chaining for multi-agent pipelines and data transformation
|
|
203
|
+
|
|
204
|
+
### Flow Nexus Platform (3 skills)
|
|
205
|
+
|
|
206
|
+
22. **`flow-nexus-platform`** - Cloud platform management (authentication, sandboxes, apps, payments)
|
|
207
|
+
23. **`flow-nexus-swarm`** - Cloud-based AI swarm deployment with event-driven workflow automation
|
|
208
|
+
24. **`flow-nexus-neural`** - Distributed neural network training in E2B sandboxes with cloud compute
|
|
209
|
+
|
|
210
|
+
### Reasoning & Learning (1 skill)
|
|
211
|
+
|
|
212
|
+
25. **`reasoningbank-intelligence`** - Adaptive learning with pattern recognition and strategy optimization
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
## 📦 Getting Started: Installation & Setup
|
|
217
|
+
|
|
218
|
+
### What Does `npx claude-flow@alpha init --force` Do?
|
|
219
|
+
|
|
220
|
+
This command initializes your project with Claude Flow's complete skills system:
|
|
221
|
+
|
|
222
|
+
**What It Does:**
|
|
223
|
+
1. **Creates `.claude/skills/` directory** - Where all 25 skills are installed
|
|
224
|
+
2. **Copies skill modules** - Installs pre-built skills for development, GitHub, memory, and more
|
|
225
|
+
3. **Sets up configuration** - Creates `claude-flow.json` with default settings
|
|
226
|
+
4. **Initializes hooks** - Installs automation hooks for pre/post task coordination
|
|
227
|
+
5. **Creates statusline** - Adds terminal statusline showing active swarms and tasks
|
|
228
|
+
6. **Force overwrites** - The `--force` flag replaces existing files (useful for updates)
|
|
229
|
+
|
|
230
|
+
**When to Use It:**
|
|
231
|
+
- Starting a new project with Claude Flow
|
|
232
|
+
- Adding skills to an existing project
|
|
233
|
+
- Updating to the latest skills (with `--force`)
|
|
234
|
+
- Resetting corrupted skill configurations
|
|
235
|
+
|
|
236
|
+
**Usage:**
|
|
237
|
+
```bash
|
|
238
|
+
# Initialize in current project
|
|
239
|
+
npx claude-flow@alpha init --force
|
|
240
|
+
|
|
241
|
+
# What you'll see:
|
|
242
|
+
# ✓ Created .claude/skills/ directory
|
|
243
|
+
# ✓ Installed 25 skills
|
|
244
|
+
# ✓ Configured hooks automation
|
|
245
|
+
# ✓ Setup statusline integration
|
|
246
|
+
# ✓ Ready to use skills!
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
**After Installation:**
|
|
250
|
+
- Skills are automatically discovered by Claude Code at startup
|
|
251
|
+
- Skills activate automatically when your task description matches their purpose
|
|
252
|
+
- **Use natural language** to invoke skills - just describe what you want to do
|
|
253
|
+
- Example: Say "use vector search to find similar code" instead of typing `/agentdb-vector-search`
|
|
254
|
+
- No configuration needed - it just works!
|
|
255
|
+
|
|
256
|
+
---
|
|
257
|
+
|
|
258
|
+
## 🎨 Development Skills
|
|
259
|
+
|
|
260
|
+
### 1. `skill-builder` - Create Your Own Skills
|
|
261
|
+
|
|
262
|
+
**What It Does:**
|
|
263
|
+
Helps you create custom Claude Code skills with proper structure, YAML frontmatter, and progressive disclosure.
|
|
264
|
+
|
|
265
|
+
**When to Use:**
|
|
266
|
+
- Building domain-specific knowledge modules
|
|
267
|
+
- Creating team-specific workflows
|
|
268
|
+
- Documenting project patterns for AI to follow
|
|
269
|
+
- Standardizing development approaches
|
|
270
|
+
|
|
271
|
+
**Plain Language:**
|
|
272
|
+
Think of it as a "skill factory" - it teaches Claude how to build new skills that other Claude instances can discover and use.
|
|
273
|
+
|
|
274
|
+
**Usage:**
|
|
275
|
+
```bash
|
|
276
|
+
# Natural language invocation - skill activates automatically
|
|
277
|
+
"Create a new skill for React component development following our team's patterns"
|
|
278
|
+
"Build a custom skill for API endpoint testing with our authentication flow"
|
|
279
|
+
"Help me make a skill that knows our database schema conventions"
|
|
280
|
+
|
|
281
|
+
# The skill-builder skill activates when you mention creating/building skills
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
**What You Get:**
|
|
285
|
+
- Properly formatted `SKILL.md` file
|
|
286
|
+
- YAML frontmatter with metadata
|
|
287
|
+
- Progressive disclosure sections
|
|
288
|
+
- Auto-organized in `.claude/skills/`
|
|
289
|
+
|
|
290
|
+
---
|
|
291
|
+
|
|
292
|
+
### 2. `sparc-methodology` - Systematic Development
|
|
293
|
+
|
|
294
|
+
**What It Does:**
|
|
295
|
+
Implements SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) - a five-phase development methodology for building features systematically.
|
|
296
|
+
|
|
297
|
+
**When to Use:**
|
|
298
|
+
- Building complex new features
|
|
299
|
+
- Refactoring large systems
|
|
300
|
+
- Planning before coding
|
|
301
|
+
- Working with distributed teams
|
|
302
|
+
|
|
303
|
+
**Plain Language:**
|
|
304
|
+
SPARC breaks development into five steps: (1) Define what you need, (2) Write algorithm logic, (3) Design the system, (4) Build with tests, (5) Integrate everything. It prevents "code first, think later" problems.
|
|
305
|
+
|
|
306
|
+
**Usage:**
|
|
307
|
+
```bash
|
|
308
|
+
# Full SPARC workflow
|
|
309
|
+
npx claude-flow sparc tdd "user authentication system"
|
|
310
|
+
|
|
311
|
+
# Individual phases
|
|
312
|
+
npx claude-flow sparc run spec-pseudocode "shopping cart feature"
|
|
313
|
+
npx claude-flow sparc run architect "payment processing"
|
|
314
|
+
|
|
315
|
+
# Check available modes
|
|
316
|
+
npx claude-flow sparc modes
|
|
317
|
+
```
|
|
318
|
+
|
|
319
|
+
**What You Get:**
|
|
320
|
+
- Specification documents
|
|
321
|
+
- Pseudocode algorithms
|
|
322
|
+
- Architecture diagrams (as text)
|
|
323
|
+
- Test-driven implementation
|
|
324
|
+
- Integration plan
|
|
325
|
+
|
|
326
|
+
---
|
|
327
|
+
|
|
328
|
+
### 3. `pair-programming` - AI Pair Programming
|
|
329
|
+
|
|
330
|
+
**What It Does:**
|
|
331
|
+
Provides driver/navigator pair programming modes with real-time verification, quality monitoring, and automatic role switching.
|
|
332
|
+
|
|
333
|
+
**When to Use:**
|
|
334
|
+
- Learning new technologies
|
|
335
|
+
- Debugging complex issues
|
|
336
|
+
- Code reviews while coding
|
|
337
|
+
- Test-driven development sessions
|
|
338
|
+
|
|
339
|
+
**Plain Language:**
|
|
340
|
+
Like having an experienced developer sitting next to you. Claude can "drive" (write code while you watch) or "navigate" (guide you while you code). Roles can switch automatically, and there's continuous quality checking.
|
|
341
|
+
|
|
342
|
+
**Usage:**
|
|
343
|
+
```bash
|
|
344
|
+
# Natural language invocation - skill activates automatically
|
|
345
|
+
"Let's pair program on this React component - you drive first"
|
|
346
|
+
"Switch to navigator mode and review my authentication code"
|
|
347
|
+
"I need help debugging - this function isn't working as expected"
|
|
348
|
+
|
|
349
|
+
# The skill activates when you mention pair programming or collaborative coding
|
|
350
|
+
```
|
|
351
|
+
|
|
352
|
+
**Modes Available:**
|
|
353
|
+
- **Driver Mode**: Claude writes code, you review
|
|
354
|
+
- **Navigator Mode**: You code, Claude guides
|
|
355
|
+
- **Switch Mode**: Automatic role swapping
|
|
356
|
+
- **TDD Mode**: Test-first development
|
|
357
|
+
- **Debug Mode**: Problem-solving focus
|
|
358
|
+
|
|
359
|
+
---
|
|
360
|
+
|
|
361
|
+
## 🧠 Intelligence & Memory Skills
|
|
362
|
+
|
|
363
|
+
### 4. `agentdb-memory-patterns` - Persistent Agent Memory
|
|
364
|
+
|
|
365
|
+
**What It Does:**
|
|
366
|
+
Implements persistent memory patterns for AI agents - session memory, long-term storage, pattern learning, and context management.
|
|
367
|
+
|
|
368
|
+
**When to Use:**
|
|
369
|
+
- Building chatbots that remember conversations
|
|
370
|
+
- Creating agents that learn from experience
|
|
371
|
+
- Storing project context across sessions
|
|
372
|
+
- Sharing knowledge between agents
|
|
373
|
+
|
|
374
|
+
**Plain Language:**
|
|
375
|
+
Gives Claude a "long-term memory" that survives beyond single conversations. Like taking notes that Claude can reference later, even in different sessions.
|
|
376
|
+
|
|
377
|
+
**Usage:**
|
|
378
|
+
```bash
|
|
379
|
+
# Natural language invocation - skill activates automatically
|
|
380
|
+
"Store our API design decisions in long-term memory"
|
|
381
|
+
"Remember this user's preferences for future sessions"
|
|
382
|
+
"Create a memory pattern for tracking bug fixes"
|
|
383
|
+
|
|
384
|
+
# The skill activates when you mention memory, persistence, or storing context
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
**Memory Types:**
|
|
388
|
+
- **Session Memory**: Temporary, conversation-scoped
|
|
389
|
+
- **Long-term Storage**: Permanent, cross-session
|
|
390
|
+
- **Pattern Learning**: Learns from past interactions
|
|
391
|
+
- **Context Management**: Maintains relevant context
|
|
392
|
+
|
|
393
|
+
---
|
|
394
|
+
|
|
395
|
+
### 5. `agentdb-vector-search` - Semantic Search
|
|
396
|
+
|
|
397
|
+
**What It Does:**
|
|
398
|
+
Implements semantic vector search for intelligent document retrieval, similarity matching, and context-aware querying.
|
|
399
|
+
|
|
400
|
+
**When to Use:**
|
|
401
|
+
- Building RAG (Retrieval Augmented Generation) systems
|
|
402
|
+
- Searching code by meaning, not just keywords
|
|
403
|
+
- Finding similar issues/bugs
|
|
404
|
+
- Intelligent documentation search
|
|
405
|
+
|
|
406
|
+
**Plain Language:**
|
|
407
|
+
Instead of searching for exact word matches, this searches by *meaning*. Ask "how do we handle errors?" and it finds relevant code even if it doesn't contain those exact words.
|
|
408
|
+
|
|
409
|
+
**Usage:**
|
|
410
|
+
```bash
|
|
411
|
+
# Natural language invocation - skill activates automatically
|
|
412
|
+
"Find all code that handles user authentication"
|
|
413
|
+
"Search for functions similar to calculateDiscount()"
|
|
414
|
+
"Use vector search to retrieve documentation about error handling patterns"
|
|
415
|
+
|
|
416
|
+
# The skill activates when you mention semantic search, finding similar code, or vector search
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
**What You Get:**
|
|
420
|
+
- Semantic similarity matching
|
|
421
|
+
- Context-aware results
|
|
422
|
+
- Ranked by relevance
|
|
423
|
+
- Works with code, docs, and data
|
|
424
|
+
|
|
425
|
+
---
|
|
426
|
+
|
|
427
|
+
### 6. `reasoningbank-agentdb` - ReasoningBank Integration
|
|
428
|
+
|
|
429
|
+
**What It Does:**
|
|
430
|
+
Implements ReasoningBank adaptive learning with AgentDB's high-performance backend (150x-12,500x faster). Enables agents to learn from experiences, judge outcomes, distill memories, and improve decision-making over time.
|
|
431
|
+
|
|
432
|
+
**When to Use:**
|
|
433
|
+
- Building self-learning agents that improve from experience
|
|
434
|
+
- Implementing experience replay and trajectory tracking
|
|
435
|
+
- Optimizing decision-making through pattern recognition
|
|
436
|
+
- Migrating from legacy ReasoningBank systems
|
|
437
|
+
|
|
438
|
+
**Plain Language:**
|
|
439
|
+
ReasoningBank teaches agents to learn from their experiences. Every time an agent completes a task, it stores what worked, what didn't, and why. Next time it faces a similar problem, it recalls successful patterns and avoids failures. AgentDB makes this 150x faster than before.
|
|
440
|
+
|
|
441
|
+
**Usage:**
|
|
442
|
+
```bash
|
|
443
|
+
# Natural language invocation - skill activates automatically
|
|
444
|
+
"Setup ReasoningBank with AgentDB for this project"
|
|
445
|
+
"Remember this bug fix approach for future similar issues"
|
|
446
|
+
"Migrate existing ReasoningBank data to AgentDB"
|
|
447
|
+
|
|
448
|
+
# The skill activates when you mention ReasoningBank, learning from experiences, or pattern tracking
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
**Performance Benefits:**
|
|
452
|
+
- **150x faster pattern retrieval** (100µs vs 15ms)
|
|
453
|
+
- **500x faster batch operations** (2ms vs 1s for 100 patterns)
|
|
454
|
+
- **12,500x faster large-scale queries** (8ms vs 100s at 1M patterns)
|
|
455
|
+
- **<1ms memory access** for real-time decision making
|
|
456
|
+
|
|
457
|
+
**Key Features:**
|
|
458
|
+
- **Trajectory Tracking**: Records agent action sequences and outcomes
|
|
459
|
+
- **Verdict Judgment**: Evaluates success/failure of approaches
|
|
460
|
+
- **Memory Distillation**: Compresses experiences into learned patterns
|
|
461
|
+
- **100% Backward Compatible**: Drop-in replacement for legacy ReasoningBank
|
|
462
|
+
|
|
463
|
+
---
|
|
464
|
+
|
|
465
|
+
### 7. `agentdb-learning` - Learning Plugins & Algorithms
|
|
466
|
+
|
|
467
|
+
**What It Does:**
|
|
468
|
+
Provides 9 reinforcement learning algorithms via AgentDB's plugin system. Create, train, and deploy learning plugins for autonomous agents that improve through experience - includes Decision Transformer, Q-Learning, SARSA, Actor-Critic, and more.
|
|
469
|
+
|
|
470
|
+
**When to Use:**
|
|
471
|
+
- Building self-learning autonomous agents
|
|
472
|
+
- Implementing reinforcement learning systems
|
|
473
|
+
- Training agents on custom tasks
|
|
474
|
+
- Optimizing agent behavior through experience
|
|
475
|
+
|
|
476
|
+
**Plain Language:**
|
|
477
|
+
Instead of programming every behavior, you train agents to learn optimal strategies through trial and error. Like teaching a dog tricks - reward good behavior, correct mistakes, and the agent learns what works best.
|
|
478
|
+
|
|
479
|
+
**Usage:**
|
|
480
|
+
```bash
|
|
481
|
+
# Natural language invocation - skill activates automatically
|
|
482
|
+
"Create a Decision Transformer plugin for code optimization tasks"
|
|
483
|
+
"Train a Q-Learning agent on our deployment success/failure data"
|
|
484
|
+
"Show me all available learning plugin templates"
|
|
485
|
+
|
|
486
|
+
# The skill activates when you mention reinforcement learning, training agents, or learning algorithms
|
|
487
|
+
```
|
|
488
|
+
|
|
489
|
+
**Available Algorithms:**
|
|
490
|
+
|
|
491
|
+
1. **Decision Transformer** (Recommended)
|
|
492
|
+
- Sequence modeling approach to RL
|
|
493
|
+
- Learns from offline data (no environment needed)
|
|
494
|
+
- Best for: Code generation, task planning, decision sequences
|
|
495
|
+
|
|
496
|
+
2. **Q-Learning**
|
|
497
|
+
- Value-based learning
|
|
498
|
+
- Learns optimal action values
|
|
499
|
+
- Best for: Discrete actions, simple environments
|
|
500
|
+
|
|
501
|
+
3. **SARSA**
|
|
502
|
+
- On-policy temporal difference learning
|
|
503
|
+
- More conservative than Q-Learning
|
|
504
|
+
- Best for: Safety-critical applications
|
|
505
|
+
|
|
506
|
+
4. **Actor-Critic**
|
|
507
|
+
- Policy gradient with value baseline
|
|
508
|
+
- Continuous action spaces
|
|
509
|
+
- Best for: Complex control tasks, optimization
|
|
510
|
+
|
|
511
|
+
5. **Curiosity-Driven**
|
|
512
|
+
- Exploration-based learning
|
|
513
|
+
- Intrinsic motivation
|
|
514
|
+
- Best for: Sparse reward environments, discovery
|
|
515
|
+
|
|
516
|
+
**Training Performance:**
|
|
517
|
+
- 10-100x faster training with WASM acceleration
|
|
518
|
+
- Supports batch learning from historical data
|
|
519
|
+
- Real-time online learning capability
|
|
520
|
+
|
|
521
|
+
---
|
|
522
|
+
|
|
523
|
+
### 8. `agentdb-optimization` - Performance Optimization
|
|
524
|
+
|
|
525
|
+
**What It Does:**
|
|
526
|
+
Comprehensive performance optimization for AgentDB vector databases - quantization (4-32x memory reduction), HNSW indexing (150x faster search), caching strategies, and batch operations.
|
|
527
|
+
|
|
528
|
+
**When to Use:**
|
|
529
|
+
- Optimizing memory usage in vector databases
|
|
530
|
+
- Improving search speed for large datasets
|
|
531
|
+
- Scaling to millions of vectors
|
|
532
|
+
- Deploying to memory-constrained environments (mobile, edge)
|
|
533
|
+
|
|
534
|
+
**Plain Language:**
|
|
535
|
+
Makes vector databases smaller and faster. Binary quantization compresses vectors by 32x (3GB becomes 96MB) with minimal accuracy loss. HNSW indexing makes searches 150x faster. Like compressing a movie file - it takes less space and loads faster, but you barely notice the quality difference.
|
|
536
|
+
|
|
537
|
+
**Usage:**
|
|
538
|
+
```bash
|
|
539
|
+
# Natural language invocation - skill activates automatically
|
|
540
|
+
"Benchmark my AgentDB performance"
|
|
541
|
+
"Optimize this database with binary quantization for production"
|
|
542
|
+
"Analyze memory usage and suggest optimizations"
|
|
543
|
+
|
|
544
|
+
# The skill activates when you mention optimization, performance, quantization, or benchmarking
|
|
545
|
+
```
|
|
546
|
+
|
|
547
|
+
**Optimization Techniques:**
|
|
548
|
+
|
|
549
|
+
**1. Binary Quantization (32x Compression)**
|
|
550
|
+
- Converts float32 vectors to binary
|
|
551
|
+
- 768-dim vector: 3072 bytes → 96 bytes
|
|
552
|
+
- 1M vectors: 3GB → 96MB
|
|
553
|
+
- Trade-off: ~2-5% accuracy loss
|
|
554
|
+
- Use for: Mobile apps, large-scale deployments
|
|
555
|
+
|
|
556
|
+
**2. Scalar Quantization (4x Compression)**
|
|
557
|
+
- Converts float32 to int8
|
|
558
|
+
- Balanced compression vs accuracy
|
|
559
|
+
- 768-dim vector: 3072 bytes → 768 bytes
|
|
560
|
+
- Trade-off: ~1-2% accuracy loss
|
|
561
|
+
- Use for: Most production applications
|
|
562
|
+
|
|
563
|
+
**3. HNSW Indexing**
|
|
564
|
+
- Hierarchical navigable small world graphs
|
|
565
|
+
- 150x faster search
|
|
566
|
+
- Sub-100µs vector queries
|
|
567
|
+
- Use for: Real-time search, high-throughput systems
|
|
568
|
+
|
|
569
|
+
**4. Caching Strategies**
|
|
570
|
+
- In-memory pattern cache
|
|
571
|
+
- LRU eviction policy
|
|
572
|
+
- <1ms access for frequent queries
|
|
573
|
+
- Use for: Repeated pattern matching
|
|
574
|
+
|
|
575
|
+
**Performance Numbers:**
|
|
576
|
+
- Pattern Search: **<100µs** (150x faster)
|
|
577
|
+
- Batch Insert: **2ms for 100 vectors** (500x faster)
|
|
578
|
+
- Large-scale Query: **8ms at 1M vectors** (12,500x faster)
|
|
579
|
+
|
|
580
|
+
---
|
|
581
|
+
|
|
582
|
+
### 9. `agentdb-advanced` - Advanced Features
|
|
583
|
+
|
|
584
|
+
**What It Does:**
|
|
585
|
+
Master advanced AgentDB capabilities - QUIC synchronization (<1ms cross-node), multi-database management, custom distance metrics, hybrid search (vector + metadata), and distributed systems integration.
|
|
586
|
+
|
|
587
|
+
**When to Use:**
|
|
588
|
+
- Building distributed AI systems with multi-node coordination
|
|
589
|
+
- Implementing custom similarity metrics for specialized domains
|
|
590
|
+
- Creating hybrid search with metadata filtering
|
|
591
|
+
- Deploying cross-datacenter vector databases
|
|
592
|
+
|
|
593
|
+
**Plain Language:**
|
|
594
|
+
Advanced features for production systems. QUIC sync lets multiple databases stay synchronized with sub-millisecond latency - like having a shared brain across multiple servers. Hybrid search combines semantic similarity with filters (find similar code, but only Python files modified this month).
|
|
595
|
+
|
|
596
|
+
**Usage:**
|
|
597
|
+
```bash
|
|
598
|
+
# Natural language invocation - skill activates automatically
|
|
599
|
+
"Setup QUIC sync between 3 database nodes"
|
|
600
|
+
"Search for similar authentication code, but only in TypeScript files"
|
|
601
|
+
"Use cosine similarity for text, Euclidean for embeddings"
|
|
602
|
+
|
|
603
|
+
# The skill activates when you mention QUIC, distributed sync, hybrid search, or custom metrics
|
|
604
|
+
```
|
|
605
|
+
|
|
606
|
+
**Advanced Capabilities:**
|
|
607
|
+
|
|
608
|
+
**1. QUIC Synchronization**
|
|
609
|
+
- Sub-millisecond cross-node latency (<1ms)
|
|
610
|
+
- Automatic retry and recovery
|
|
611
|
+
- Built-in encryption (TLS 1.3)
|
|
612
|
+
- Multiplexed streams
|
|
613
|
+
- Use for: Distributed agents, multi-datacenter deployment
|
|
614
|
+
|
|
615
|
+
**2. Multi-Database Management**
|
|
616
|
+
- Manage multiple specialized databases
|
|
617
|
+
- Per-domain vector spaces
|
|
618
|
+
- Isolated namespaces
|
|
619
|
+
- Use for: Multi-tenant systems, domain separation
|
|
620
|
+
|
|
621
|
+
**3. Custom Distance Metrics**
|
|
622
|
+
- Cosine similarity (text/embeddings)
|
|
623
|
+
- Euclidean distance (spatial data)
|
|
624
|
+
- Hamming distance (binary vectors)
|
|
625
|
+
- Custom metrics via callbacks
|
|
626
|
+
- Use for: Specialized similarity requirements
|
|
627
|
+
|
|
628
|
+
**4. Hybrid Search**
|
|
629
|
+
- Combine vector similarity + metadata filters
|
|
630
|
+
- SQL-like filtering on vector results
|
|
631
|
+
- Multi-field queries
|
|
632
|
+
- Use for: Complex search requirements
|
|
633
|
+
|
|
634
|
+
**Example QUIC Deployment:**
|
|
635
|
+
```typescript
|
|
636
|
+
// Node 1 syncs with Nodes 2 & 3
|
|
637
|
+
const db1 = await createAdapter({
|
|
638
|
+
enableQUICSync: true,
|
|
639
|
+
syncPeers: ['node2:4433', 'node3:4433'],
|
|
640
|
+
});
|
|
641
|
+
|
|
642
|
+
// Pattern inserted on Node 1
|
|
643
|
+
await db1.insertPattern({ /* ... */ });
|
|
644
|
+
|
|
645
|
+
// Available on Nodes 2 & 3 within ~1ms
|
|
646
|
+
```
|
|
647
|
+
|
|
648
|
+
**Performance:**
|
|
649
|
+
- QUIC Sync: <1ms cross-node latency
|
|
650
|
+
- Hybrid Search: Maintains <100µs base vector search
|
|
651
|
+
- Custom Metrics: Negligible overhead with WASM
|
|
652
|
+
|
|
653
|
+
---
|
|
654
|
+
|
|
655
|
+
### 10. `reasoningbank-intelligence` - Adaptive Learning
|
|
656
|
+
|
|
657
|
+
**What It Does:**
|
|
658
|
+
Implements adaptive learning with ReasoningBank for pattern recognition, strategy optimization, and continuous improvement.
|
|
659
|
+
|
|
660
|
+
**When to Use:**
|
|
661
|
+
- Building self-improving agents
|
|
662
|
+
- Optimizing workflows over time
|
|
663
|
+
- Learning from past mistakes
|
|
664
|
+
- Meta-cognitive systems
|
|
665
|
+
|
|
666
|
+
**Plain Language:**
|
|
667
|
+
Claude learns from experience. If a certain approach works well, it remembers and uses it again. If something fails, it learns to avoid that pattern.
|
|
668
|
+
|
|
669
|
+
**Usage:**
|
|
670
|
+
```bash
|
|
671
|
+
# Natural language invocation - skill activates automatically
|
|
672
|
+
"Learn from this successful deployment and optimize future ones"
|
|
673
|
+
"Analyze our testing patterns and suggest improvements"
|
|
674
|
+
"Remember this bug fix strategy for similar issues"
|
|
675
|
+
|
|
676
|
+
# The skill activates when you mention adaptive learning, pattern recognition, or strategy optimization
|
|
677
|
+
```
|
|
678
|
+
|
|
679
|
+
**Capabilities:**
|
|
680
|
+
- Pattern recognition
|
|
681
|
+
- Strategy optimization
|
|
682
|
+
- Continuous improvement
|
|
683
|
+
- Learning from feedback
|
|
684
|
+
|
|
685
|
+
---
|
|
686
|
+
|
|
687
|
+
## 🐝 Coordination Skills
|
|
688
|
+
|
|
689
|
+
### 7. `swarm-orchestration` - Multi-Agent Coordination
|
|
690
|
+
|
|
691
|
+
**What It Does:**
|
|
692
|
+
Orchestrates multi-agent swarms with agentic-flow for parallel task execution, dynamic topology, and intelligent coordination.
|
|
693
|
+
|
|
694
|
+
**When to Use:**
|
|
695
|
+
- Complex projects needing multiple specialists
|
|
696
|
+
- Parallel development tasks
|
|
697
|
+
- Distributed problem-solving
|
|
698
|
+
- Scaling beyond single agent limits
|
|
699
|
+
|
|
700
|
+
**Plain Language:**
|
|
701
|
+
Instead of one Claude doing everything, this spawns multiple specialized Claudes working together. One might research while another codes, another tests - all in parallel.
|
|
702
|
+
|
|
703
|
+
**Usage:**
|
|
704
|
+
```bash
|
|
705
|
+
# Natural language invocation - skill activates automatically
|
|
706
|
+
"Create a swarm to build a REST API - researcher, coder, tester, reviewer"
|
|
707
|
+
"Orchestrate parallel agents for frontend, backend, and database work"
|
|
708
|
+
"Spawn a swarm to analyze this codebase from multiple angles"
|
|
709
|
+
|
|
710
|
+
# The skill activates when you mention swarms, multi-agent coordination, or parallel agents
|
|
711
|
+
```
|
|
712
|
+
|
|
713
|
+
**Topologies:**
|
|
714
|
+
- **Mesh**: Peer-to-peer, all agents collaborate
|
|
715
|
+
- **Hierarchical**: Tree structure, delegated tasks
|
|
716
|
+
- **Ring**: Sequential processing
|
|
717
|
+
- **Star**: Central coordinator
|
|
718
|
+
|
|
719
|
+
---
|
|
720
|
+
|
|
721
|
+
### 8. `swarm-advanced` - Advanced Swarm Patterns
|
|
722
|
+
|
|
723
|
+
**What It Does:**
|
|
724
|
+
Advanced swarm patterns for research, development, testing, and complex distributed workflows.
|
|
725
|
+
|
|
726
|
+
**When to Use:**
|
|
727
|
+
- Enterprise-scale projects
|
|
728
|
+
- Research projects needing deep analysis
|
|
729
|
+
- Complex testing scenarios
|
|
730
|
+
- Multi-repo coordination
|
|
731
|
+
|
|
732
|
+
**Plain Language:**
|
|
733
|
+
Takes swarm orchestration to the next level with specialized patterns for specific workflows - research swarms dig deep into topics, development swarms handle full SDLC, testing swarms verify from multiple angles.
|
|
734
|
+
|
|
735
|
+
**Usage:**
|
|
736
|
+
```bash
|
|
737
|
+
# Natural language invocation - skill activates automatically
|
|
738
|
+
"Launch a research swarm to analyze market trends in our domain"
|
|
739
|
+
"Deploy a development swarm for microservices architecture"
|
|
740
|
+
"Create a testing swarm with unit, integration, and E2E specialists"
|
|
741
|
+
|
|
742
|
+
# The skill activates when you mention advanced swarm patterns, research swarms, or complex workflows
|
|
743
|
+
```
|
|
744
|
+
|
|
745
|
+
**Patterns:**
|
|
746
|
+
- **Research Swarm**: Multi-angle analysis
|
|
747
|
+
- **Development Swarm**: Full-stack coordination
|
|
748
|
+
- **Testing Swarm**: Comprehensive verification
|
|
749
|
+
- **Optimization Swarm**: Performance tuning
|
|
750
|
+
|
|
751
|
+
---
|
|
752
|
+
|
|
753
|
+
### 9. `hive-mind-advanced` - Collective Intelligence
|
|
754
|
+
|
|
755
|
+
**What It Does:**
|
|
756
|
+
Queen-led hierarchical multi-agent coordination with consensus mechanisms and persistent memory.
|
|
757
|
+
|
|
758
|
+
**When to Use:**
|
|
759
|
+
- Large-scale projects needing central coordination
|
|
760
|
+
- Decision-making with multiple perspectives
|
|
761
|
+
- Complex systems requiring consensus
|
|
762
|
+
- Strategic planning with tactical execution
|
|
763
|
+
|
|
764
|
+
**Plain Language:**
|
|
765
|
+
A "queen bee" agent coordinates specialized "worker" agents. The queen makes strategic decisions, workers execute tasks, and they reach consensus through voting mechanisms.
|
|
766
|
+
|
|
767
|
+
**Usage:**
|
|
768
|
+
```bash
|
|
769
|
+
# Natural language invocation - skill activates automatically
|
|
770
|
+
"Deploy a hive mind for our microservices migration project"
|
|
771
|
+
"Create a queen coordinator with worker agents for each service"
|
|
772
|
+
"Use consensus for architectural decisions"
|
|
773
|
+
|
|
774
|
+
# The skill activates when you mention hive mind, queen coordinator, or consensus-based coordination
|
|
775
|
+
```
|
|
776
|
+
|
|
777
|
+
**Structure:**
|
|
778
|
+
- **Queen**: Strategic coordinator
|
|
779
|
+
- **Workers**: Specialized executors
|
|
780
|
+
- **Scouts**: Information gatherers
|
|
781
|
+
- **Consensus**: Democratic decision-making
|
|
782
|
+
|
|
783
|
+
---
|
|
784
|
+
|
|
785
|
+
## 🐙 GitHub Integration Skills
|
|
786
|
+
|
|
787
|
+
### 10. `github-code-review` - AI Code Reviews
|
|
788
|
+
|
|
789
|
+
**What It Does:**
|
|
790
|
+
Deploy specialized AI agents for comprehensive, intelligent code reviews beyond traditional static analysis.
|
|
791
|
+
|
|
792
|
+
**When to Use:**
|
|
793
|
+
- Pull request reviews
|
|
794
|
+
- Security audits
|
|
795
|
+
- Code quality checks
|
|
796
|
+
- Best practice enforcement
|
|
797
|
+
|
|
798
|
+
**Plain Language:**
|
|
799
|
+
Multiple AI reviewers examine your code from different angles: one checks security, another performance, another readability. Like having a senior dev team review every PR.
|
|
800
|
+
|
|
801
|
+
**Usage:**
|
|
802
|
+
```bash
|
|
803
|
+
# Natural language invocation - skill activates automatically
|
|
804
|
+
"Review PR #42 in this repository"
|
|
805
|
+
"Analyze security vulnerabilities in the authentication module"
|
|
806
|
+
"Check code quality and suggest improvements"
|
|
807
|
+
|
|
808
|
+
# The skill activates when you mention PR review, code review, or security analysis
|
|
809
|
+
```
|
|
810
|
+
|
|
811
|
+
**Review Types:**
|
|
812
|
+
- **Security**: Vulnerability scanning
|
|
813
|
+
- **Performance**: Bottleneck detection
|
|
814
|
+
- **Quality**: Code smells and patterns
|
|
815
|
+
- **Best Practices**: Convention compliance
|
|
816
|
+
|
|
817
|
+
---
|
|
818
|
+
|
|
819
|
+
### 11. `github-workflow-automation` - CI/CD Intelligence
|
|
820
|
+
|
|
821
|
+
**What It Does:**
|
|
822
|
+
Creates intelligent, self-organizing CI/CD pipelines with adaptive multi-agent coordination and automated optimization.
|
|
823
|
+
|
|
824
|
+
**When to Use:**
|
|
825
|
+
- Setting up GitHub Actions
|
|
826
|
+
- Optimizing build pipelines
|
|
827
|
+
- Automating deployments
|
|
828
|
+
- Creating test workflows
|
|
829
|
+
|
|
830
|
+
**Plain Language:**
|
|
831
|
+
Builds smart CI/CD pipelines that adapt to your project. They learn which tests fail often, optimize build times, and automatically handle common deployment patterns.
|
|
832
|
+
|
|
833
|
+
**Usage:**
|
|
834
|
+
```bash
|
|
835
|
+
# Natural language invocation - skill activates automatically
|
|
836
|
+
"Create a GitHub Actions workflow for Node.js testing and deployment"
|
|
837
|
+
"Optimize our existing CI pipeline for faster builds"
|
|
838
|
+
"Setup automated releases with semantic versioning"
|
|
839
|
+
|
|
840
|
+
# The skill activates when you mention GitHub Actions, CI/CD, or workflow automation
|
|
841
|
+
```
|
|
842
|
+
|
|
843
|
+
**Features:**
|
|
844
|
+
- Auto-generated workflows
|
|
845
|
+
- Performance optimization
|
|
846
|
+
- Intelligent caching
|
|
847
|
+
- Self-healing pipelines
|
|
848
|
+
|
|
849
|
+
---
|
|
850
|
+
|
|
851
|
+
### 12. `github-project-management` - Project Coordination
|
|
852
|
+
|
|
853
|
+
**What It Does:**
|
|
854
|
+
Swarm-coordinated issue tracking, project board automation, and sprint planning.
|
|
855
|
+
|
|
856
|
+
**When to Use:**
|
|
857
|
+
- Managing GitHub Projects
|
|
858
|
+
- Sprint planning and tracking
|
|
859
|
+
- Issue triage and prioritization
|
|
860
|
+
- Team coordination
|
|
861
|
+
|
|
862
|
+
**Plain Language:**
|
|
863
|
+
Automates project management tasks - triages issues, updates project boards, tracks sprint progress, and coordinates team work using AI swarms.
|
|
864
|
+
|
|
865
|
+
**Usage:**
|
|
866
|
+
```bash
|
|
867
|
+
# Natural language invocation - skill activates automatically
|
|
868
|
+
"Triage all open issues and categorize by priority"
|
|
869
|
+
"Update project board based on PR statuses"
|
|
870
|
+
"Plan next sprint based on velocity and priorities"
|
|
871
|
+
|
|
872
|
+
# The skill activates when you mention issue triage, project boards, or sprint planning
|
|
873
|
+
```
|
|
874
|
+
|
|
875
|
+
**Capabilities:**
|
|
876
|
+
- Issue triage
|
|
877
|
+
- Board automation
|
|
878
|
+
- Sprint planning
|
|
879
|
+
- Progress tracking
|
|
880
|
+
|
|
881
|
+
---
|
|
882
|
+
|
|
883
|
+
### 13. `github-release-management` - Release Orchestration
|
|
884
|
+
|
|
885
|
+
**What It Does:**
|
|
886
|
+
Orchestrates complex releases using AI swarms for automated versioning, testing, deployment, and rollback management.
|
|
887
|
+
|
|
888
|
+
**When to Use:**
|
|
889
|
+
- Creating releases
|
|
890
|
+
- Managing changelogs
|
|
891
|
+
- Coordinating deployments
|
|
892
|
+
- Handling rollbacks
|
|
893
|
+
|
|
894
|
+
**Plain Language:**
|
|
895
|
+
Manages the entire release process - bumps versions, generates changelogs, runs tests, deploys to environments, and can rollback if issues occur.
|
|
896
|
+
|
|
897
|
+
**Usage:**
|
|
898
|
+
```bash
|
|
899
|
+
# Natural language invocation - skill activates automatically
|
|
900
|
+
"Create a new release v2.1.0 with changelog"
|
|
901
|
+
"Deploy to staging and run smoke tests"
|
|
902
|
+
"Rollback production to previous version"
|
|
903
|
+
|
|
904
|
+
# The skill activates when you mention releases, deployment, changelogs, or rollback
|
|
905
|
+
```
|
|
906
|
+
|
|
907
|
+
**Release Steps:**
|
|
908
|
+
- Version bumping
|
|
909
|
+
- Changelog generation
|
|
910
|
+
- Testing coordination
|
|
911
|
+
- Deployment orchestration
|
|
912
|
+
- Rollback capability
|
|
913
|
+
|
|
914
|
+
---
|
|
915
|
+
|
|
916
|
+
### 14. `github-multi-repo` - Cross-Repository Sync
|
|
917
|
+
|
|
918
|
+
**What It Does:**
|
|
919
|
+
Cross-repository synchronization, version alignment, and multi-package integration with intelligent swarm orchestration.
|
|
920
|
+
|
|
921
|
+
**When to Use:**
|
|
922
|
+
- Monorepo management
|
|
923
|
+
- Multi-package projects
|
|
924
|
+
- Dependency synchronization
|
|
925
|
+
- Cross-repo refactoring
|
|
926
|
+
|
|
927
|
+
**Plain Language:**
|
|
928
|
+
Coordinates changes across multiple repositories - updates versions together, syncs dependencies, propagates changes, and ensures everything stays compatible.
|
|
929
|
+
|
|
930
|
+
**Usage:**
|
|
931
|
+
```bash
|
|
932
|
+
# Natural language invocation - skill activates automatically
|
|
933
|
+
"Sync dependency versions across all our microservice repos"
|
|
934
|
+
"Propagate this API change to all consuming packages"
|
|
935
|
+
"Update shared configuration across the organization"
|
|
936
|
+
|
|
937
|
+
# The skill activates when you mention multi-repo, cross-repository, or dependency sync
|
|
938
|
+
```
|
|
939
|
+
|
|
940
|
+
**Sync Types:**
|
|
941
|
+
- Version alignment
|
|
942
|
+
- Dependency updates
|
|
943
|
+
- Configuration sync
|
|
944
|
+
- Cross-repo refactoring
|
|
945
|
+
|
|
946
|
+
---
|
|
947
|
+
|
|
948
|
+
## 🔧 Automation Skills
|
|
949
|
+
|
|
950
|
+
### 15. `hooks-automation` - Development Automation
|
|
951
|
+
|
|
952
|
+
**What It Does:**
|
|
953
|
+
Automated coordination, formatting, and learning from Claude Code operations using intelligent hooks with MCP integration.
|
|
954
|
+
|
|
955
|
+
**When to Use:**
|
|
956
|
+
- Automating repetitive tasks
|
|
957
|
+
- Enforcing code standards
|
|
958
|
+
- Learning from operations
|
|
959
|
+
- Session management
|
|
960
|
+
|
|
961
|
+
**Plain Language:**
|
|
962
|
+
Hooks automatically run before/after operations. Save a file → auto-format. Complete a task → update memory. End session → export metrics. Like Git hooks, but for AI development.
|
|
963
|
+
|
|
964
|
+
**Usage:**
|
|
965
|
+
```bash
|
|
966
|
+
# Natural language invocation - skill activates automatically
|
|
967
|
+
"Setup pre-commit hooks for code formatting"
|
|
968
|
+
"Configure post-task hooks to update documentation"
|
|
969
|
+
"Enable session hooks for metric collection"
|
|
970
|
+
|
|
971
|
+
# The skill activates when you mention hooks, automation, or pre/post task operations
|
|
972
|
+
```
|
|
973
|
+
|
|
974
|
+
**Hook Types:**
|
|
975
|
+
- **Pre-Task**: Before operations start
|
|
976
|
+
- **Post-Edit**: After file changes
|
|
977
|
+
- **Post-Task**: After completion
|
|
978
|
+
- **Session**: Start/end of sessions
|
|
979
|
+
|
|
980
|
+
---
|
|
981
|
+
|
|
982
|
+
### 16. `verification-quality` - Quality Assurance
|
|
983
|
+
|
|
984
|
+
**What It Does:**
|
|
985
|
+
Comprehensive truth scoring, code quality verification, and automatic rollback with 0.95 accuracy threshold.
|
|
986
|
+
|
|
987
|
+
**When to Use:**
|
|
988
|
+
- Ensuring code quality
|
|
989
|
+
- Preventing bugs from merging
|
|
990
|
+
- Automatic verification
|
|
991
|
+
- Rollback protection
|
|
992
|
+
|
|
993
|
+
**Plain Language:**
|
|
994
|
+
Every change gets a "truth score" (0-1 accuracy rating). If it scores below 0.95, changes are automatically rolled back. Prevents low-quality code from entering your codebase.
|
|
995
|
+
|
|
996
|
+
**Usage:**
|
|
997
|
+
```bash
|
|
998
|
+
# Natural language invocation - skill activates automatically
|
|
999
|
+
"Run quality verification on recent changes"
|
|
1000
|
+
"Check truth scores for this PR"
|
|
1001
|
+
"Setup automatic rollback for low-quality commits"
|
|
1002
|
+
|
|
1003
|
+
# The skill activates when you mention quality verification, truth scoring, or automatic rollback
|
|
1004
|
+
```
|
|
1005
|
+
|
|
1006
|
+
**Verification Types:**
|
|
1007
|
+
- Truth scoring (accuracy)
|
|
1008
|
+
- Code quality metrics
|
|
1009
|
+
- Automatic rollback
|
|
1010
|
+
- Reliability tracking
|
|
1011
|
+
|
|
1012
|
+
---
|
|
1013
|
+
|
|
1014
|
+
### 17. `performance-analysis` - Bottleneck Detection
|
|
1015
|
+
|
|
1016
|
+
**What It Does:**
|
|
1017
|
+
Comprehensive performance analysis, bottleneck detection, and optimization recommendations for Claude Flow swarms.
|
|
1018
|
+
|
|
1019
|
+
**When to Use:**
|
|
1020
|
+
- Slow swarm execution
|
|
1021
|
+
- Performance optimization
|
|
1022
|
+
- Resource monitoring
|
|
1023
|
+
- Workflow efficiency
|
|
1024
|
+
|
|
1025
|
+
**Plain Language:**
|
|
1026
|
+
Analyzes why operations are slow, identifies bottlenecks (network, CPU, memory, coordination), and suggests optimizations.
|
|
1027
|
+
|
|
1028
|
+
**Usage:**
|
|
1029
|
+
```bash
|
|
1030
|
+
# Natural language invocation - skill activates automatically
|
|
1031
|
+
"Why is my swarm running slowly?"
|
|
1032
|
+
"Identify bottlenecks in this workflow"
|
|
1033
|
+
"Suggest optimizations for faster execution"
|
|
1034
|
+
|
|
1035
|
+
# The skill activates when you mention performance, bottlenecks, or optimization analysis
|
|
1036
|
+
```
|
|
1037
|
+
|
|
1038
|
+
**Analysis Areas:**
|
|
1039
|
+
- Coordination overhead
|
|
1040
|
+
- Network latency
|
|
1041
|
+
- Resource utilization
|
|
1042
|
+
- Agent efficiency
|
|
1043
|
+
|
|
1044
|
+
---
|
|
1045
|
+
|
|
1046
|
+
### 18. `stream-chain` - Pipeline Processing
|
|
1047
|
+
|
|
1048
|
+
**What It Does:**
|
|
1049
|
+
Stream-JSON chaining for multi-agent pipelines, data transformation, and sequential workflows.
|
|
1050
|
+
|
|
1051
|
+
**When to Use:**
|
|
1052
|
+
- Data processing pipelines
|
|
1053
|
+
- Multi-stage transformations
|
|
1054
|
+
- Sequential agent workflows
|
|
1055
|
+
- Stream processing
|
|
1056
|
+
|
|
1057
|
+
**Plain Language:**
|
|
1058
|
+
Chains agents together like Unix pipes - output from one agent flows as input to the next. Great for ETL, data processing, and sequential transformations.
|
|
1059
|
+
|
|
1060
|
+
**Usage:**
|
|
1061
|
+
```bash
|
|
1062
|
+
# Natural language invocation - skill activates automatically
|
|
1063
|
+
"Chain: fetch data → transform → validate → store"
|
|
1064
|
+
"Pipeline: parse logs → analyze errors → generate report"
|
|
1065
|
+
"Stream: read files → extract data → aggregate → visualize"
|
|
1066
|
+
|
|
1067
|
+
# The skill activates when you mention pipelines, chaining, or stream processing
|
|
1068
|
+
```
|
|
1069
|
+
|
|
1070
|
+
**Pipeline Stages:**
|
|
1071
|
+
- Input agents (fetch/read)
|
|
1072
|
+
- Transform agents (process)
|
|
1073
|
+
- Validate agents (check)
|
|
1074
|
+
- Output agents (store/report)
|
|
1075
|
+
|
|
1076
|
+
---
|
|
1077
|
+
|
|
1078
|
+
## ☁️ Flow Nexus Platform Skills
|
|
1079
|
+
|
|
1080
|
+
### 19. `flow-nexus-platform` - Cloud Platform
|
|
1081
|
+
|
|
1082
|
+
**What It Does:**
|
|
1083
|
+
Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges.
|
|
1084
|
+
|
|
1085
|
+
**When to Use:**
|
|
1086
|
+
- Cloud-based development
|
|
1087
|
+
- Sandbox environments
|
|
1088
|
+
- Deploying applications
|
|
1089
|
+
- Managing platform resources
|
|
1090
|
+
|
|
1091
|
+
**Plain Language:**
|
|
1092
|
+
Access to Flow Nexus cloud platform - create isolated sandboxes for testing, deploy apps, manage authentication, and access 70+ cloud tools.
|
|
1093
|
+
|
|
1094
|
+
**Usage:**
|
|
1095
|
+
```bash
|
|
1096
|
+
# Natural language invocation - skill activates automatically
|
|
1097
|
+
"Create a sandbox for testing this Node.js app"
|
|
1098
|
+
"Deploy my application to Flow Nexus"
|
|
1099
|
+
"Setup authentication for cloud access"
|
|
1100
|
+
|
|
1101
|
+
# The skill activates when you mention Flow Nexus, cloud platform, or sandboxes
|
|
1102
|
+
```
|
|
1103
|
+
|
|
1104
|
+
**Features:**
|
|
1105
|
+
- Sandbox creation
|
|
1106
|
+
- App deployment
|
|
1107
|
+
- Authentication
|
|
1108
|
+
- Payment management
|
|
1109
|
+
|
|
1110
|
+
---
|
|
1111
|
+
|
|
1112
|
+
### 20. `flow-nexus-swarm` - Cloud Swarms
|
|
1113
|
+
|
|
1114
|
+
**What It Does:**
|
|
1115
|
+
Cloud-based AI swarm deployment and event-driven workflow automation with Flow Nexus platform.
|
|
1116
|
+
|
|
1117
|
+
**When to Use:**
|
|
1118
|
+
- Scalable swarm execution
|
|
1119
|
+
- Cloud-based coordination
|
|
1120
|
+
- Event-driven workflows
|
|
1121
|
+
- Distributed processing
|
|
1122
|
+
|
|
1123
|
+
**Plain Language:**
|
|
1124
|
+
Runs swarms in the cloud instead of locally. Scale to hundreds of agents, handle events, and process distributed workloads without local resource limits.
|
|
1125
|
+
|
|
1126
|
+
**Usage:**
|
|
1127
|
+
```bash
|
|
1128
|
+
# Natural language invocation - skill activates automatically
|
|
1129
|
+
"Deploy a 50-agent swarm in the cloud for this analysis"
|
|
1130
|
+
"Create event-driven workflow for CI/CD"
|
|
1131
|
+
"Scale swarm to handle high-volume processing"
|
|
1132
|
+
|
|
1133
|
+
# The skill activates when you mention cloud swarms, event-driven workflows, or distributed processing
|
|
1134
|
+
```
|
|
1135
|
+
|
|
1136
|
+
**Cloud Features:**
|
|
1137
|
+
- Massive scalability
|
|
1138
|
+
- Event-driven automation
|
|
1139
|
+
- Distributed execution
|
|
1140
|
+
- No local limits
|
|
1141
|
+
|
|
1142
|
+
---
|
|
1143
|
+
|
|
1144
|
+
### 21. `flow-nexus-neural` - Cloud Neural Training
|
|
1145
|
+
|
|
1146
|
+
**What It Does:**
|
|
1147
|
+
Train and deploy neural networks in distributed E2B sandboxes with Flow Nexus.
|
|
1148
|
+
|
|
1149
|
+
**When to Use:**
|
|
1150
|
+
- Neural network training
|
|
1151
|
+
- Distributed ML workloads
|
|
1152
|
+
- Model deployment
|
|
1153
|
+
- Large-scale inference
|
|
1154
|
+
|
|
1155
|
+
**Plain Language:**
|
|
1156
|
+
Train machine learning models in the cloud using distributed sandboxes. No need for local GPUs - Flow Nexus handles the compute.
|
|
1157
|
+
|
|
1158
|
+
**Usage:**
|
|
1159
|
+
```bash
|
|
1160
|
+
# Natural language invocation - skill activates automatically
|
|
1161
|
+
"Train a neural network for code classification"
|
|
1162
|
+
"Deploy distributed training across 10 sandboxes"
|
|
1163
|
+
"Run inference on this trained model"
|
|
1164
|
+
|
|
1165
|
+
# The skill activates when you mention neural training, distributed ML, or cloud compute
|
|
1166
|
+
```
|
|
1167
|
+
|
|
1168
|
+
**Capabilities:**
|
|
1169
|
+
- Distributed training
|
|
1170
|
+
- Cloud compute
|
|
1171
|
+
- Model deployment
|
|
1172
|
+
- Scalable inference
|
|
1173
|
+
|
|
1174
|
+
---
|
|
1175
|
+
|
|
1176
|
+
## 🚀 Quick Reference
|
|
1177
|
+
|
|
1178
|
+
### How Skills Activate
|
|
1179
|
+
|
|
1180
|
+
**Natural Language Invocation** - Skills activate automatically based on your task description. Just describe what you want to do in plain language:
|
|
1181
|
+
|
|
1182
|
+
```bash
|
|
1183
|
+
# No slash commands needed - just describe your task
|
|
1184
|
+
"Let's pair program on this component" → Activates pair-programming
|
|
1185
|
+
"Review this PR for security issues" → Activates github-code-review
|
|
1186
|
+
"Create a swarm to build this API" → Activates swarm-orchestration
|
|
1187
|
+
"Use vector search to find similar functions" → Activates agentdb-vector-search
|
|
1188
|
+
```
|
|
1189
|
+
|
|
1190
|
+
### Auto-Discovery
|
|
1191
|
+
|
|
1192
|
+
Skills activate automatically when:
|
|
1193
|
+
- Task description matches skill purpose (e.g., "review code" → github-code-review)
|
|
1194
|
+
- Context indicates skill relevance (e.g., working with PRs → github skills)
|
|
1195
|
+
- Keywords trigger activation (e.g., "swarm", "pair", "optimize", "search")
|
|
1196
|
+
|
|
1197
|
+
**You don't need to know skill names** - just describe what you want, and the right skills activate.
|
|
1198
|
+
|
|
1199
|
+
### Common Workflows
|
|
1200
|
+
|
|
1201
|
+
**New Feature Development:**
|
|
1202
|
+
```bash
|
|
1203
|
+
"Build a user authentication feature with TDD"
|
|
1204
|
+
# → Activates sparc-methodology for systematic development
|
|
1205
|
+
```
|
|
1206
|
+
|
|
1207
|
+
**Code Review:**
|
|
1208
|
+
```bash
|
|
1209
|
+
"Review PR #42 for security and performance issues"
|
|
1210
|
+
# → Activates github-code-review with multi-agent analysis
|
|
1211
|
+
```
|
|
1212
|
+
|
|
1213
|
+
**Performance Issues:**
|
|
1214
|
+
```bash
|
|
1215
|
+
"Why is my workflow running slowly? Find bottlenecks"
|
|
1216
|
+
# → Activates performance-analysis for optimization
|
|
1217
|
+
```
|
|
1218
|
+
|
|
1219
|
+
**Team Coordination:**
|
|
1220
|
+
```bash
|
|
1221
|
+
"Create a swarm with frontend, backend, and testing specialists"
|
|
1222
|
+
# → Activates swarm-orchestration for parallel multi-agent work
|
|
1223
|
+
```
|
|
1224
|
+
|
|
1225
|
+
**Search & Memory:**
|
|
1226
|
+
```bash
|
|
1227
|
+
"Find code similar to this authentication pattern"
|
|
1228
|
+
# → Activates agentdb-vector-search for semantic search
|
|
1229
|
+
```
|
|
1230
|
+
|
|
1231
|
+
---
|
|
1232
|
+
|
|
1233
|
+
## 📚 Next Steps
|
|
1234
|
+
|
|
1235
|
+
1. **Install**: Run `npx claude-flow@alpha init --force`
|
|
1236
|
+
2. **Explore**: Say "create a custom skill for our API patterns"
|
|
1237
|
+
3. **Practice**: Say "let's pair program on this feature"
|
|
1238
|
+
4. **Scale**: Say "create a swarm to build this microservice"
|
|
1239
|
+
5. **Automate**: Say "setup hooks for automatic formatting"
|
|
1240
|
+
|
|
1241
|
+
**Remember**: Just describe what you want in natural language - no commands to memorize!
|
|
1242
|
+
|
|
1243
|
+
## 🔗 Resources
|
|
1244
|
+
|
|
1245
|
+
- **Documentation**: https://github.com/ruvnet/claude-flow
|
|
1246
|
+
- **Issues**: https://github.com/ruvnet/claude-flow/issues
|
|
1247
|
+
- **Flow Nexus**: https://flow-nexus.ruv.io
|
|
1248
|
+
|
|
1249
|
+
---
|
|
1250
|
+
|
|
1251
|
+
**Remember**: Skills are discovered automatically - just start working, and Claude will use the right skills at the right time!
|