monomind 1.19.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -5
- package/package.json +15 -34
- package/packages/@monomind/cli/.claude/agents/github/issue-tracker.md +0 -2
- package/packages/@monomind/cli/.claude/agents/github/pr-manager.md +0 -2
- package/packages/@monomind/cli/.claude/agents/github/repo-architect.md +3 -11
- package/packages/@monomind/cli/.claude/agents/goal/goal-planner.md +0 -1
- package/packages/@monomind/cli/.claude/commands/github/issue-tracker.md +0 -2
- package/packages/@monomind/cli/.claude/commands/github/pr-manager.md +0 -2
- package/packages/@monomind/cli/.claude/commands/github/repo-architect.md +3 -10
- package/packages/@monomind/cli/.claude/commands/mastermind/help.md +3 -3
- package/packages/@monomind/cli/.claude/commands/workflows/README.md +0 -1
- package/packages/@monomind/cli/.claude/commands/workflows/workflow-create.md +0 -1
- package/packages/@monomind/cli/.claude/commands/workflows/workflow-execute.md +1 -3
- package/packages/@monomind/cli/.claude/commands/workflows/workflow-export.md +0 -2
- package/packages/@monomind/cli/.claude/helpers/handlers/agent-start-handler.cjs +18 -1
- package/packages/@monomind/cli/.claude/helpers/handlers/edit-handler.cjs +15 -0
- package/packages/@monomind/cli/.claude/helpers/handlers/gates-handler.cjs +2 -8
- package/packages/@monomind/cli/.claude/helpers/handlers/route-handler.cjs +149 -7
- package/packages/@monomind/cli/.claude/helpers/handlers/session-handler.cjs +47 -25
- package/packages/@monomind/cli/.claude/helpers/handlers/session-restore-handler.cjs +80 -43
- package/packages/@monomind/cli/.claude/helpers/handlers/task-handler.cjs +8 -4
- package/packages/@monomind/cli/.claude/helpers/hook-handler.cjs +69 -16
- package/packages/@monomind/cli/.claude/helpers/intelligence.cjs +100 -9
- package/packages/@monomind/cli/.claude/helpers/router.cjs +78 -5
- package/packages/@monomind/cli/.claude/helpers/skill-registry.json +0 -189
- package/packages/@monomind/cli/.claude/skills/github-toolkit/SKILL.md +60 -0
- package/packages/@monomind/cli/.claude/skills/hive-mind-advanced/SKILL.md +0 -15
- package/packages/@monomind/cli/.claude/skills/hooks-automation/SKILL.md +0 -1
- package/packages/@monomind/cli/.claude/skills/mastermind-skills/_protocol.md +1 -1
- package/packages/@monomind/cli/.claude/skills/mastermind-skills/build.md +1 -2
- package/packages/@monomind/cli/.claude/skills/memory-toolkit/SKILL.md +75 -0
- package/packages/@monomind/cli/.claude/skills/specialagent/SKILL.md +2 -4
- package/packages/@monomind/cli/.claude/skills/swarm-advanced/SKILL.md +0 -1
- package/packages/@monomind/cli/README.md +2 -5
- package/packages/@monomind/cli/dist/src/autopilot-state.js +4 -5
- package/packages/@monomind/cli/dist/src/browser/dashboard/server.js +69 -1
- package/packages/@monomind/cli/dist/src/browser/dashboard/ui.html +214 -1764
- package/packages/@monomind/cli/dist/src/capabilities/index.d.ts +0 -2
- package/packages/@monomind/cli/dist/src/capabilities/index.js +0 -1
- package/packages/@monomind/cli/dist/src/commands/agent-lifecycle.js +2 -6
- package/packages/@monomind/cli/dist/src/commands/analyze.d.ts +0 -4
- package/packages/@monomind/cli/dist/src/commands/analyze.js +1 -29
- package/packages/@monomind/cli/dist/src/commands/completions.js +3 -22
- package/packages/@monomind/cli/dist/src/commands/config.js +0 -6
- package/packages/@monomind/cli/dist/src/commands/doctor-project-checks.d.ts +12 -2
- package/packages/@monomind/cli/dist/src/commands/doctor-project-checks.js +130 -22
- package/packages/@monomind/cli/dist/src/commands/doctor.js +6 -5
- package/packages/@monomind/cli/dist/src/commands/guidance.d.ts +5 -1
- package/packages/@monomind/cli/dist/src/commands/guidance.js +11 -556
- package/packages/@monomind/cli/dist/src/commands/hive-mind-comms.js +11 -4
- package/packages/@monomind/cli/dist/src/commands/hive-mind.d.ts +4 -4
- package/packages/@monomind/cli/dist/src/commands/hive-mind.js +9 -6
- package/packages/@monomind/cli/dist/src/commands/hooks-formatting.d.ts +1 -5
- package/packages/@monomind/cli/dist/src/commands/hooks-formatting.js +1 -18
- package/packages/@monomind/cli/dist/src/commands/hooks-workers.d.ts +1 -1
- package/packages/@monomind/cli/dist/src/commands/hooks-workers.js +82 -330
- package/packages/@monomind/cli/dist/src/commands/index.d.ts +0 -5
- package/packages/@monomind/cli/dist/src/commands/index.js +0 -45
- package/packages/@monomind/cli/dist/src/commands/init-wizard.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/init.js +4 -24
- package/packages/@monomind/cli/dist/src/commands/neural-core.js +11 -11
- package/packages/@monomind/cli/dist/src/commands/neural-optimize.js +9 -11
- package/packages/@monomind/cli/dist/src/commands/neural-registry.js +10 -10
- package/packages/@monomind/cli/dist/src/commands/providers.js +90 -1
- package/packages/@monomind/cli/dist/src/commands/search-universal.d.ts +7 -1
- package/packages/@monomind/cli/dist/src/commands/search-universal.js +59 -5
- package/packages/@monomind/cli/dist/src/commands/security-cve.js +3 -5
- package/packages/@monomind/cli/dist/src/commands/session.js +143 -3
- package/packages/@monomind/cli/dist/src/commands/start.js +0 -18
- package/packages/@monomind/cli/dist/src/commands/swarm.js +112 -65
- package/packages/@monomind/cli/dist/src/consensus/audit-writer.js +43 -1
- package/packages/@monomind/cli/dist/src/consensus/tally.d.ts +19 -0
- package/packages/@monomind/cli/dist/src/consensus/tally.js +34 -0
- package/packages/@monomind/cli/dist/src/index.d.ts +3 -2
- package/packages/@monomind/cli/dist/src/index.js +9 -12
- package/packages/@monomind/cli/dist/src/init/claudemd-generator.js +10 -14
- package/packages/@monomind/cli/dist/src/init/executor.js +39 -86
- package/packages/@monomind/cli/dist/src/init/settings-generator.js +0 -12
- package/packages/@monomind/cli/dist/src/init/statusline-generator.js +62 -0
- package/packages/@monomind/cli/dist/src/init/types.d.ts +2 -6
- package/packages/@monomind/cli/dist/src/init/types.js +0 -3
- package/packages/@monomind/cli/dist/src/knowledge/document-pipeline.js +18 -8
- package/packages/@monomind/cli/dist/src/mcp-client.js +0 -2
- package/packages/@monomind/cli/dist/src/mcp-server.js +12 -14
- package/packages/@monomind/cli/dist/src/mcp-tools/coherence/coherence-check.js +1 -19
- package/packages/@monomind/cli/dist/src/mcp-tools/coherence/types.d.ts +3 -2
- package/packages/@monomind/cli/dist/src/mcp-tools/coherence/types.js +3 -18
- package/packages/@monomind/cli/dist/src/mcp-tools/embeddings-tools.js +1 -7
- package/packages/@monomind/cli/dist/src/mcp-tools/graphify-tools.js +2 -2
- package/packages/@monomind/cli/dist/src/mcp-tools/guidance-tools.js +7 -17
- package/packages/@monomind/cli/dist/src/mcp-tools/hive-mind-tools.d.ts +8 -1
- package/packages/@monomind/cli/dist/src/mcp-tools/hive-mind-tools.js +174 -38
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-advanced.d.ts +18 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-advanced.js +25 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-intelligence.d.ts +4 -8
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-intelligence.js +33 -482
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-routing.d.ts +1 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-routing.js +51 -43
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-synthesis.d.ts +31 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-synthesis.js +196 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/hooks-tools.js +10 -8
- package/packages/@monomind/cli/dist/src/mcp-tools/index.d.ts +0 -1
- package/packages/@monomind/cli/dist/src/mcp-tools/index.js +0 -1
- package/packages/@monomind/cli/dist/src/mcp-tools/memory-tools.js +20 -29
- package/packages/@monomind/cli/dist/src/mcp-tools/monograph-tools.d.ts +6 -0
- package/packages/@monomind/cli/dist/src/mcp-tools/monograph-tools.js +78 -220
- package/packages/@monomind/cli/dist/src/mcp-tools/neural-tools.d.ts +9 -4
- package/packages/@monomind/cli/dist/src/mcp-tools/neural-tools.js +242 -506
- package/packages/@monomind/cli/dist/src/mcp-tools/security-tools.js +103 -0
- package/packages/@monomind/cli/dist/src/memory/intelligence.d.ts +2 -1
- package/packages/@monomind/cli/dist/src/memory/intelligence.js +56 -43
- package/packages/@monomind/cli/dist/src/memory/memory-bridge.js +14 -9
- package/packages/@monomind/cli/dist/src/memory/memory-read.js +1 -19
- package/packages/@monomind/cli/dist/src/suggest.js +1 -7
- package/packages/@monomind/cli/dist/src/transfer/store/discovery.d.ts +3 -2
- package/packages/@monomind/cli/dist/src/transfer/store/discovery.js +22 -70
- package/packages/@monomind/cli/dist/src/update/checker.js +0 -1
- package/packages/@monomind/cli/dist/src/utils/cosine-similarity.d.ts +22 -0
- package/packages/@monomind/cli/dist/src/utils/cosine-similarity.js +38 -0
- package/packages/@monomind/cli/dist/src/utils/input-guards.d.ts +51 -0
- package/packages/@monomind/cli/dist/src/utils/input-guards.js +223 -0
- package/packages/@monomind/cli/dist/src/utils/json-file.d.ts +33 -0
- package/packages/@monomind/cli/dist/src/utils/json-file.js +57 -0
- package/packages/@monomind/cli/package.json +9 -6
- package/packages/@monomind/cli/scripts/sync-claude-assets.sh +16 -20
- package/scripts/generate-agent-avatars.mjs +0 -8
- package/.claude/agents/architecture/system-design/arch-system-design.md +0 -54
- package/.claude/agents/consensus/crdt-synchronizer.md +0 -977
- package/.claude/agents/consensus/quorum-manager.md +0 -803
- package/.claude/agents/consensus/security-manager.md +0 -602
- package/.claude/agents/core/coder.md +0 -262
- package/.claude/agents/core/coordinator.md +0 -71
- package/.claude/agents/core/planner.md +0 -170
- package/.claude/agents/core/researcher.md +0 -197
- package/.claude/agents/core/reviewer.md +0 -327
- package/.claude/agents/core/tester.md +0 -318
- package/.claude/agents/design/design-monodesign.md +0 -121
- package/.claude/agents/engineering/engineering-ai-data-remediation-engineer.md +0 -212
- package/.claude/agents/engineering/engineering-ai-engineer.md +0 -165
- package/.claude/agents/engineering/engineering-autonomous-optimization-architect.md +0 -108
- package/.claude/agents/engineering/engineering-backend-architect.md +0 -254
- package/.claude/agents/engineering/engineering-code-reviewer.md +0 -95
- package/.claude/agents/engineering/engineering-data-engineer.md +0 -307
- package/.claude/agents/engineering/engineering-database-optimizer.md +0 -200
- package/.claude/agents/engineering/engineering-devops-automator.md +0 -430
- package/.claude/agents/engineering/engineering-embedded-firmware-engineer.md +0 -174
- package/.claude/agents/engineering/engineering-feishu-integration-developer.md +0 -607
- package/.claude/agents/engineering/engineering-frontend-developer.md +0 -249
- package/.claude/agents/engineering/engineering-git-workflow-master.md +0 -108
- package/.claude/agents/engineering/engineering-incident-response-commander.md +0 -482
- package/.claude/agents/engineering/engineering-mobile-app-builder.md +0 -499
- package/.claude/agents/engineering/engineering-rapid-prototyper.md +0 -463
- package/.claude/agents/engineering/engineering-security-engineer.md +0 -303
- package/.claude/agents/engineering/engineering-senior-developer.md +0 -195
- package/.claude/agents/engineering/engineering-software-architect.md +0 -100
- package/.claude/agents/engineering/engineering-solidity-smart-contract-engineer.md +0 -528
- package/.claude/agents/engineering/engineering-sre.md +0 -114
- package/.claude/agents/engineering/engineering-technical-writer.md +0 -412
- package/.claude/agents/engineering/engineering-threat-detection-engineer.md +0 -540
- package/.claude/agents/engineering/engineering-wechat-mini-program-developer.md +0 -351
- package/.claude/agents/generated/case-analyst.md +0 -50
- package/.claude/agents/generated/channel-intelligence-director.md +0 -87
- package/.claude/agents/generated/chief-growth-officer.md +0 -88
- package/.claude/agents/generated/churn-analyst.md +0 -53
- package/.claude/agents/generated/code-reviewer.md +0 -55
- package/.claude/agents/generated/code-validator.md +0 -57
- package/.claude/agents/generated/complexity-scanner.md +0 -56
- package/.claude/agents/generated/content-seo-strategist.md +0 -90
- package/.claude/agents/generated/copy-editor.md +0 -45
- package/.claude/agents/generated/court-reporter.md +0 -50
- package/.claude/agents/generated/defender.md +0 -51
- package/.claude/agents/generated/devbot-orchestrator.md +0 -58
- package/.claude/agents/generated/devbot-planner.md +0 -63
- package/.claude/agents/generated/developer-community-strategist.md +0 -91
- package/.claude/agents/generated/editor-in-chief.md +0 -45
- package/.claude/agents/generated/fact-checker.md +0 -45
- package/.claude/agents/generated/impact-assessor.md +0 -54
- package/.claude/agents/generated/judge.md +0 -51
- package/.claude/agents/generated/outreach-partnership-strategist.md +0 -90
- package/.claude/agents/generated/prosecutor.md +0 -51
- package/.claude/agents/generated/reporter.md +0 -45
- package/.claude/agents/generated/social-media-strategist.md +0 -91
- package/.claude/agents/generated/video-visual-strategist.md +0 -90
- package/.claude/agents/github/code-review-swarm.md +0 -557
- package/.claude/agents/github/github-modes.md +0 -154
- package/.claude/agents/github/issue-tracker.md +0 -299
- package/.claude/agents/github/multi-repo-swarm.md +0 -525
- package/.claude/agents/github/pr-manager.md +0 -163
- package/.claude/agents/github/project-board-sync.md +0 -478
- package/.claude/agents/github/release-manager.md +0 -296
- package/.claude/agents/github/repo-architect.md +0 -359
- package/.claude/agents/github/swarm-issue.md +0 -548
- package/.claude/agents/github/swarm-pr.md +0 -427
- package/.claude/agents/github/sync-coordinator.md +0 -355
- package/.claude/agents/github/workflow-automation.md +0 -640
- package/.claude/agents/goal/goal-planner.md +0 -168
- package/.claude/agents/hive-mind/collective-intelligence-coordinator.md +0 -129
- package/.claude/agents/hive-mind/queen-coordinator.md +0 -202
- package/.claude/agents/hive-mind/scout-explorer.md +0 -241
- package/.claude/agents/hive-mind/swarm-memory-manager.md +0 -192
- package/.claude/agents/hive-mind/worker-specialist.md +0 -216
- package/.claude/agents/marketing/marketing-competitive-content.md +0 -155
- package/.claude/agents/marketing/marketing-cro-specialist.md +0 -147
- package/.claude/agents/marketing/marketing-email-specialist.md +0 -90
- package/.claude/agents/marketing/marketing-launch-strategist.md +0 -129
- package/.claude/agents/marketing/marketing-pricing-strategist.md +0 -127
- package/.claude/agents/optimization/benchmark-suite.md +0 -665
- package/.claude/agents/optimization/load-balancer.md +0 -431
- package/.claude/agents/optimization/performance-monitor.md +0 -672
- package/.claude/agents/optimization/resource-allocator.md +0 -674
- package/.claude/agents/optimization/topology-optimizer.md +0 -808
- package/.claude/agents/reengineer-squad/boss.md +0 -113
- package/.claude/agents/reengineer-squad/critic-architect.md +0 -132
- package/.claude/agents/reengineer-squad/git-manager.md +0 -145
- package/.claude/agents/reengineer-squad/idea-generator.md +0 -95
- package/.claude/agents/reengineer-squad/implementer.md +0 -112
- package/.claude/agents/reengineer-squad/integration-planner.md +0 -112
- package/.claude/agents/reengineer-squad/source-analyst.md +0 -103
- package/.claude/agents/reengineer-squad/target-analyst.md +0 -118
- package/.claude/agents/reengineer-squad/tester.md +0 -105
- package/.claude/agents/schemas/architecture-output.json +0 -43
- package/.claude/agents/schemas/code-review-output.json +0 -28
- package/.claude/agents/schemas/generic-task-input.json +0 -12
- package/.claude/agents/schemas/implementation-output.json +0 -18
- package/.claude/agents/schemas/research-output.json +0 -31
- package/.claude/agents/schemas/security-audit-output.json +0 -29
- package/.claude/agents/schemas/test-report-output.json +0 -29
- package/.claude/agents/sparc/architecture.md +0 -453
- package/.claude/agents/sparc/pseudocode.md +0 -299
- package/.claude/agents/sparc/refinement.md +0 -504
- package/.claude/agents/sparc/specification.md +0 -258
- package/.claude/agents/specialists/integration-architect.md +0 -94
- package/.claude/agents/specialized/agentic-identity-trust.md +0 -388
- package/.claude/agents/specialized/agents-orchestrator.md +0 -368
- package/.claude/agents/specialized/automation-governance-architect.md +0 -217
- package/.claude/agents/specialized/blockchain-security-auditor.md +0 -497
- package/.claude/agents/specialized/compliance-auditor.md +0 -159
- package/.claude/agents/specialized/identity-graph-operator.md +0 -261
- package/.claude/agents/specialized/lsp-index-engineer.md +0 -315
- package/.claude/agents/specialized/mobile/spec-mobile-react-native.md +0 -89
- package/.claude/agents/specialized/specialized-cultural-intelligence-strategist.md +0 -89
- package/.claude/agents/specialized/specialized-developer-advocate.md +0 -318
- package/.claude/agents/specialized/specialized-document-generator.md +0 -56
- package/.claude/agents/specialized/specialized-mcp-builder.md +0 -64
- package/.claude/agents/specialized/specialized-model-qa.md +0 -489
- package/.claude/agents/specialized/specialized-workflow-architect.md +0 -595
- package/.claude/agents/specialized/zk-steward.md +0 -212
- package/.claude/agents/swarm/mesh-coordinator.md +0 -363
- package/.claude/agents/templates/automation-smart-agent.md +0 -185
- package/.claude/agents/templates/coordinator-swarm-init.md +0 -83
- package/.claude/agents/templates/implementer-sparc-coder.md +0 -231
- package/.claude/agents/testing/production-validator.md +0 -375
- package/.claude/agents/testing/tdd-london-swarm.md +0 -241
- package/.claude/agents/testing/testing-accessibility-auditor.md +0 -322
- package/.claude/agents/testing/testing-api-tester.md +0 -307
- package/.claude/agents/testing/testing-evidence-collector.md +0 -213
- package/.claude/agents/testing/testing-performance-benchmarker.md +0 -269
- package/.claude/agents/testing/testing-test-results-analyzer.md +0 -306
- package/.claude/agents/testing/testing-tool-evaluator.md +0 -395
- package/.claude/agents/testing/testing-workflow-optimizer.md +0 -451
- package/.claude/commands/agents/README.md +0 -14
- package/.claude/commands/agents/agent-capabilities.md +0 -25
- package/.claude/commands/agents/agent-coordination.md +0 -32
- package/.claude/commands/agents/agent-spawning.md +0 -32
- package/.claude/commands/agents/agent-types.md +0 -30
- package/.claude/commands/analysis/README.md +0 -18
- package/.claude/commands/analysis/bottleneck-detect.md +0 -69
- package/.claude/commands/analysis/performance-bottlenecks.md +0 -59
- package/.claude/commands/analysis/performance-report.md +0 -52
- package/.claude/commands/analysis/token-usage.md +0 -47
- package/.claude/commands/automation/README.md +0 -19
- package/.claude/commands/automation/auto-agent.md +0 -86
- package/.claude/commands/automation/self-healing.md +0 -108
- package/.claude/commands/automation/session-memory.md +0 -89
- package/.claude/commands/automation/smart-agents.md +0 -81
- package/.claude/commands/automation/smart-spawn.md +0 -66
- package/.claude/commands/automation/workflow-select.md +0 -60
- package/.claude/commands/coordination/README.md +0 -13
- package/.claude/commands/coordination/agent-spawn.md +0 -69
- package/.claude/commands/coordination/swarm-init.md +0 -82
- package/.claude/commands/coordination/task-orchestrate.md +0 -79
- package/.claude/commands/github/README.md +0 -24
- package/.claude/commands/github/github-modes.md +0 -151
- package/.claude/commands/github/issue-tracker.md +0 -293
- package/.claude/commands/github/pr-manager.md +0 -173
- package/.claude/commands/github/release-manager.md +0 -343
- package/.claude/commands/github/repo-architect.md +0 -379
- package/.claude/commands/github/sync-coordinator.md +0 -297
- package/.claude/commands/hive-mind/README.md +0 -42
- package/.claude/commands/hive-mind/hive-mind-consensus.md +0 -72
- package/.claude/commands/hive-mind/hive-mind-init.md +0 -68
- package/.claude/commands/hive-mind/hive-mind-memory.md +0 -73
- package/.claude/commands/hive-mind/hive-mind-spawn.md +0 -82
- package/.claude/commands/hive-mind/hive-mind-status.md +0 -56
- package/.claude/commands/hive-mind/hive-mind-stop.md +0 -55
- package/.claude/commands/hive-mind/hive-mind.md +0 -87
- package/.claude/commands/hooks/README.md +0 -66
- package/.claude/commands/hooks/overview.md +0 -112
- package/.claude/commands/hooks/post-edit.md +0 -78
- package/.claude/commands/hooks/post-task.md +0 -62
- package/.claude/commands/hooks/pre-edit.md +0 -81
- package/.claude/commands/hooks/pre-task.md +0 -73
- package/.claude/commands/hooks/session-end.md +0 -82
- package/.claude/commands/hooks/setup.md +0 -132
- package/.claude/commands/mastermind/_repeat.md +0 -492
- package/.claude/commands/mastermind/_taskfile.md +0 -232
- package/.claude/commands/mastermind/adr.md +0 -9
- package/.claude/commands/mastermind/approve.md +0 -91
- package/.claude/commands/mastermind/architect.md +0 -52
- package/.claude/commands/mastermind/autodev.md +0 -28
- package/.claude/commands/mastermind/brain.md +0 -99
- package/.claude/commands/mastermind/budget.md +0 -5
- package/.claude/commands/mastermind/build.md +0 -23
- package/.claude/commands/mastermind/code-review.md +0 -314
- package/.claude/commands/mastermind/content.md +0 -23
- package/.claude/commands/mastermind/createorg.md +0 -136
- package/.claude/commands/mastermind/createtask.md +0 -372
- package/.claude/commands/mastermind/debug.md +0 -19
- package/.claude/commands/mastermind/design.md +0 -17
- package/.claude/commands/mastermind/do.md +0 -525
- package/.claude/commands/mastermind/execute.md +0 -17
- package/.claude/commands/mastermind/finance.md +0 -23
- package/.claude/commands/mastermind/finish.md +0 -17
- package/.claude/commands/mastermind/graph-status.md +0 -5
- package/.claude/commands/mastermind/help.md +0 -115
- package/.claude/commands/mastermind/idea.md +0 -23
- package/.claude/commands/mastermind/ideate.md +0 -258
- package/.claude/commands/mastermind/improve.md +0 -342
- package/.claude/commands/mastermind/loops.md +0 -5
- package/.claude/commands/mastermind/marketing.md +0 -23
- package/.claude/commands/mastermind/master.md +0 -1124
- package/.claude/commands/mastermind/memory.md +0 -227
- package/.claude/commands/mastermind/okf-export.md +0 -14
- package/.claude/commands/mastermind/okf-import.md +0 -15
- package/.claude/commands/mastermind/ops.md +0 -23
- package/.claude/commands/mastermind/orgs.md +0 -18
- package/.claude/commands/mastermind/orgstatus.md +0 -56
- package/.claude/commands/mastermind/plan.md +0 -23
- package/.claude/commands/mastermind/receive-review.md +0 -17
- package/.claude/commands/mastermind/references/antigravity-tools.md +0 -60
- package/.claude/commands/mastermind/references/claude-code-tools.md +0 -50
- package/.claude/commands/mastermind/references/codex-tools.md +0 -64
- package/.claude/commands/mastermind/references/copilot-tools.md +0 -49
- package/.claude/commands/mastermind/references/gemini-tools.md +0 -63
- package/.claude/commands/mastermind/references/pi-tools.md +0 -28
- package/.claude/commands/mastermind/release.md +0 -23
- package/.claude/commands/mastermind/repeat.md +0 -254
- package/.claude/commands/mastermind/research.md +0 -23
- package/.claude/commands/mastermind/review.md +0 -34
- package/.claude/commands/mastermind/runorg.md +0 -153
- package/.claude/commands/mastermind/sales.md +0 -23
- package/.claude/commands/mastermind/skill-builder.md +0 -17
- package/.claude/commands/mastermind/specialagents.md +0 -122
- package/.claude/commands/mastermind/stoporg.md +0 -75
- package/.claude/commands/mastermind/swarm.md +0 -158
- package/.claude/commands/mastermind/taskdev.md +0 -23
- package/.claude/commands/mastermind/tdd.md +0 -19
- package/.claude/commands/mastermind/techport.md +0 -27
- package/.claude/commands/mastermind/understand.md +0 -136
- package/.claude/commands/mastermind/verify.md +0 -19
- package/.claude/commands/mastermind/worktree.md +0 -17
- package/.claude/commands/mastermind.md +0 -121
- package/.claude/commands/memory/README.md +0 -79
- package/.claude/commands/memory/memory-search.md +0 -77
- package/.claude/commands/monitoring/README.md +0 -69
- package/.claude/commands/monitoring/agent-metrics.md +0 -65
- package/.claude/commands/monitoring/agents.md +0 -71
- package/.claude/commands/monitoring/status.md +0 -108
- package/.claude/commands/monobrowse.md +0 -21
- package/.claude/commands/monoes/README.md +0 -30
- package/.claude/commands/monoes/install.md +0 -163
- package/.claude/commands/monoes/monoagent.md +0 -148
- package/.claude/commands/monoes/monoclip.md +0 -64
- package/.claude/commands/monoes/monotask.md +0 -137
- package/.claude/commands/monograph/README.md +0 -102
- package/.claude/commands/monograph/monograph-build.md +0 -79
- package/.claude/commands/monograph/monograph-search.md +0 -96
- package/.claude/commands/monograph/monograph-stats.md +0 -53
- package/.claude/commands/monograph/monograph-watch.md +0 -63
- package/.claude/commands/monograph/monograph-wiki.md +0 -91
- package/.claude/commands/optimization/auto-topology.md +0 -85
- package/.claude/commands/optimization/performance-optimize.md +0 -79
- package/.claude/commands/pair/README.md +0 -79
- package/.claude/commands/pair/examples.md +0 -156
- package/.claude/commands/pair/modes.md +0 -122
- package/.claude/commands/pair/session.md +0 -124
- package/.claude/commands/sparc/analyzer.md +0 -35
- package/.claude/commands/sparc/architect.md +0 -36
- package/.claude/commands/sparc/ask.md +0 -56
- package/.claude/commands/sparc/batch-executor.md +0 -37
- package/.claude/commands/sparc/code.md +0 -48
- package/.claude/commands/sparc/coder.md +0 -37
- package/.claude/commands/sparc/debug.md +0 -42
- package/.claude/commands/sparc/debugger.md +0 -37
- package/.claude/commands/sparc/designer.md +0 -36
- package/.claude/commands/sparc/devops.md +0 -68
- package/.claude/commands/sparc/docs-writer.md +0 -39
- package/.claude/commands/sparc/documenter.md +0 -37
- package/.claude/commands/sparc/innovator.md +0 -37
- package/.claude/commands/sparc/integration.md +0 -42
- package/.claude/commands/sparc/mcp.md +0 -76
- package/.claude/commands/sparc/memory-manager.md +0 -57
- package/.claude/commands/sparc/optimizer.md +0 -37
- package/.claude/commands/sparc/orchestrator.md +0 -70
- package/.claude/commands/sparc/post-deployment-monitoring-mode.md +0 -42
- package/.claude/commands/sparc/refinement-optimization-mode.md +0 -42
- package/.claude/commands/sparc/researcher.md +0 -37
- package/.claude/commands/sparc/reviewer.md +0 -37
- package/.claude/commands/sparc/security-review.md +0 -39
- package/.claude/commands/sparc/sparc-modes.md +0 -120
- package/.claude/commands/sparc/sparc.md +0 -71
- package/.claude/commands/sparc/spec-pseudocode.md +0 -39
- package/.claude/commands/sparc/supabase-admin.md +0 -301
- package/.claude/commands/sparc/swarm-coordinator.md +0 -50
- package/.claude/commands/sparc/tdd.md +0 -37
- package/.claude/commands/sparc/tester.md +0 -37
- package/.claude/commands/sparc/tutorial.md +0 -38
- package/.claude/commands/sparc/workflow-manager.md +0 -37
- package/.claude/commands/sparc.md +0 -112
- package/.claude/commands/stream-chain/pipeline.md +0 -116
- package/.claude/commands/stream-chain/run.md +0 -156
- package/.claude/commands/swarm/README.md +0 -40
- package/.claude/commands/swarm/analysis.md +0 -73
- package/.claude/commands/swarm/development.md +0 -72
- package/.claude/commands/swarm/examples.md +0 -103
- package/.claude/commands/swarm/maintenance.md +0 -75
- package/.claude/commands/swarm/optimization.md +0 -84
- package/.claude/commands/swarm/research.md +0 -76
- package/.claude/commands/swarm/swarm.md +0 -79
- package/.claude/commands/swarm/testing.md +0 -80
- package/.claude/commands/tokens.md +0 -18
- package/.claude/commands/truth/start.md +0 -121
- package/.claude/commands/ts.md +0 -14
- package/.claude/commands/workflows/README.md +0 -65
- package/.claude/commands/workflows/development.md +0 -86
- package/.claude/commands/workflows/research.md +0 -89
- package/.claude/commands/workflows/workflow-create.md +0 -84
- package/.claude/commands/workflows/workflow-execute.md +0 -103
- package/.claude/commands/workflows/workflow-export.md +0 -90
- package/.claude/helpers/control-start.cjs +0 -184
- package/.claude/helpers/event-logger.cjs +0 -155
- package/.claude/helpers/extras-registry.json +0 -5141
- package/.claude/helpers/graphify-freshen.cjs +0 -140
- package/.claude/helpers/handlers/adr-draft-handler.cjs +0 -78
- package/.claude/helpers/handlers/agent-start-handler.cjs +0 -83
- package/.claude/helpers/handlers/budget-status-handler.cjs +0 -14
- package/.claude/helpers/handlers/capture-handler.cjs +0 -583
- package/.claude/helpers/handlers/compact-handler.cjs +0 -35
- package/.claude/helpers/handlers/edit-handler.cjs +0 -145
- package/.claude/helpers/handlers/gates-handler.cjs +0 -138
- package/.claude/helpers/handlers/graph-status-handler.cjs +0 -45
- package/.claude/helpers/handlers/loops-status-handler.cjs +0 -48
- package/.claude/helpers/handlers/route-handler.cjs +0 -381
- package/.claude/helpers/handlers/session-handler.cjs +0 -234
- package/.claude/helpers/handlers/session-restore-handler.cjs +0 -375
- package/.claude/helpers/handlers/stats-handler.cjs +0 -14
- package/.claude/helpers/handlers/task-handler.cjs +0 -206
- package/.claude/helpers/hook-handler.cjs +0 -765
- package/.claude/helpers/intelligence.cjs +0 -338
- package/.claude/helpers/learning-service.mjs +0 -61
- package/.claude/helpers/loop-tracker.cjs +0 -119
- package/.claude/helpers/mastermind-activate.cjs +0 -35
- package/.claude/helpers/memory-palace.cjs +0 -461
- package/.claude/helpers/memory.cjs +0 -193
- package/.claude/helpers/metrics-db.mjs +0 -87
- package/.claude/helpers/monolean-activate.cjs +0 -30
- package/.claude/helpers/monolean-config.cjs +0 -76
- package/.claude/helpers/monolean-instructions.cjs +0 -109
- package/.claude/helpers/monolean-propagate.cjs +0 -13
- package/.claude/helpers/monolean-tracker.cjs +0 -18
- package/.claude/helpers/router.cjs +0 -364
- package/.claude/helpers/session.cjs +0 -140
- package/.claude/helpers/skill-registry.json +0 -1043
- package/.claude/helpers/statusline.cjs +0 -1344
- package/.claude/helpers/toggle-statusline.cjs +0 -73
- package/.claude/helpers/token-tracker.cjs +0 -934
- package/.claude/helpers/utils/micro-agents.cjs +0 -354
- package/.claude/helpers/utils/monograph.cjs +0 -480
- package/.claude/helpers/utils/telemetry.cjs +0 -146
- package/.claude/mcp.json +0 -3
- package/.claude/scheduled_tasks.lock +0 -1
- package/.claude/settings.json +0 -475
- package/.claude/skills/.monomind/data/ranked-context.json +0 -5
- package/.claude/skills/.monomind/sessions/current.json +0 -13
- package/.claude/skills/.monomind/sessions/session-1777829336455.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777831614725.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777832095857.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777839814183.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777841847131.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777843309463.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777880867159.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777881884593.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777884090471.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777884808221.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777885672155.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777886852818.json +0 -15
- package/.claude/skills/.monomind/sessions/session-1777896532690.json +0 -15
- package/.claude/skills/agent-browser-testing/SKILL.md +0 -964
- package/.claude/skills/agentic-jujutsu/SKILL.md +0 -645
- package/.claude/skills/github-issue-triage/SKILL.md +0 -354
- package/.claude/skills/github-repo-recap/SKILL.md +0 -207
- package/.claude/skills/hive-mind-advanced/SKILL.md +0 -709
- package/.claude/skills/hooks-automation/SKILL.md +0 -1193
- package/.claude/skills/mastermind-skills/_agent-select.md +0 -132
- package/.claude/skills/mastermind-skills/_delegation.md +0 -83
- package/.claude/skills/mastermind-skills/_intake.md +0 -83
- package/.claude/skills/mastermind-skills/_protocol.md +0 -404
- package/.claude/skills/mastermind-skills/_repeat.md +0 -171
- package/.claude/skills/mastermind-skills/access.md +0 -236
- package/.claude/skills/mastermind-skills/activity.md +0 -191
- package/.claude/skills/mastermind-skills/adapter-manager.md +0 -259
- package/.claude/skills/mastermind-skills/adapters.md +0 -204
- package/.claude/skills/mastermind-skills/agent-detail.md +0 -242
- package/.claude/skills/mastermind-skills/agents.md +0 -178
- package/.claude/skills/mastermind-skills/approval-detail.md +0 -259
- package/.claude/skills/mastermind-skills/approve.md +0 -188
- package/.claude/skills/mastermind-skills/architect.md +0 -862
- package/.claude/skills/mastermind-skills/autodev.md +0 -360
- package/.claude/skills/mastermind-skills/backup.md +0 -197
- package/.claude/skills/mastermind-skills/bootstrap.md +0 -190
- package/.claude/skills/mastermind-skills/budgets.md +0 -237
- package/.claude/skills/mastermind-skills/build.md +0 -170
- package/.claude/skills/mastermind-skills/code-quality-reviewer-prompt.md +0 -60
- package/.claude/skills/mastermind-skills/companies.md +0 -256
- package/.claude/skills/mastermind-skills/content.md +0 -197
- package/.claude/skills/mastermind-skills/costs.md +0 -151
- package/.claude/skills/mastermind-skills/createorg.md +0 -862
- package/.claude/skills/mastermind-skills/debug.md +0 -232
- package/.claude/skills/mastermind-skills/design.md +0 -189
- package/.claude/skills/mastermind-skills/diagnose.md +0 -249
- package/.claude/skills/mastermind-skills/env.md +0 -198
- package/.claude/skills/mastermind-skills/environments.md +0 -250
- package/.claude/skills/mastermind-skills/execute.md +0 -104
- package/.claude/skills/mastermind-skills/export.md +0 -333
- package/.claude/skills/mastermind-skills/finance.md +0 -166
- package/.claude/skills/mastermind-skills/finish.md +0 -251
- package/.claude/skills/mastermind-skills/goal-detail.md +0 -255
- package/.claude/skills/mastermind-skills/goals.md +0 -149
- package/.claude/skills/mastermind-skills/heartbeat.md +0 -164
- package/.claude/skills/mastermind-skills/idea.md +0 -1142
- package/.claude/skills/mastermind-skills/implementer-prompt.md +0 -109
- package/.claude/skills/mastermind-skills/import.md +0 -281
- package/.claude/skills/mastermind-skills/inbox.md +0 -214
- package/.claude/skills/mastermind-skills/instance-settings.md +0 -315
- package/.claude/skills/mastermind-skills/instance.md +0 -233
- package/.claude/skills/mastermind-skills/invite-landing.md +0 -227
- package/.claude/skills/mastermind-skills/invites.md +0 -254
- package/.claude/skills/mastermind-skills/issue-detail.md +0 -291
- package/.claude/skills/mastermind-skills/issues.md +0 -235
- package/.claude/skills/mastermind-skills/join-queue.md +0 -170
- package/.claude/skills/mastermind-skills/liveness.md +0 -392
- package/.claude/skills/mastermind-skills/marketing.md +0 -228
- package/.claude/skills/mastermind-skills/memory.md +0 -321
- package/.claude/skills/mastermind-skills/monitor.md +0 -1284
- package/.claude/skills/mastermind-skills/monotask.md +0 -350
- package/.claude/skills/mastermind-skills/my-issues.md +0 -146
- package/.claude/skills/mastermind-skills/new-agent.md +0 -241
- package/.claude/skills/mastermind-skills/ops.md +0 -168
- package/.claude/skills/mastermind-skills/org-chart.md +0 -209
- package/.claude/skills/mastermind-skills/org-settings.md +0 -254
- package/.claude/skills/mastermind-skills/orgs.md +0 -98
- package/.claude/skills/mastermind-skills/orgstatus.md +0 -194
- package/.claude/skills/mastermind-skills/plan-to-tasks.md +0 -136
- package/.claude/skills/mastermind-skills/plan.md +0 -198
- package/.claude/skills/mastermind-skills/plugin-manager.md +0 -241
- package/.claude/skills/mastermind-skills/plugin-settings.md +0 -273
- package/.claude/skills/mastermind-skills/plugins.md +0 -190
- package/.claude/skills/mastermind-skills/profile.md +0 -187
- package/.claude/skills/mastermind-skills/project-detail.md +0 -249
- package/.claude/skills/mastermind-skills/project-workspace.md +0 -244
- package/.claude/skills/mastermind-skills/projects.md +0 -164
- package/.claude/skills/mastermind-skills/receive-review.md +0 -213
- package/.claude/skills/mastermind-skills/references/copywriting-frameworks.md +0 -181
- package/.claude/skills/mastermind-skills/references/persuasion-psychology.md +0 -158
- package/.claude/skills/mastermind-skills/release.md +0 -168
- package/.claude/skills/mastermind-skills/research.md +0 -168
- package/.claude/skills/mastermind-skills/review.md +0 -233
- package/.claude/skills/mastermind-skills/routine-detail.md +0 -253
- package/.claude/skills/mastermind-skills/routines.md +0 -203
- package/.claude/skills/mastermind-skills/runorg.md +0 -714
- package/.claude/skills/mastermind-skills/sales.md +0 -170
- package/.claude/skills/mastermind-skills/search.md +0 -186
- package/.claude/skills/mastermind-skills/secrets.md +0 -199
- package/.claude/skills/mastermind-skills/skill-builder.md +0 -274
- package/.claude/skills/mastermind-skills/skills.md +0 -156
- package/.claude/skills/mastermind-skills/spec-reviewer-prompt.md +0 -63
- package/.claude/skills/mastermind-skills/stoporg.md +0 -138
- package/.claude/skills/mastermind-skills/taskdev.md +0 -307
- package/.claude/skills/mastermind-skills/tasks.md +0 -149
- package/.claude/skills/mastermind-skills/tdd.md +0 -394
- package/.claude/skills/mastermind-skills/techport.md +0 -777
- package/.claude/skills/mastermind-skills/threads.md +0 -259
- package/.claude/skills/mastermind-skills/tree-control.md +0 -250
- package/.claude/skills/mastermind-skills/verify.md +0 -196
- package/.claude/skills/mastermind-skills/wiki.md +0 -314
- package/.claude/skills/mastermind-skills/workspace-detail.md +0 -317
- package/.claude/skills/mastermind-skills/workspaces.md +0 -261
- package/.claude/skills/mastermind-skills/worktree.md +0 -215
- package/.claude/skills/monodesign/SKILL.md +0 -333
- package/.claude/skills/monodesign/adapt.md +0 -53
- package/.claude/skills/monodesign/agents/monodesign-asset-producer.md +0 -100
- package/.claude/skills/monodesign/animate.md +0 -65
- package/.claude/skills/monodesign/audit.md +0 -89
- package/.claude/skills/monodesign/bolder.md +0 -50
- package/.claude/skills/monodesign/clarify.md +0 -64
- package/.claude/skills/monodesign/colorize.md +0 -68
- package/.claude/skills/monodesign/craft.md +0 -51
- package/.claude/skills/monodesign/critique.md +0 -66
- package/.claude/skills/monodesign/delight.md +0 -47
- package/.claude/skills/monodesign/distill.md +0 -56
- package/.claude/skills/monodesign/document.md +0 -83
- package/.claude/skills/monodesign/extract.md +0 -74
- package/.claude/skills/monodesign/harden.md +0 -65
- package/.claude/skills/monodesign/live.md +0 -59
- package/.claude/skills/monodesign/onboard.md +0 -50
- package/.claude/skills/monodesign/optimize.md +0 -64
- package/.claude/skills/monodesign/overdrive.md +0 -56
- package/.claude/skills/monodesign/polish.md +0 -68
- package/.claude/skills/monodesign/quieter.md +0 -57
- package/.claude/skills/monodesign/reference/adapt.md +0 -190
- package/.claude/skills/monodesign/reference/animate.md +0 -175
- package/.claude/skills/monodesign/reference/antipatterns-catalog.md +0 -359
- package/.claude/skills/monodesign/reference/audit.md +0 -133
- package/.claude/skills/monodesign/reference/bolder.md +0 -113
- package/.claude/skills/monodesign/reference/brand-workflow.md +0 -180
- package/.claude/skills/monodesign/reference/brand.md +0 -114
- package/.claude/skills/monodesign/reference/clarify.md +0 -174
- package/.claude/skills/monodesign/reference/codex.md +0 -107
- package/.claude/skills/monodesign/reference/cognitive-load.md +0 -106
- package/.claude/skills/monodesign/reference/color-and-contrast.md +0 -105
- package/.claude/skills/monodesign/reference/colorize.md +0 -154
- package/.claude/skills/monodesign/reference/component-specs.md +0 -260
- package/.claude/skills/monodesign/reference/component-states.md +0 -274
- package/.claude/skills/monodesign/reference/component-system.md +0 -358
- package/.claude/skills/monodesign/reference/copy-formulas.md +0 -160
- package/.claude/skills/monodesign/reference/craft.md +0 -196
- package/.claude/skills/monodesign/reference/critique.md +0 -213
- package/.claude/skills/monodesign/reference/delight.md +0 -302
- package/.claude/skills/monodesign/reference/design-principles.md +0 -246
- package/.claude/skills/monodesign/reference/distill.md +0 -111
- package/.claude/skills/monodesign/reference/document.md +0 -427
- package/.claude/skills/monodesign/reference/extract.md +0 -69
- package/.claude/skills/monodesign/reference/harden.md +0 -347
- package/.claude/skills/monodesign/reference/heuristics-scoring.md +0 -234
- package/.claude/skills/monodesign/reference/hooks.md +0 -99
- package/.claude/skills/monodesign/reference/image-prompts.md +0 -130
- package/.claude/skills/monodesign/reference/interaction-design.md +0 -195
- package/.claude/skills/monodesign/reference/layout.md +0 -141
- package/.claude/skills/monodesign/reference/live.md +0 -622
- package/.claude/skills/monodesign/reference/motion-design.md +0 -109
- package/.claude/skills/monodesign/reference/onboard.md +0 -234
- package/.claude/skills/monodesign/reference/optimize.md +0 -258
- package/.claude/skills/monodesign/reference/overdrive.md +0 -130
- package/.claude/skills/monodesign/reference/personas.md +0 -179
- package/.claude/skills/monodesign/reference/polish.md +0 -233
- package/.claude/skills/monodesign/reference/pre-delivery-checklist.md +0 -108
- package/.claude/skills/monodesign/reference/product.md +0 -62
- package/.claude/skills/monodesign/reference/quieter.md +0 -99
- package/.claude/skills/monodesign/reference/responsive-design.md +0 -114
- package/.claude/skills/monodesign/reference/shape.md +0 -151
- package/.claude/skills/monodesign/reference/spatial-design.md +0 -100
- package/.claude/skills/monodesign/reference/teach.md +0 -156
- package/.claude/skills/monodesign/reference/token-architecture.md +0 -222
- package/.claude/skills/monodesign/reference/typeset.md +0 -124
- package/.claude/skills/monodesign/reference/typography.md +0 -159
- package/.claude/skills/monodesign/reference/ux-research.md +0 -143
- package/.claude/skills/monodesign/reference/ux-rules.md +0 -211
- package/.claude/skills/monodesign/reference/ux-writing.md +0 -107
- package/.claude/skills/monodesign/shape.md +0 -71
- package/.claude/skills/monodesign/teach.md +0 -69
- package/.claude/skills/monodesign/typeset.md +0 -59
- package/.claude/skills/monolean/SKILL.md +0 -118
- package/.claude/skills/monolean-audit/SKILL.md +0 -41
- package/.claude/skills/monolean-debt/SKILL.md +0 -46
- package/.claude/skills/monolean-help/SKILL.md +0 -60
- package/.claude/skills/monolean-review/SKILL.md +0 -57
- package/.claude/skills/monomind/.monomind/registry.json +0 -6
- package/.claude/skills/monomind/browse-agentcore.md +0 -115
- package/.claude/skills/monomind/browse-electron.md +0 -188
- package/.claude/skills/monomind/browse-qa.md +0 -228
- package/.claude/skills/monomind/browse-references/authentication.md +0 -161
- package/.claude/skills/monomind/browse-references/trust-boundaries.md +0 -40
- package/.claude/skills/monomind/browse-references/video-recording.md +0 -83
- package/.claude/skills/monomind/browse-slack.md +0 -188
- package/.claude/skills/monomind/browse-vercel.md +0 -239
- package/.claude/skills/monomind/browse.md +0 -724
- package/.claude/skills/monomotion/SKILL.md +0 -145
- package/.claude/skills/monomotion/rules/api-control.md +0 -139
- package/.claude/skills/monomotion/rules/effects.md +0 -109
- package/.claude/skills/monomotion/rules/integration.md +0 -140
- package/.claude/skills/monomotion/rules/scroll.md +0 -131
- package/.claude/skills/monomotion/rules/sequencing.md +0 -105
- package/.claude/skills/monomotion/rules/svg.md +0 -101
- package/.claude/skills/monomotion/rules/text.md +0 -119
- package/.claude/skills/pair-programming/SKILL.md +0 -1202
- package/.claude/skills/performance-analysis/SKILL.md +0 -560
- package/.claude/skills/skill-builder/SKILL.md +0 -910
- package/.claude/skills/sparc-methodology/SKILL.md +0 -950
- package/.claude/skills/specialagent/SKILL.md +0 -208
- package/.claude/skills/stop-slop/SKILL.md +0 -67
- package/.claude/skills/stop-slop/references/examples.md +0 -61
- package/.claude/skills/stop-slop/references/phrases.md +0 -130
- package/.claude/skills/stop-slop/references/structures.md +0 -136
- package/.claude/skills/swarm-advanced/SKILL.md +0 -937
- package/.claude/skills/swarm-orchestration/SKILL.md +0 -179
- package/.claude/skills/verification-quality/SKILL.md +0 -674
- package/.claude/workflows/feature-dev.yaml +0 -18
- package/.claude/workflows/security-audit.yaml +0 -10
- package/packages/@monomind/cli/.claude/agents/generated/case-analyst.md +0 -50
- package/packages/@monomind/cli/.claude/agents/generated/channel-intelligence-director.md +0 -87
- package/packages/@monomind/cli/.claude/agents/generated/chief-growth-officer.md +0 -88
- package/packages/@monomind/cli/.claude/agents/generated/churn-analyst.md +0 -53
- package/packages/@monomind/cli/.claude/agents/generated/code-reviewer.md +0 -55
- package/packages/@monomind/cli/.claude/agents/generated/code-validator.md +0 -57
- package/packages/@monomind/cli/.claude/agents/generated/complexity-scanner.md +0 -56
- package/packages/@monomind/cli/.claude/agents/generated/content-seo-strategist.md +0 -90
- package/packages/@monomind/cli/.claude/agents/generated/copy-editor.md +0 -45
- package/packages/@monomind/cli/.claude/agents/generated/court-reporter.md +0 -50
- package/packages/@monomind/cli/.claude/agents/generated/defender.md +0 -51
- package/packages/@monomind/cli/.claude/agents/generated/devbot-orchestrator.md +0 -58
- package/packages/@monomind/cli/.claude/agents/generated/devbot-planner.md +0 -63
- package/packages/@monomind/cli/.claude/agents/generated/developer-community-strategist.md +0 -91
- package/packages/@monomind/cli/.claude/agents/generated/editor-in-chief.md +0 -45
- package/packages/@monomind/cli/.claude/agents/generated/fact-checker.md +0 -45
- package/packages/@monomind/cli/.claude/agents/generated/impact-assessor.md +0 -54
- package/packages/@monomind/cli/.claude/agents/generated/judge.md +0 -51
- package/packages/@monomind/cli/.claude/agents/generated/outreach-partnership-strategist.md +0 -90
- package/packages/@monomind/cli/.claude/agents/generated/prosecutor.md +0 -51
- package/packages/@monomind/cli/.claude/agents/generated/reporter.md +0 -45
- package/packages/@monomind/cli/.claude/agents/generated/social-media-strategist.md +0 -91
- package/packages/@monomind/cli/.claude/agents/generated/video-visual-strategist.md +0 -90
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/boss.md +0 -113
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/critic-architect.md +0 -132
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/git-manager.md +0 -145
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/idea-generator.md +0 -95
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/implementer.md +0 -112
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/integration-planner.md +0 -112
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/source-analyst.md +0 -103
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/target-analyst.md +0 -118
- package/packages/@monomind/cli/.claude/agents/reengineer-squad/tester.md +0 -105
- package/packages/@monomind/cli/.claude/agents/sparc/architecture.md +0 -453
- package/packages/@monomind/cli/.claude/agents/sparc/pseudocode.md +0 -299
- package/packages/@monomind/cli/.claude/agents/sparc/refinement.md +0 -504
- package/packages/@monomind/cli/.claude/agents/sparc/specification.md +0 -258
- package/packages/@monomind/cli/.claude/agents/templates/implementer-sparc-coder.md +0 -231
- package/packages/@monomind/cli/.claude/commands/sparc/analyzer.md +0 -35
- package/packages/@monomind/cli/.claude/commands/sparc/architect.md +0 -36
- package/packages/@monomind/cli/.claude/commands/sparc/ask.md +0 -56
- package/packages/@monomind/cli/.claude/commands/sparc/batch-executor.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/code.md +0 -48
- package/packages/@monomind/cli/.claude/commands/sparc/coder.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/debug.md +0 -42
- package/packages/@monomind/cli/.claude/commands/sparc/debugger.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/designer.md +0 -36
- package/packages/@monomind/cli/.claude/commands/sparc/devops.md +0 -68
- package/packages/@monomind/cli/.claude/commands/sparc/docs-writer.md +0 -39
- package/packages/@monomind/cli/.claude/commands/sparc/documenter.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/innovator.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/integration.md +0 -42
- package/packages/@monomind/cli/.claude/commands/sparc/mcp.md +0 -76
- package/packages/@monomind/cli/.claude/commands/sparc/memory-manager.md +0 -57
- package/packages/@monomind/cli/.claude/commands/sparc/optimizer.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/orchestrator.md +0 -70
- package/packages/@monomind/cli/.claude/commands/sparc/post-deployment-monitoring-mode.md +0 -42
- package/packages/@monomind/cli/.claude/commands/sparc/refinement-optimization-mode.md +0 -42
- package/packages/@monomind/cli/.claude/commands/sparc/researcher.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/reviewer.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/security-review.md +0 -39
- package/packages/@monomind/cli/.claude/commands/sparc/sparc-modes.md +0 -120
- package/packages/@monomind/cli/.claude/commands/sparc/sparc.md +0 -71
- package/packages/@monomind/cli/.claude/commands/sparc/spec-pseudocode.md +0 -39
- package/packages/@monomind/cli/.claude/commands/sparc/supabase-admin.md +0 -301
- package/packages/@monomind/cli/.claude/commands/sparc/swarm-coordinator.md +0 -50
- package/packages/@monomind/cli/.claude/commands/sparc/tdd.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/tester.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc/tutorial.md +0 -38
- package/packages/@monomind/cli/.claude/commands/sparc/workflow-manager.md +0 -37
- package/packages/@monomind/cli/.claude/commands/sparc.md +0 -112
- package/packages/@monomind/cli/.claude/skills/sparc-methodology/SKILL.md +0 -950
- package/packages/@monomind/cli/dist/src/capabilities/enrichment.d.ts +0 -44
- package/packages/@monomind/cli/dist/src/capabilities/enrichment.js +0 -141
- package/packages/@monomind/cli/dist/src/commands/analyze-boundaries.d.ts +0 -14
- package/packages/@monomind/cli/dist/src/commands/analyze-boundaries.js +0 -295
- package/packages/@monomind/cli/dist/src/commands/analyze-graph.d.ts +0 -14
- package/packages/@monomind/cli/dist/src/commands/analyze-graph.js +0 -304
- package/packages/@monomind/cli/dist/src/commands/claims.d.ts +0 -10
- package/packages/@monomind/cli/dist/src/commands/claims.js +0 -650
- package/packages/@monomind/cli/dist/src/commands/daemon.d.ts +0 -8
- package/packages/@monomind/cli/dist/src/commands/daemon.js +0 -681
- package/packages/@monomind/cli/dist/src/commands/enrich.d.ts +0 -10
- package/packages/@monomind/cli/dist/src/commands/enrich.js +0 -58
- package/packages/@monomind/cli/dist/src/commands/issues.d.ts +0 -21
- package/packages/@monomind/cli/dist/src/commands/issues.js +0 -575
- package/packages/@monomind/cli/dist/src/commands/workflow.d.ts +0 -8
- package/packages/@monomind/cli/dist/src/commands/workflow.js +0 -575
- package/packages/@monomind/cli/dist/src/mcp-tools/workflow-tools.d.ts +0 -8
- package/packages/@monomind/cli/dist/src/mcp-tools/workflow-tools.js +0 -717
- package/packages/@monomind/cli/dist/src/services/claim-service.d.ts +0 -198
- package/packages/@monomind/cli/dist/src/services/claim-service.js +0 -890
- package/packages/@monomind/cli/dist/src/services/headless-worker-executor.d.ts +0 -311
- package/packages/@monomind/cli/dist/src/services/headless-worker-executor.js +0 -1183
- package/packages/@monomind/cli/dist/src/services/worker-daemon.d.ts +0 -230
- package/packages/@monomind/cli/dist/src/services/worker-daemon.js +0 -1350
- package/packages/@monomind/cli/dist/src/ui/.monomind/capture/active-run.json +0 -1
- package/packages/@monomind/guidance/README.md +0 -87
- package/packages/@monomind/guidance/dist/adversarial.d.ts +0 -284
- package/packages/@monomind/guidance/dist/adversarial.js +0 -572
- package/packages/@monomind/guidance/dist/analyzer.d.ts +0 -530
- package/packages/@monomind/guidance/dist/analyzer.js +0 -2518
- package/packages/@monomind/guidance/dist/artifacts.d.ts +0 -283
- package/packages/@monomind/guidance/dist/artifacts.js +0 -356
- package/packages/@monomind/guidance/dist/authority.d.ts +0 -290
- package/packages/@monomind/guidance/dist/authority.js +0 -558
- package/packages/@monomind/guidance/dist/capabilities.d.ts +0 -209
- package/packages/@monomind/guidance/dist/capabilities.js +0 -485
- package/packages/@monomind/guidance/dist/coherence.d.ts +0 -233
- package/packages/@monomind/guidance/dist/coherence.js +0 -378
- package/packages/@monomind/guidance/dist/compiler.d.ts +0 -87
- package/packages/@monomind/guidance/dist/compiler.js +0 -425
- package/packages/@monomind/guidance/dist/conformance-kit.d.ts +0 -225
- package/packages/@monomind/guidance/dist/conformance-kit.js +0 -629
- package/packages/@monomind/guidance/dist/continue-gate.d.ts +0 -214
- package/packages/@monomind/guidance/dist/continue-gate.js +0 -353
- package/packages/@monomind/guidance/dist/crypto-utils.d.ts +0 -17
- package/packages/@monomind/guidance/dist/crypto-utils.js +0 -24
- package/packages/@monomind/guidance/dist/evolution.d.ts +0 -282
- package/packages/@monomind/guidance/dist/evolution.js +0 -500
- package/packages/@monomind/guidance/dist/gates.d.ts +0 -79
- package/packages/@monomind/guidance/dist/gates.js +0 -302
- package/packages/@monomind/guidance/dist/gateway.d.ts +0 -206
- package/packages/@monomind/guidance/dist/gateway.js +0 -452
- package/packages/@monomind/guidance/dist/generators.d.ts +0 -153
- package/packages/@monomind/guidance/dist/generators.js +0 -682
- package/packages/@monomind/guidance/dist/headless.d.ts +0 -177
- package/packages/@monomind/guidance/dist/headless.js +0 -342
- package/packages/@monomind/guidance/dist/hooks.d.ts +0 -109
- package/packages/@monomind/guidance/dist/hooks.js +0 -347
- package/packages/@monomind/guidance/dist/index.d.ts +0 -203
- package/packages/@monomind/guidance/dist/index.js +0 -320
- package/packages/@monomind/guidance/dist/ledger.d.ts +0 -162
- package/packages/@monomind/guidance/dist/ledger.js +0 -375
- package/packages/@monomind/guidance/dist/manifest-validator.d.ts +0 -289
- package/packages/@monomind/guidance/dist/manifest-validator.js +0 -838
- package/packages/@monomind/guidance/dist/memory-gate.d.ts +0 -222
- package/packages/@monomind/guidance/dist/memory-gate.js +0 -382
- package/packages/@monomind/guidance/dist/meta-governance.d.ts +0 -265
- package/packages/@monomind/guidance/dist/meta-governance.js +0 -348
- package/packages/@monomind/guidance/dist/optimizer.d.ts +0 -104
- package/packages/@monomind/guidance/dist/optimizer.js +0 -329
- package/packages/@monomind/guidance/dist/persistence.d.ts +0 -189
- package/packages/@monomind/guidance/dist/persistence.js +0 -464
- package/packages/@monomind/guidance/dist/proof.d.ts +0 -185
- package/packages/@monomind/guidance/dist/proof.js +0 -238
- package/packages/@monomind/guidance/dist/retriever.d.ts +0 -116
- package/packages/@monomind/guidance/dist/retriever.js +0 -394
- package/packages/@monomind/guidance/dist/ruvbot-integration.d.ts +0 -370
- package/packages/@monomind/guidance/dist/ruvbot-integration.js +0 -738
- package/packages/@monomind/guidance/dist/temporal.d.ts +0 -428
- package/packages/@monomind/guidance/dist/temporal.js +0 -660
- package/packages/@monomind/guidance/dist/trust.d.ts +0 -283
- package/packages/@monomind/guidance/dist/trust.js +0 -474
- package/packages/@monomind/guidance/dist/truth-anchors.d.ts +0 -276
- package/packages/@monomind/guidance/dist/truth-anchors.js +0 -488
- package/packages/@monomind/guidance/dist/types.d.ts +0 -378
- package/packages/@monomind/guidance/dist/types.js +0 -10
- package/packages/@monomind/guidance/dist/uncertainty.d.ts +0 -372
- package/packages/@monomind/guidance/dist/uncertainty.js +0 -619
- package/packages/@monomind/guidance/dist/wasm-kernel.d.ts +0 -48
- package/packages/@monomind/guidance/dist/wasm-kernel.js +0 -158
- package/packages/@monomind/guidance/package.json +0 -119
|
@@ -1,1043 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_meta": {
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"description": "Registry of all available skills and agents. Read by router.cjs to suggest the best skill when a task is routed.",
|
|
5
|
-
"format": "Each entry: { skill, invoke, description, keywords[], category }"
|
|
6
|
-
},
|
|
7
|
-
"skills": [
|
|
8
|
-
{
|
|
9
|
-
"skill": "code-review:code-review",
|
|
10
|
-
"invoke": "Skill(\"code-review:code-review\")",
|
|
11
|
-
"description": "Comprehensive code review — correctness, security, performance, maintainability",
|
|
12
|
-
"keywords": [
|
|
13
|
-
"review",
|
|
14
|
-
"audit",
|
|
15
|
-
"check",
|
|
16
|
-
"quality",
|
|
17
|
-
"best practices",
|
|
18
|
-
"code review",
|
|
19
|
-
"feedback"
|
|
20
|
-
],
|
|
21
|
-
"category": "review",
|
|
22
|
-
"primaryAgent": "reviewer"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"skill": "feature-dev:feature-dev",
|
|
26
|
-
"invoke": "Skill(\"feature-dev:feature-dev\")",
|
|
27
|
-
"description": "Full feature development pipeline — explore, architect, implement, test, review",
|
|
28
|
-
"keywords": [
|
|
29
|
-
"feature",
|
|
30
|
-
"implement",
|
|
31
|
-
"build",
|
|
32
|
-
"new functionality",
|
|
33
|
-
"add feature",
|
|
34
|
-
"develop"
|
|
35
|
-
],
|
|
36
|
-
"category": "implementation",
|
|
37
|
-
"primaryAgent": "coder"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"skill": "sparc:tdd",
|
|
41
|
-
"invoke": "Skill(\"sparc:tdd\")",
|
|
42
|
-
"description": "Test-driven development — write failing tests first, then implementation",
|
|
43
|
-
"keywords": [
|
|
44
|
-
"tdd",
|
|
45
|
-
"test driven",
|
|
46
|
-
"tests first",
|
|
47
|
-
"unit test",
|
|
48
|
-
"spec",
|
|
49
|
-
"red green refactor"
|
|
50
|
-
],
|
|
51
|
-
"category": "testing",
|
|
52
|
-
"primaryAgent": "tester"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"skill": "agent-browser-testing",
|
|
56
|
-
"invoke": "Skill(\"agent-browser-testing\")",
|
|
57
|
-
"description": "Comprehensive UI QA and browser automation via monomind browse CDP client — 7-phase test protocol: discovery, golden path, edge cases, responsive, accessibility, network/errors, performance vitals. Full command set: snapshot, click, fill, wait, eval, network intercept, har, trace, vitals, record, device emulation, storage, cookies, tabs, frames, dialogs.",
|
|
58
|
-
"keywords": [
|
|
59
|
-
"ui test",
|
|
60
|
-
"ui testing",
|
|
61
|
-
"browser test",
|
|
62
|
-
"browser testing",
|
|
63
|
-
"test the ui",
|
|
64
|
-
"test the frontend",
|
|
65
|
-
"test this page",
|
|
66
|
-
"test the app",
|
|
67
|
-
"visual test",
|
|
68
|
-
"frontend test",
|
|
69
|
-
"end to end test",
|
|
70
|
-
"e2e test",
|
|
71
|
-
"walk through",
|
|
72
|
-
"walkthrough",
|
|
73
|
-
"QA this",
|
|
74
|
-
"qa",
|
|
75
|
-
"quality assurance",
|
|
76
|
-
"comprehensive qa",
|
|
77
|
-
"agent-browser-testing",
|
|
78
|
-
"crawl",
|
|
79
|
-
"scrape",
|
|
80
|
-
"browse the website",
|
|
81
|
-
"go to the website",
|
|
82
|
-
"open the website",
|
|
83
|
-
"navigate to",
|
|
84
|
-
"click on the website",
|
|
85
|
-
"automate the browser",
|
|
86
|
-
"fill out the form",
|
|
87
|
-
"log into",
|
|
88
|
-
"sign in to",
|
|
89
|
-
"submit the form",
|
|
90
|
-
"monobrowse",
|
|
91
|
-
"mono browse",
|
|
92
|
-
"check the ui",
|
|
93
|
-
"check the page",
|
|
94
|
-
"check the frontend",
|
|
95
|
-
"performance audit",
|
|
96
|
-
"web vitals",
|
|
97
|
-
"accessibility test",
|
|
98
|
-
"responsive test",
|
|
99
|
-
"mobile test",
|
|
100
|
-
"network intercept",
|
|
101
|
-
"har recording",
|
|
102
|
-
"screenshot",
|
|
103
|
-
"take a screenshot",
|
|
104
|
-
"record the browser"
|
|
105
|
-
],
|
|
106
|
-
"category": "testing",
|
|
107
|
-
"primaryAgent": "agent-browser-testing"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"skill": "sparc:architect",
|
|
111
|
-
"invoke": "Skill(\"sparc:architect\")",
|
|
112
|
-
"description": "System architecture design — patterns, DDD, scalability, API design",
|
|
113
|
-
"keywords": [
|
|
114
|
-
"architect",
|
|
115
|
-
"design",
|
|
116
|
-
"system design",
|
|
117
|
-
"structure",
|
|
118
|
-
"domain",
|
|
119
|
-
"ddd",
|
|
120
|
-
"patterns",
|
|
121
|
-
"scalability"
|
|
122
|
-
],
|
|
123
|
-
"category": "architecture",
|
|
124
|
-
"primaryAgent": "architect"
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
"skill": "sparc:security-review",
|
|
128
|
-
"invoke": "Skill(\"sparc:security-review\")",
|
|
129
|
-
"description": "Security analysis — vulnerabilities, CVEs, threat modeling, input validation",
|
|
130
|
-
"keywords": [
|
|
131
|
-
"security",
|
|
132
|
-
"vulnerability",
|
|
133
|
-
"cve",
|
|
134
|
-
"threat",
|
|
135
|
-
"injection",
|
|
136
|
-
"xss",
|
|
137
|
-
"auth",
|
|
138
|
-
"exploit"
|
|
139
|
-
],
|
|
140
|
-
"category": "security",
|
|
141
|
-
"primaryAgent": "reviewer"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"skill": "sparc:debugger",
|
|
145
|
-
"invoke": "Skill(\"sparc:debugger\")",
|
|
146
|
-
"description": "Systematic debugging — root cause analysis, error tracing, fix verification",
|
|
147
|
-
"keywords": [
|
|
148
|
-
"debug",
|
|
149
|
-
"bug",
|
|
150
|
-
"error",
|
|
151
|
-
"crash",
|
|
152
|
-
"fix",
|
|
153
|
-
"broken",
|
|
154
|
-
"not working",
|
|
155
|
-
"exception",
|
|
156
|
-
"trace"
|
|
157
|
-
],
|
|
158
|
-
"category": "debugging",
|
|
159
|
-
"primaryAgent": "coder"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
"skill": "sparc:optimizer",
|
|
163
|
-
"invoke": "Skill(\"sparc:optimizer\")",
|
|
164
|
-
"description": "Performance optimization — profiling, bottlenecks, memory, speed improvements",
|
|
165
|
-
"keywords": [
|
|
166
|
-
"optimize",
|
|
167
|
-
"performance",
|
|
168
|
-
"slow",
|
|
169
|
-
"speed",
|
|
170
|
-
"memory",
|
|
171
|
-
"bottleneck",
|
|
172
|
-
"profile",
|
|
173
|
-
"latency"
|
|
174
|
-
],
|
|
175
|
-
"category": "performance",
|
|
176
|
-
"primaryAgent": "coder"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"skill": "sparc:devops",
|
|
180
|
-
"invoke": "Skill(\"sparc:devops\")",
|
|
181
|
-
"description": "DevOps and deployment — CI/CD, Docker, infrastructure, pipelines",
|
|
182
|
-
"keywords": [
|
|
183
|
-
"deploy",
|
|
184
|
-
"ci",
|
|
185
|
-
"cd",
|
|
186
|
-
"docker",
|
|
187
|
-
"pipeline",
|
|
188
|
-
"infrastructure",
|
|
189
|
-
"kubernetes",
|
|
190
|
-
"build",
|
|
191
|
-
"release"
|
|
192
|
-
],
|
|
193
|
-
"category": "devops",
|
|
194
|
-
"primaryAgent": "devops"
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"skill": "sparc:documenter",
|
|
198
|
-
"invoke": "Skill(\"sparc:documenter\")",
|
|
199
|
-
"description": "Documentation generation — READMEs, API docs, architecture docs, inline comments",
|
|
200
|
-
"keywords": [
|
|
201
|
-
"document",
|
|
202
|
-
"docs",
|
|
203
|
-
"readme",
|
|
204
|
-
"api docs",
|
|
205
|
-
"explain",
|
|
206
|
-
"write documentation",
|
|
207
|
-
"comment"
|
|
208
|
-
],
|
|
209
|
-
"category": "documentation",
|
|
210
|
-
"primaryAgent": "researcher"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"skill": "sparc:researcher",
|
|
214
|
-
"invoke": "Skill(\"sparc:researcher\")",
|
|
215
|
-
"description": "Research and analysis — investigate, explore, gather information, summarize",
|
|
216
|
-
"keywords": [
|
|
217
|
-
"research",
|
|
218
|
-
"find",
|
|
219
|
-
"search",
|
|
220
|
-
"investigate",
|
|
221
|
-
"explore",
|
|
222
|
-
"analyse",
|
|
223
|
-
"understand",
|
|
224
|
-
"how does",
|
|
225
|
-
"what kind",
|
|
226
|
-
"what is",
|
|
227
|
-
"list",
|
|
228
|
-
"show me",
|
|
229
|
-
"available",
|
|
230
|
-
"skills",
|
|
231
|
-
"agents",
|
|
232
|
-
"capabilities"
|
|
233
|
-
],
|
|
234
|
-
"category": "research",
|
|
235
|
-
"primaryAgent": "researcher"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"skill": "sparc:spec-pseudocode",
|
|
239
|
-
"invoke": "Skill(\"sparc:spec-pseudocode\")",
|
|
240
|
-
"description": "Specification and pseudocode — clarify requirements, write specs, plan logic",
|
|
241
|
-
"keywords": [
|
|
242
|
-
"spec",
|
|
243
|
-
"specification",
|
|
244
|
-
"requirements",
|
|
245
|
-
"pseudocode",
|
|
246
|
-
"plan",
|
|
247
|
-
"design logic",
|
|
248
|
-
"clarify"
|
|
249
|
-
],
|
|
250
|
-
"category": "planning",
|
|
251
|
-
"primaryAgent": "architect"
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"skill": "sparc:refactor",
|
|
255
|
-
"invoke": "Skill(\"sparc:coder\")",
|
|
256
|
-
"description": "Refactoring — clean up code, extract functions, improve structure without changing behavior",
|
|
257
|
-
"keywords": [
|
|
258
|
-
"refactor",
|
|
259
|
-
"clean up",
|
|
260
|
-
"restructure",
|
|
261
|
-
"extract",
|
|
262
|
-
"simplify",
|
|
263
|
-
"technical debt",
|
|
264
|
-
"improve code"
|
|
265
|
-
],
|
|
266
|
-
"category": "implementation",
|
|
267
|
-
"primaryAgent": "coder"
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"skill": "github:code-review",
|
|
271
|
-
"invoke": "Skill(\"github:code-review\")",
|
|
272
|
-
"description": "GitHub PR code review — review pull requests, suggest improvements, approve/request changes",
|
|
273
|
-
"keywords": [
|
|
274
|
-
"pr review",
|
|
275
|
-
"pull request",
|
|
276
|
-
"github review",
|
|
277
|
-
"diff review",
|
|
278
|
-
"merge review"
|
|
279
|
-
],
|
|
280
|
-
"category": "github",
|
|
281
|
-
"primaryAgent": "reviewer"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"skill": "github:pr-manager",
|
|
285
|
-
"invoke": "Skill(\"github:pr-manager\")",
|
|
286
|
-
"description": "Pull request lifecycle — create, update, merge, manage GitHub PRs",
|
|
287
|
-
"keywords": [
|
|
288
|
-
"create pr",
|
|
289
|
-
"pull request",
|
|
290
|
-
"open pr",
|
|
291
|
-
"pr description",
|
|
292
|
-
"pr title",
|
|
293
|
-
"merge pr"
|
|
294
|
-
],
|
|
295
|
-
"category": "github",
|
|
296
|
-
"primaryAgent": "coder"
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"skill": "github:release-manager",
|
|
300
|
-
"invoke": "Skill(\"github:release-manager\")",
|
|
301
|
-
"description": "Release management — changelogs, versioning, GitHub releases, tags",
|
|
302
|
-
"keywords": [
|
|
303
|
-
"release",
|
|
304
|
-
"changelog",
|
|
305
|
-
"version",
|
|
306
|
-
"tag",
|
|
307
|
-
"publish",
|
|
308
|
-
"semver",
|
|
309
|
-
"bump version"
|
|
310
|
-
],
|
|
311
|
-
"category": "github",
|
|
312
|
-
"primaryAgent": "devops"
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
"skill": "github:workflow-automation",
|
|
316
|
-
"invoke": "Skill(\"github:workflow-automation\")",
|
|
317
|
-
"description": "GitHub Actions — create/modify CI/CD workflows, automate pipelines",
|
|
318
|
-
"keywords": [
|
|
319
|
-
"github actions",
|
|
320
|
-
"workflow",
|
|
321
|
-
"yml",
|
|
322
|
-
"yaml",
|
|
323
|
-
"action",
|
|
324
|
-
"ci/cd github",
|
|
325
|
-
"automation pipeline"
|
|
326
|
-
],
|
|
327
|
-
"category": "github",
|
|
328
|
-
"primaryAgent": "devops"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"skill": "github:issue-tracker",
|
|
332
|
-
"invoke": "Skill(\"github:issue-tracker\")",
|
|
333
|
-
"description": "GitHub issue management — create, triage, close, label issues",
|
|
334
|
-
"keywords": [
|
|
335
|
-
"issue",
|
|
336
|
-
"bug report",
|
|
337
|
-
"feature request",
|
|
338
|
-
"github issue",
|
|
339
|
-
"label",
|
|
340
|
-
"milestone",
|
|
341
|
-
"triage"
|
|
342
|
-
],
|
|
343
|
-
"category": "github",
|
|
344
|
-
"primaryAgent": "researcher"
|
|
345
|
-
},
|
|
346
|
-
{
|
|
347
|
-
"skill": "swarm:swarm-init",
|
|
348
|
-
"invoke": "Skill(\"swarm:swarm-init\")",
|
|
349
|
-
"description": "Initialize a multi-agent swarm — topology, coordination, parallel execution",
|
|
350
|
-
"keywords": [
|
|
351
|
-
"swarm",
|
|
352
|
-
"multi-agent",
|
|
353
|
-
"parallel agents",
|
|
354
|
-
"spawn agents",
|
|
355
|
-
"orchestrate",
|
|
356
|
-
"coordinate agents"
|
|
357
|
-
],
|
|
358
|
-
"category": "swarm",
|
|
359
|
-
"primaryAgent": "architect"
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
"skill": "performance-analysis",
|
|
363
|
-
"invoke": "Skill(\"performance-analysis\")",
|
|
364
|
-
"description": "Performance metrics — token usage, bottleneck detection, optimization recommendations",
|
|
365
|
-
"keywords": [
|
|
366
|
-
"performance analysis",
|
|
367
|
-
"token usage",
|
|
368
|
-
"slow query",
|
|
369
|
-
"benchmark",
|
|
370
|
-
"metrics",
|
|
371
|
-
"measure"
|
|
372
|
-
],
|
|
373
|
-
"category": "performance",
|
|
374
|
-
"primaryAgent": "researcher"
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
"skill": "verification-quality",
|
|
378
|
-
"invoke": "Skill(\"verification-quality\")",
|
|
379
|
-
"description": "Quality assurance — coverage verification, linting, security scanning, completeness",
|
|
380
|
-
"keywords": [
|
|
381
|
-
"verify",
|
|
382
|
-
"quality",
|
|
383
|
-
"qa",
|
|
384
|
-
"coverage",
|
|
385
|
-
"lint",
|
|
386
|
-
"completeness",
|
|
387
|
-
"validate output"
|
|
388
|
-
],
|
|
389
|
-
"category": "review",
|
|
390
|
-
"primaryAgent": "tester"
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
"skill": "superpowers:brainstorm",
|
|
394
|
-
"invoke": "Skill(\"superpowers:brainstorm\")",
|
|
395
|
-
"description": "Structured brainstorming — explore options, generate ideas, evaluate trade-offs",
|
|
396
|
-
"keywords": [
|
|
397
|
-
"brainstorm",
|
|
398
|
-
"ideas",
|
|
399
|
-
"options",
|
|
400
|
-
"alternatives",
|
|
401
|
-
"explore approaches",
|
|
402
|
-
"think through"
|
|
403
|
-
],
|
|
404
|
-
"category": "planning",
|
|
405
|
-
"primaryAgent": "researcher"
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"skill": "superpowers:write-plan",
|
|
409
|
-
"invoke": "Skill(\"superpowers:write-plan\")",
|
|
410
|
-
"description": "Write an implementation plan — structured steps, milestones, approach",
|
|
411
|
-
"keywords": [
|
|
412
|
-
"plan",
|
|
413
|
-
"planning",
|
|
414
|
-
"write plan",
|
|
415
|
-
"implementation plan",
|
|
416
|
-
"steps",
|
|
417
|
-
"roadmap",
|
|
418
|
-
"strategy"
|
|
419
|
-
],
|
|
420
|
-
"category": "planning",
|
|
421
|
-
"primaryAgent": "architect"
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"skill": "superpowers:systematic-debugging",
|
|
425
|
-
"invoke": "Skill(\"superpowers:systematic-debugging\")",
|
|
426
|
-
"description": "Systematic debugging process — reproduce, isolate, fix, verify",
|
|
427
|
-
"keywords": [
|
|
428
|
-
"systematic debug",
|
|
429
|
-
"debug process",
|
|
430
|
-
"reproduce bug",
|
|
431
|
-
"isolate issue",
|
|
432
|
-
"root cause"
|
|
433
|
-
],
|
|
434
|
-
"category": "debugging",
|
|
435
|
-
"primaryAgent": "coder"
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"skill": "superpowers:test-driven-development",
|
|
439
|
-
"invoke": "Skill(\"superpowers:test-driven-development\")",
|
|
440
|
-
"description": "TDD workflow — write tests first, implement to pass, refactor",
|
|
441
|
-
"keywords": [
|
|
442
|
-
"tdd",
|
|
443
|
-
"test first",
|
|
444
|
-
"failing test",
|
|
445
|
-
"red green",
|
|
446
|
-
"test driven"
|
|
447
|
-
],
|
|
448
|
-
"category": "testing",
|
|
449
|
-
"primaryAgent": "tester"
|
|
450
|
-
},
|
|
451
|
-
{
|
|
452
|
-
"skill": "superpowers:subagent-driven-development",
|
|
453
|
-
"invoke": "Skill(\"superpowers:subagent-driven-development\")",
|
|
454
|
-
"description": "Delegate complex tasks to specialized sub-agents working in parallel",
|
|
455
|
-
"keywords": [
|
|
456
|
-
"sub-agent",
|
|
457
|
-
"delegate",
|
|
458
|
-
"parallel",
|
|
459
|
-
"specialized agent",
|
|
460
|
-
"complex task",
|
|
461
|
-
"multi-step"
|
|
462
|
-
],
|
|
463
|
-
"category": "swarm",
|
|
464
|
-
"primaryAgent": "architect"
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
"skill": "pair-programming",
|
|
468
|
-
"invoke": "Skill(\"pair-programming\")",
|
|
469
|
-
"description": "Pair programming session — driver/navigator modes, real-time collaboration",
|
|
470
|
-
"keywords": [
|
|
471
|
-
"pair",
|
|
472
|
-
"pair programming",
|
|
473
|
-
"pair session",
|
|
474
|
-
"driver navigator",
|
|
475
|
-
"collaborate on code"
|
|
476
|
-
],
|
|
477
|
-
"category": "implementation",
|
|
478
|
-
"primaryAgent": "coder"
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"skill": "hive-mind:hive-mind",
|
|
482
|
-
"invoke": "Skill(\"hive-mind:hive-mind\")",
|
|
483
|
-
"description": "Collective intelligence — consensus-building across distributed agents, Byzantine tolerance",
|
|
484
|
-
"keywords": [
|
|
485
|
-
"hive mind",
|
|
486
|
-
"consensus",
|
|
487
|
-
"collective",
|
|
488
|
-
"distributed decision",
|
|
489
|
-
"byzantine",
|
|
490
|
-
"queen"
|
|
491
|
-
],
|
|
492
|
-
"category": "swarm",
|
|
493
|
-
"primaryAgent": "architect"
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"skill": "hooks:setup",
|
|
497
|
-
"invoke": "Skill(\"hooks:setup\")",
|
|
498
|
-
"description": "Configure the hook system — add/modify pre/post task hooks, event handlers",
|
|
499
|
-
"keywords": [
|
|
500
|
-
"hook",
|
|
501
|
-
"configure hook",
|
|
502
|
-
"add hook",
|
|
503
|
-
"pre-task",
|
|
504
|
-
"post-task",
|
|
505
|
-
"event handler",
|
|
506
|
-
"settings"
|
|
507
|
-
],
|
|
508
|
-
"category": "configuration",
|
|
509
|
-
"primaryAgent": "devops"
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"skill": "lancedb-vector-search",
|
|
513
|
-
"invoke": "Skill(\"lancedb-vector-search\")",
|
|
514
|
-
"description": "Vector search operations — semantic search, HNSW, embeddings, nearest neighbor",
|
|
515
|
-
"keywords": [
|
|
516
|
-
"vector search",
|
|
517
|
-
"semantic search",
|
|
518
|
-
"hnsw",
|
|
519
|
-
"embedding",
|
|
520
|
-
"similarity",
|
|
521
|
-
"lancedb",
|
|
522
|
-
"nearest"
|
|
523
|
-
],
|
|
524
|
-
"category": "memory",
|
|
525
|
-
"primaryAgent": "architect"
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
"skill": "stream-chain:pipeline",
|
|
529
|
-
"invoke": "Skill(\"stream-chain:pipeline\")",
|
|
530
|
-
"description": "Stream processing pipeline — event-driven data flow, pipeline construction",
|
|
531
|
-
"keywords": [
|
|
532
|
-
"stream",
|
|
533
|
-
"pipeline",
|
|
534
|
-
"event stream",
|
|
535
|
-
"data flow",
|
|
536
|
-
"process stream",
|
|
537
|
-
"chain"
|
|
538
|
-
],
|
|
539
|
-
"category": "implementation",
|
|
540
|
-
"primaryAgent": "coder"
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"skill": "frontend-design:frontend-design",
|
|
544
|
-
"invoke": "Skill(\"frontend-design:frontend-design\")",
|
|
545
|
-
"description": "Frontend design system — UI components, CSS, design tokens, visual consistency",
|
|
546
|
-
"keywords": [
|
|
547
|
-
"ui design",
|
|
548
|
-
"frontend design",
|
|
549
|
-
"design system",
|
|
550
|
-
"component design",
|
|
551
|
-
"visual",
|
|
552
|
-
"ux"
|
|
553
|
-
],
|
|
554
|
-
"category": "frontend",
|
|
555
|
-
"primaryAgent": "frontend-dev"
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"skill": "lancedb-advanced",
|
|
559
|
-
"invoke": "Skill(\"lancedb-advanced\")",
|
|
560
|
-
"description": "Advanced LanceDB — QUIC sync, multi-database, custom metrics, distributed systems",
|
|
561
|
-
"keywords": [
|
|
562
|
-
"lancedb",
|
|
563
|
-
"quic",
|
|
564
|
-
"synchronization",
|
|
565
|
-
"distributed",
|
|
566
|
-
"vector-search",
|
|
567
|
-
"multi-database"
|
|
568
|
-
],
|
|
569
|
-
"category": "lancedb",
|
|
570
|
-
"primaryAgent": "coder"
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"skill": "lancedb-learning",
|
|
574
|
-
"invoke": "Skill(\"lancedb-learning\")",
|
|
575
|
-
"description": "LanceDB RL — 9 algorithms: DQN, PPO, Decision Transformer, Q-Learning, SARSA",
|
|
576
|
-
"keywords": [
|
|
577
|
-
"reinforcement-learning",
|
|
578
|
-
"training",
|
|
579
|
-
"rl",
|
|
580
|
-
"lancedb",
|
|
581
|
-
"decision-transformer",
|
|
582
|
-
"q-learning"
|
|
583
|
-
],
|
|
584
|
-
"category": "lancedb",
|
|
585
|
-
"primaryAgent": "ml-developer"
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"skill": "lancedb-memory-patterns",
|
|
589
|
-
"invoke": "Skill(\"lancedb-memory-patterns\")",
|
|
590
|
-
"description": "Persistent memory patterns for stateful agents and context management",
|
|
591
|
-
"keywords": [
|
|
592
|
-
"memory",
|
|
593
|
-
"persistence",
|
|
594
|
-
"pattern-learning",
|
|
595
|
-
"context",
|
|
596
|
-
"sessions",
|
|
597
|
-
"stateful"
|
|
598
|
-
],
|
|
599
|
-
"category": "lancedb",
|
|
600
|
-
"primaryAgent": "coder"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"skill": "lancedb-optimization",
|
|
604
|
-
"invoke": "Skill(\"lancedb-optimization\")",
|
|
605
|
-
"description": "LanceDB optimization — quantization (4-32x), HNSW (150x faster), caching, batch ops",
|
|
606
|
-
"keywords": [
|
|
607
|
-
"optimization",
|
|
608
|
-
"hnsw",
|
|
609
|
-
"caching",
|
|
610
|
-
"quantization",
|
|
611
|
-
"performance",
|
|
612
|
-
"batch"
|
|
613
|
-
],
|
|
614
|
-
"category": "lancedb",
|
|
615
|
-
"primaryAgent": "coder"
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
"skill": "agentic-jujutsu",
|
|
619
|
-
"invoke": "Skill(\"agentic-jujutsu\")",
|
|
620
|
-
"description": "Quantum-resistant version control for AI agents with ReasoningBank intelligence",
|
|
621
|
-
"keywords": [
|
|
622
|
-
"jujutsu",
|
|
623
|
-
"version-control",
|
|
624
|
-
"reasoningbank",
|
|
625
|
-
"domain-modeling",
|
|
626
|
-
"actor-systems"
|
|
627
|
-
],
|
|
628
|
-
"category": "advanced",
|
|
629
|
-
"primaryAgent": "architect"
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
"skill": "github-code-review",
|
|
633
|
-
"invoke": "Skill(\"github-code-review\")",
|
|
634
|
-
"description": "AI-powered GitHub code review with swarm coordination",
|
|
635
|
-
"keywords": [
|
|
636
|
-
"github",
|
|
637
|
-
"code-review",
|
|
638
|
-
"pull-request",
|
|
639
|
-
"pr-review",
|
|
640
|
-
"quality"
|
|
641
|
-
],
|
|
642
|
-
"category": "github",
|
|
643
|
-
"primaryAgent": "reviewer"
|
|
644
|
-
},
|
|
645
|
-
{
|
|
646
|
-
"skill": "github-multi-repo",
|
|
647
|
-
"invoke": "Skill(\"github-multi-repo\")",
|
|
648
|
-
"description": "Multi-repository operations with distributed workflow synchronization",
|
|
649
|
-
"keywords": [
|
|
650
|
-
"multi-repo",
|
|
651
|
-
"github",
|
|
652
|
-
"monorepo",
|
|
653
|
-
"sync",
|
|
654
|
-
"cross-repo"
|
|
655
|
-
],
|
|
656
|
-
"category": "github",
|
|
657
|
-
"primaryAgent": "coder"
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"skill": "github-project-management",
|
|
661
|
-
"invoke": "Skill(\"github-project-management\")",
|
|
662
|
-
"description": "GitHub project management — boards, milestones, automation, sprint planning",
|
|
663
|
-
"keywords": [
|
|
664
|
-
"project-management",
|
|
665
|
-
"github",
|
|
666
|
-
"milestones",
|
|
667
|
-
"board",
|
|
668
|
-
"sprint",
|
|
669
|
-
"issues"
|
|
670
|
-
],
|
|
671
|
-
"category": "github",
|
|
672
|
-
"primaryAgent": "planner"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"skill": "github-release-management",
|
|
676
|
-
"invoke": "Skill(\"github-release-management\")",
|
|
677
|
-
"description": "Release management — changelog, semantic versioning, GitHub releases",
|
|
678
|
-
"keywords": [
|
|
679
|
-
"release",
|
|
680
|
-
"versioning",
|
|
681
|
-
"changelog",
|
|
682
|
-
"deployment",
|
|
683
|
-
"publish",
|
|
684
|
-
"npm"
|
|
685
|
-
],
|
|
686
|
-
"category": "github",
|
|
687
|
-
"primaryAgent": "coder"
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
"skill": "github-workflow-automation",
|
|
691
|
-
"invoke": "Skill(\"github-workflow-automation\")",
|
|
692
|
-
"description": "GitHub Actions CI/CD pipeline automation and workflow orchestration",
|
|
693
|
-
"keywords": [
|
|
694
|
-
"github-actions",
|
|
695
|
-
"ci-cd",
|
|
696
|
-
"pipeline",
|
|
697
|
-
"workflow",
|
|
698
|
-
"automation",
|
|
699
|
-
"ci"
|
|
700
|
-
],
|
|
701
|
-
"category": "github",
|
|
702
|
-
"primaryAgent": "coder"
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"skill": "hive-mind-advanced",
|
|
706
|
-
"invoke": "Skill(\"hive-mind-advanced\")",
|
|
707
|
-
"description": "Advanced hive-mind — Byzantine consensus, distributed voting, queen coordination",
|
|
708
|
-
"keywords": [
|
|
709
|
-
"hive-mind",
|
|
710
|
-
"consensus",
|
|
711
|
-
"byzantine",
|
|
712
|
-
"distributed",
|
|
713
|
-
"voting",
|
|
714
|
-
"queen"
|
|
715
|
-
],
|
|
716
|
-
"category": "advanced",
|
|
717
|
-
"primaryAgent": "architect"
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
"skill": "hooks-automation",
|
|
721
|
-
"invoke": "Skill(\"hooks-automation\")",
|
|
722
|
-
"description": "Automated hooks — pre/post task, Git integration, neural learning, MCP coordination",
|
|
723
|
-
"keywords": [
|
|
724
|
-
"hooks",
|
|
725
|
-
"automation",
|
|
726
|
-
"git-integration",
|
|
727
|
-
"neural-learning",
|
|
728
|
-
"mcp"
|
|
729
|
-
],
|
|
730
|
-
"category": "advanced",
|
|
731
|
-
"primaryAgent": "coder"
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
"skill": "reasoningbank-lancedb",
|
|
735
|
-
"invoke": "Skill(\"reasoningbank-lancedb\")",
|
|
736
|
-
"description": "ReasoningBank adaptive learning with LanceDB vector search and trajectory tracking",
|
|
737
|
-
"keywords": [
|
|
738
|
-
"reasoningbank",
|
|
739
|
-
"adaptive-learning",
|
|
740
|
-
"trajectory",
|
|
741
|
-
"vector-search",
|
|
742
|
-
"verdict"
|
|
743
|
-
],
|
|
744
|
-
"category": "lancedb",
|
|
745
|
-
"primaryAgent": "ml-developer"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"skill": "reasoningbank-intelligence",
|
|
749
|
-
"invoke": "Skill(\"reasoningbank-intelligence\")",
|
|
750
|
-
"description": "Adaptive learning with pattern recognition and meta-cognitive optimization",
|
|
751
|
-
"keywords": [
|
|
752
|
-
"intelligence",
|
|
753
|
-
"pattern-recognition",
|
|
754
|
-
"optimization",
|
|
755
|
-
"meta-cognition",
|
|
756
|
-
"learning"
|
|
757
|
-
],
|
|
758
|
-
"category": "advanced",
|
|
759
|
-
"primaryAgent": "ml-developer"
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"skill": "skill-builder",
|
|
763
|
-
"invoke": "Skill(\"skill-builder\")",
|
|
764
|
-
"description": "Create Claude Code skills — YAML frontmatter, progressive disclosure, directory structure",
|
|
765
|
-
"keywords": [
|
|
766
|
-
"skill",
|
|
767
|
-
"create-skill",
|
|
768
|
-
"yaml",
|
|
769
|
-
"template",
|
|
770
|
-
"skill-builder"
|
|
771
|
-
],
|
|
772
|
-
"category": "core",
|
|
773
|
-
"primaryAgent": "coder"
|
|
774
|
-
},
|
|
775
|
-
{
|
|
776
|
-
"skill": "sparc-methodology",
|
|
777
|
-
"invoke": "Skill(\"sparc-methodology\")",
|
|
778
|
-
"description": "SPARC development methodology — Specification, Pseudocode, Architecture, Refinement, Completion",
|
|
779
|
-
"keywords": [
|
|
780
|
-
"sparc",
|
|
781
|
-
"methodology",
|
|
782
|
-
"architecture",
|
|
783
|
-
"specification",
|
|
784
|
-
"development"
|
|
785
|
-
],
|
|
786
|
-
"category": "core",
|
|
787
|
-
"primaryAgent": "architect"
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
"skill": "specialagent",
|
|
791
|
-
"invoke": "Skill(\"specialagent\")",
|
|
792
|
-
"description": "Find the best specialized agent from 60+ roster by domain fit scoring",
|
|
793
|
-
"keywords": [
|
|
794
|
-
"agent-selection",
|
|
795
|
-
"specialist",
|
|
796
|
-
"routing",
|
|
797
|
-
"recommendation",
|
|
798
|
-
"best-agent"
|
|
799
|
-
],
|
|
800
|
-
"category": "advanced",
|
|
801
|
-
"primaryAgent": "planner"
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
"skill": "swarm-advanced",
|
|
805
|
-
"invoke": "Skill(\"swarm-advanced\")",
|
|
806
|
-
"description": "Advanced swarm orchestration — dynamic topology, research/dev/test patterns",
|
|
807
|
-
"keywords": [
|
|
808
|
-
"swarm",
|
|
809
|
-
"multi-agent",
|
|
810
|
-
"topology",
|
|
811
|
-
"orchestration",
|
|
812
|
-
"coordination",
|
|
813
|
-
"parallel"
|
|
814
|
-
],
|
|
815
|
-
"category": "swarm",
|
|
816
|
-
"primaryAgent": "architect"
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
"skill": "swarm-orchestration",
|
|
820
|
-
"invoke": "Skill(\"swarm-orchestration\")",
|
|
821
|
-
"description": "Orchestrate multi-agent swarms with agentic-flow for parallel execution",
|
|
822
|
-
"keywords": [
|
|
823
|
-
"orchestration",
|
|
824
|
-
"agentic-flow",
|
|
825
|
-
"parallel",
|
|
826
|
-
"swarm-init",
|
|
827
|
-
"topology"
|
|
828
|
-
],
|
|
829
|
-
"category": "swarm",
|
|
830
|
-
"primaryAgent": "architect"
|
|
831
|
-
},
|
|
832
|
-
{
|
|
833
|
-
"skill": "cli-modernization",
|
|
834
|
-
"invoke": "Skill(\"cli-modernization\")",
|
|
835
|
-
"description": "CLI modernization — interactive prompts, command decomposition, hooks enhancement",
|
|
836
|
-
"keywords": [
|
|
837
|
-
"cli",
|
|
838
|
-
"modernization",
|
|
839
|
-
"interactive",
|
|
840
|
-
"commands",
|
|
841
|
-
"hooks"
|
|
842
|
-
],
|
|
843
|
-
"category": "implementation",
|
|
844
|
-
"primaryAgent": "coder"
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
"skill": "core-implementation",
|
|
848
|
-
"invoke": "Skill(\"core-implementation\")",
|
|
849
|
-
"description": "Core module implementation — DDD domains, clean architecture, TypeScript",
|
|
850
|
-
"keywords": [
|
|
851
|
-
"core",
|
|
852
|
-
"ddd",
|
|
853
|
-
"implementation",
|
|
854
|
-
"typescript",
|
|
855
|
-
"architecture"
|
|
856
|
-
],
|
|
857
|
-
"category": "implementation",
|
|
858
|
-
"primaryAgent": "architect"
|
|
859
|
-
},
|
|
860
|
-
{
|
|
861
|
-
"skill": "ddd-architecture",
|
|
862
|
-
"invoke": "Skill(\"ddd-architecture\")",
|
|
863
|
-
"description": "Domain-driven design architecture — bounded contexts, modular patterns",
|
|
864
|
-
"keywords": [
|
|
865
|
-
"ddd",
|
|
866
|
-
"bounded-context",
|
|
867
|
-
"domain-driven",
|
|
868
|
-
"architecture",
|
|
869
|
-
"modular"
|
|
870
|
-
],
|
|
871
|
-
"category": "architecture",
|
|
872
|
-
"primaryAgent": "architect"
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"skill": "agentic-integration",
|
|
876
|
-
"invoke": "Skill(\"agentic-integration\")",
|
|
877
|
-
"description": "Deep agentic-flow integration — ADR-001, eliminate duplicate lines, adapter layer",
|
|
878
|
-
"keywords": [
|
|
879
|
-
"integration",
|
|
880
|
-
"agentic-flow",
|
|
881
|
-
"adr-001",
|
|
882
|
-
"deep",
|
|
883
|
-
"deduplication"
|
|
884
|
-
],
|
|
885
|
-
"category": "implementation",
|
|
886
|
-
"primaryAgent": "architect"
|
|
887
|
-
},
|
|
888
|
-
{
|
|
889
|
-
"skill": "mcp-optimization",
|
|
890
|
-
"invoke": "Skill(\"mcp-optimization\")",
|
|
891
|
-
"description": "MCP server optimization — connection pooling, load balancing, sub-100ms responses",
|
|
892
|
-
"keywords": [
|
|
893
|
-
"mcp",
|
|
894
|
-
"optimization",
|
|
895
|
-
"performance",
|
|
896
|
-
"pooling",
|
|
897
|
-
"load-balancing"
|
|
898
|
-
],
|
|
899
|
-
"category": "performance",
|
|
900
|
-
"primaryAgent": "coder"
|
|
901
|
-
},
|
|
902
|
-
{
|
|
903
|
-
"skill": "memory-unification",
|
|
904
|
-
"invoke": "Skill(\"memory-unification\")",
|
|
905
|
-
"description": "Unify 6+ memory systems into LanceDB with HNSW indexing (150x-12,500x faster)",
|
|
906
|
-
"keywords": [
|
|
907
|
-
"memory",
|
|
908
|
-
"unification",
|
|
909
|
-
"hnsw",
|
|
910
|
-
"lancedb",
|
|
911
|
-
"hierarchical"
|
|
912
|
-
],
|
|
913
|
-
"category": "memory",
|
|
914
|
-
"primaryAgent": "architect"
|
|
915
|
-
},
|
|
916
|
-
{
|
|
917
|
-
"skill": "performance-optimization",
|
|
918
|
-
"invoke": "Skill(\"performance-optimization\")",
|
|
919
|
-
"description": "Performance targets — Flash Attention speedup, search improvements, memory reduction",
|
|
920
|
-
"keywords": [
|
|
921
|
-
"performance",
|
|
922
|
-
"optimization",
|
|
923
|
-
"flash-attention",
|
|
924
|
-
"memory-reduction",
|
|
925
|
-
"benchmark"
|
|
926
|
-
],
|
|
927
|
-
"category": "performance",
|
|
928
|
-
"primaryAgent": "coder"
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"skill": "security-hardening",
|
|
932
|
-
"invoke": "Skill(\"security-hardening\")",
|
|
933
|
-
"description": "Security hardening — CVE remediation, input validation, secure-by-default patterns",
|
|
934
|
-
"keywords": [
|
|
935
|
-
"security",
|
|
936
|
-
"hardening",
|
|
937
|
-
"cve",
|
|
938
|
-
"vulnerability",
|
|
939
|
-
"input-validation",
|
|
940
|
-
"secure"
|
|
941
|
-
],
|
|
942
|
-
"category": "security",
|
|
943
|
-
"primaryAgent": "reviewer"
|
|
944
|
-
},
|
|
945
|
-
{
|
|
946
|
-
"skill": "swarm-coordination",
|
|
947
|
-
"invoke": "Skill(\"swarm-coordination\")",
|
|
948
|
-
"description": "15-agent hierarchical mesh coordination — parallel execution across domains",
|
|
949
|
-
"keywords": [
|
|
950
|
-
"swarm",
|
|
951
|
-
"coordination",
|
|
952
|
-
"hierarchical-mesh",
|
|
953
|
-
"parallel",
|
|
954
|
-
"multi-agent"
|
|
955
|
-
],
|
|
956
|
-
"category": "swarm",
|
|
957
|
-
"primaryAgent": "architect"
|
|
958
|
-
},
|
|
959
|
-
{
|
|
960
|
-
"skill": "mastermind:autodev",
|
|
961
|
-
"invoke": "Skill(\"mastermind:autodev\")",
|
|
962
|
-
"description": "Autonomous research → build → review loop. Researches the project, picks the best improvement idea, builds it, then reviews with mastermind:review --tillend until clean. Repeats N times (e.g. /mastermind:autodev 9 builds 9 improvements). Supports --tillend, --focus, --count.",
|
|
963
|
-
"keywords": [
|
|
964
|
-
"autodev",
|
|
965
|
-
"autonomous",
|
|
966
|
-
"auto build",
|
|
967
|
-
"research",
|
|
968
|
-
"improve",
|
|
969
|
-
"improvement",
|
|
970
|
-
"feature",
|
|
971
|
-
"loop",
|
|
972
|
-
"build and review",
|
|
973
|
-
"self-improving",
|
|
974
|
-
"auto feature",
|
|
975
|
-
"continuous improvement",
|
|
976
|
-
"auto improve",
|
|
977
|
-
"research and build"
|
|
978
|
-
],
|
|
979
|
-
"category": "dev",
|
|
980
|
-
"primaryAgent": "coder"
|
|
981
|
-
},
|
|
982
|
-
{
|
|
983
|
-
"skill": "mastermind:monitor",
|
|
984
|
-
"invoke": "Skill(\"mastermind:monitor\")",
|
|
985
|
-
"description": "Forever-running task executor that watches Linear, GitHub, Monotask boards, and filesystem folders for new tasks, claims them, executes with the right agent, posts progress comments, and advances status at every stage. Supports per-user/per-state filtering, auto-retry (3x), 1-concurrent safe default, and ScheduleWakeup self-rescheduling.",
|
|
986
|
-
"keywords": [
|
|
987
|
-
"monitor",
|
|
988
|
-
"watch",
|
|
989
|
-
"task executor",
|
|
990
|
-
"autonomous",
|
|
991
|
-
"linear",
|
|
992
|
-
"github",
|
|
993
|
-
"monotask",
|
|
994
|
-
"filesystem",
|
|
995
|
-
"forever",
|
|
996
|
-
"loop",
|
|
997
|
-
"polling",
|
|
998
|
-
"task watcher",
|
|
999
|
-
"task doer",
|
|
1000
|
-
"continuous",
|
|
1001
|
-
"agent loop",
|
|
1002
|
-
"claim task",
|
|
1003
|
-
"auto-execute"
|
|
1004
|
-
],
|
|
1005
|
-
"category": "ops",
|
|
1006
|
-
"primaryAgent": "coder"
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"skill": "github:repo-recap",
|
|
1010
|
-
"invoke": "Skill(\"github:repo-recap\")",
|
|
1011
|
-
"description": "Generate a structured repo recap — open PRs by category, issues, recent releases, executive summary, overlap detection — formatted as Markdown, copied to clipboard.",
|
|
1012
|
-
"keywords": [
|
|
1013
|
-
"repo recap",
|
|
1014
|
-
"pr summary",
|
|
1015
|
-
"issue summary",
|
|
1016
|
-
"release summary",
|
|
1017
|
-
"team report",
|
|
1018
|
-
"repo status",
|
|
1019
|
-
"project status",
|
|
1020
|
-
"github recap"
|
|
1021
|
-
],
|
|
1022
|
-
"category": "github",
|
|
1023
|
-
"primaryAgent": "researcher"
|
|
1024
|
-
},
|
|
1025
|
-
{
|
|
1026
|
-
"skill": "github:issue-triage",
|
|
1027
|
-
"invoke": "Skill(\"github:issue-triage\")",
|
|
1028
|
-
"description": "Three-phase GitHub issue triage: auto-audit with Jaccard duplicate detection, risk classification, PR cross-ref and staleness; optional parallel deep analysis; draft-then-validate comment/label/close actions.",
|
|
1029
|
-
"keywords": [
|
|
1030
|
-
"issue triage",
|
|
1031
|
-
"github issues",
|
|
1032
|
-
"triage",
|
|
1033
|
-
"duplicate detection",
|
|
1034
|
-
"issue audit",
|
|
1035
|
-
"issue management",
|
|
1036
|
-
"close stale",
|
|
1037
|
-
"label issues"
|
|
1038
|
-
],
|
|
1039
|
-
"category": "github",
|
|
1040
|
-
"primaryAgent": "researcher"
|
|
1041
|
-
}
|
|
1042
|
-
]
|
|
1043
|
-
}
|