@mmerterden/multi-agent-pipeline 12.5.0 → 12.7.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/CHANGELOG.md +213 -0
- package/README.md +19 -19
- package/docs/FIGMA_PIPELINE.md +34 -34
- package/docs/adr/0001-three-model-triage.md +12 -12
- package/docs/adr/0002-instruction-driven-flag.md +5 -5
- package/docs/adr/0003-unified-shared-skills.md +5 -5
- package/docs/adr/0004-zero-dependency-philosophy.md +5 -5
- package/docs/adr/0005-lazy-phase-docs.md +2 -2
- package/docs/adr/0006-skills-core-external-split.md +6 -6
- package/docs/adr/0007-multi-tool-adapter-framework.md +19 -19
- package/docs/adr/0008-installer-modularization-and-secret-leak-defense.md +19 -19
- package/docs/adr/README.md +1 -1
- package/docs/best-practices.md +3 -3
- package/docs/features.md +48 -28
- package/docs/performance.md +16 -16
- package/docs/recovery-guide.md +39 -39
- package/index.js +11 -5
- package/install/_common.mjs +5 -11
- package/install/_copilot-instructions.mjs +2 -2
- package/install/_dev-only-files.mjs +2 -1
- package/install/_platform-filter.mjs +1 -1
- package/install/_telemetry.mjs +1 -1
- package/install/claude.mjs +10 -9
- package/install/copilot.mjs +10 -19
- package/install/index.mjs +7 -15
- package/install/templates/copilot-instructions.md +54 -54
- package/install.js +1 -1
- package/package.json +15 -11
- package/pipeline/agents/security-auditor.md +1 -1
- package/pipeline/commands/archive-guard.md +5 -5
- package/pipeline/commands/multi-agent/SKILL.md +3 -1
- package/pipeline/commands/multi-agent/analysis/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/analysis-resolve/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/autopilot/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/build-optimize/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/create-jira/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/design-check/SKILL.md +287 -0
- package/pipeline/commands/multi-agent/dev/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/dev-autopilot/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/dev-local/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/dev-local-autopilot/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/diff-explain/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/finish/SKILL.md +6 -6
- package/pipeline/commands/multi-agent/forget/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/garbage-collect/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/help/SKILL.md +46 -6
- package/pipeline/commands/multi-agent/issue/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/jira/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/kill/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/language/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/local/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/local-autopilot/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/log/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/manual-test/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/prune-logs/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/purge/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/refactor/SKILL.md +107 -19
- package/pipeline/commands/multi-agent/resume/SKILL.md +2 -2
- package/pipeline/commands/multi-agent/review/SKILL.md +2 -2
- package/pipeline/commands/multi-agent/review-issue/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/review-jira/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/routines/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/save/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/scan/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/search/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/setup/SKILL.md +2 -2
- package/pipeline/commands/multi-agent/stack/SKILL.md +3 -3
- package/pipeline/commands/multi-agent/status/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/sync/SKILL.md +123 -16
- package/pipeline/commands/multi-agent/test/SKILL.md +2 -2
- package/pipeline/commands/multi-agent/uninstall/SKILL.md +1 -1
- package/pipeline/commands/multi-agent/update/SKILL.md +3 -3
- package/pipeline/commands/sim-test.md +5 -5
- package/pipeline/eval/run-metrics-fixture.json +60 -13
- package/pipeline/lib/account-resolver.sh +1 -1
- package/pipeline/lib/channels-multi-repo.sh +1 -1
- package/pipeline/lib/context-link-extractor.sh +1 -1
- package/pipeline/lib/credential-store.sh +33 -1
- package/pipeline/lib/fetch-confluence.sh +1 -1
- package/pipeline/lib/fetch-crashlytics.sh +1 -1
- package/pipeline/lib/fetch-fortify.sh +1 -1
- package/pipeline/lib/fetch-graylog.sh +1 -1
- package/pipeline/lib/fetch-swagger.sh +1 -1
- package/pipeline/lib/issue-fetcher.sh +1 -1
- package/pipeline/lib/multi-repo-pipeline.sh +1 -1
- package/pipeline/lib/repo-cache.sh +1 -1
- package/pipeline/lib/submodule-detector.sh +1 -1
- package/pipeline/multi-agent-refs/component-dispatch.md +1 -1
- package/pipeline/multi-agent-refs/component-generation.md +121 -0
- package/pipeline/multi-agent-refs/cross-cli-contract.md +4 -4
- package/pipeline/multi-agent-refs/features/model-fallback.md +2 -2
- package/pipeline/multi-agent-refs/phases/phase-3-dev.md +2 -2
- package/pipeline/multi-agent-refs/phases/phase-4-review.md +1 -1
- package/pipeline/multi-agent-refs/phases/phase-5-test.md +4 -4
- package/pipeline/preferences-template.json +23 -12
- package/pipeline/schemas/agent-state.schema.json +125 -5
- package/pipeline/schemas/analysis-output.schema.json +18 -4
- package/pipeline/schemas/analysis-spec.schema.json +120 -32
- package/pipeline/schemas/clarify-output.schema.json +15 -5
- package/pipeline/schemas/design-check-config.schema.json +183 -0
- package/pipeline/schemas/dev-critic-output.schema.json +20 -5
- package/pipeline/schemas/figma-project-config.schema.json +42 -10
- package/pipeline/schemas/learnings-ledger.schema.json +10 -2
- package/pipeline/schemas/migrations/figma-config-1.0.0-to-2.0.0.mjs +1 -4
- package/pipeline/schemas/migrations/prefs-2.0.0-to-2.1.0.mjs +24 -7
- package/pipeline/schemas/migrations/state-2.0.0-to-2.1.0.mjs +30 -12
- package/pipeline/schemas/plan-todos.schema.json +6 -3
- package/pipeline/schemas/planning-output.schema.json +5 -1
- package/pipeline/schemas/prefs.schema.json +215 -197
- package/pipeline/schemas/test-gap.schema.json +5 -5
- package/pipeline/schemas/token-budget.json +8 -8
- package/pipeline/schemas/triage-corpus.schema.json +1 -1
- package/pipeline/scripts/README.md +7 -5
- package/pipeline/scripts/aggregate-metrics.mjs +18 -6
- package/pipeline/scripts/build-skills-index.mjs +6 -2
- package/pipeline/scripts/build-stack-plugins.mjs +142 -39
- package/pipeline/scripts/check-derived-drift.mjs +196 -0
- package/pipeline/scripts/check-md-links.mjs +6 -2
- package/pipeline/scripts/classify-plan-safety.mjs +26 -8
- package/pipeline/scripts/cost-budget-check.mjs +11 -6
- package/pipeline/scripts/cost-table.json +1 -1
- package/pipeline/scripts/diff-explain.mjs +7 -3
- package/pipeline/scripts/diff-risk-score.mjs +13 -3
- package/pipeline/scripts/eval-golden-tasks-live.mjs +8 -3
- package/pipeline/scripts/eval-golden-tasks.mjs +21 -9
- package/pipeline/scripts/eval-intent.mjs +8 -4
- package/pipeline/scripts/eval-mine-corpus.mjs +14 -4
- package/pipeline/scripts/evidence-gate.mjs +7 -2
- package/pipeline/scripts/fixtures/install-layout.tsv +7 -7
- package/pipeline/scripts/gen-mode-dispatch.mjs +38 -21
- package/pipeline/scripts/gen-skills-index.mjs +18 -3
- package/pipeline/scripts/learning-curve.mjs +13 -3
- package/pipeline/scripts/learnings-ledger.mjs +119 -34
- package/pipeline/scripts/lint-mcp-refs.mjs +218 -0
- package/pipeline/scripts/lint-skills.mjs +20 -9
- package/pipeline/scripts/localize-commands.mjs +6 -1
- package/pipeline/scripts/match-skills.mjs +15 -4
- package/pipeline/scripts/memory-load.sh +5 -1
- package/pipeline/scripts/migrate-prefs.mjs +33 -16
- package/pipeline/scripts/phase-tracker.sh +3 -1
- package/pipeline/scripts/render-work-summary.sh +4 -1
- package/pipeline/scripts/repo-map.mjs +110 -64
- package/pipeline/scripts/review-scope.mjs +7 -1
- package/pipeline/scripts/routine-registry.mjs +4 -9
- package/pipeline/scripts/run-aggregator.mjs +11 -5
- package/pipeline/scripts/run-metrics.mjs +13 -8
- package/pipeline/scripts/run-smokes.mjs +57 -3
- package/pipeline/scripts/scorecard.mjs +258 -0
- package/pipeline/scripts/smoke-command-inventory.sh +81 -0
- package/pipeline/scripts/smoke-commands-skills-parity.sh +1 -1
- package/pipeline/scripts/smoke-compliance-skills.sh +4 -4
- package/pipeline/scripts/smoke-context-budget.sh +72 -0
- package/pipeline/scripts/smoke-cross-cli-behavior.sh +12 -2
- package/pipeline/scripts/smoke-generate-issue.sh +6 -5
- package/pipeline/scripts/smoke-model-fallback.sh +1 -1
- package/pipeline/scripts/smoke-no-mcp-in-dev-phases.sh +86 -7
- package/pipeline/scripts/smoke-own-punctuation.sh +103 -0
- package/pipeline/scripts/smoke-per-repo-memory.sh +2 -2
- package/pipeline/scripts/smoke-review-readiness.sh +3 -2
- package/pipeline/scripts/smoke-schema-validation.sh +19 -5
- package/pipeline/scripts/smoke-shadow-git.sh +4 -2
- package/pipeline/scripts/smoke-workflow-audit.sh +43 -11
- package/pipeline/scripts/smoke-write-state.sh +49 -5
- package/pipeline/scripts/test-gap-rules/android.json +11 -11
- package/pipeline/scripts/test-gap-rules/ios.json +16 -11
- package/pipeline/scripts/test-gap-rules/node.json +19 -7
- package/pipeline/scripts/test-gap-rules/python.json +10 -4
- package/pipeline/scripts/test-gap-scan.mjs +44 -12
- package/pipeline/scripts/test-integrity-gate.mjs +5 -1
- package/pipeline/scripts/token-budget-report.mjs +44 -21
- package/pipeline/scripts/triage-memory.mjs +142 -32
- package/pipeline/scripts/uninstall.mjs +75 -31
- package/pipeline/scripts/validate-analysis-doc.mjs +15 -5
- package/pipeline/scripts/validate-diff-risk.mjs +32 -18
- package/pipeline/scripts/validate-test-gap.mjs +17 -7
- package/pipeline/scripts/validate-triage.mjs +17 -5
- package/pipeline/scripts/write-state.mjs +32 -9
- package/pipeline/skills/.skill-manifest.json +24 -8
- package/pipeline/skills/.skills-index.json +125 -89
- package/pipeline/skills/shared/README.md +65 -61
- package/pipeline/skills/shared/core/apple-archive-compliance/SKILL.md +10 -8
- package/pipeline/skills/shared/core/google-play-compliance/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent/SKILL.md +26 -279
- package/pipeline/skills/shared/core/multi-agent-analysis/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-analysis-resolve/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-autopilot/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-build-optimize/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-create-jira/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-design-check/SKILL.md +248 -0
- package/pipeline/skills/shared/core/multi-agent-dev/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-dev-autopilot/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-dev-local/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-dev-local-autopilot/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-diff-explain/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-finish/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-forget/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-garbage-collect/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-help/SKILL.md +23 -1
- package/pipeline/skills/shared/core/multi-agent-issue/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-jira/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-kill/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-language/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-local/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-local-autopilot/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-log/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-manual-test/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-prune-logs/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-purge/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-refactor/SKILL.md +82 -18
- package/pipeline/skills/shared/core/multi-agent-resume/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-review/SKILL.md +2 -2
- package/pipeline/skills/shared/core/multi-agent-review-issue/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-review-jira/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-routines/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-save/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-scan/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-search/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-setup/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-stack/SKILL.md +3 -3
- package/pipeline/skills/shared/core/multi-agent-status/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-sync/SKILL.md +51 -9
- package/pipeline/skills/shared/core/multi-agent-test/SKILL.md +2 -2
- package/pipeline/skills/shared/core/multi-agent-uninstall/SKILL.md +1 -1
- package/pipeline/skills/shared/core/multi-agent-update/SKILL.md +1 -1
- package/pipeline/skills/shared/external/accessibility-compliance-accessibility-audit/SKILL.md +1 -1
- package/pipeline/skills/shared/external/agent-introspection-debugging/SKILL.md +4 -4
- package/pipeline/skills/shared/external/agentflow/SKILL.md +1 -1
- package/pipeline/skills/shared/external/android-jetpack-compose-expert/SKILL.md +1 -1
- package/pipeline/skills/shared/external/android_ui_verification/SKILL.md +1 -1
- package/pipeline/skills/shared/external/api-patterns/SKILL.md +1 -1
- package/pipeline/skills/shared/external/api-security-best-practices/SKILL.md +1 -1
- package/pipeline/skills/shared/external/app-store-changelog/SKILL.md +1 -1
- package/pipeline/skills/shared/external/backlog/BACKLOG.md +1 -1
- package/pipeline/skills/shared/external/backlog/SKILL.md +12 -12
- package/pipeline/skills/shared/external/ci-cd-pipelines/SKILL.md +1 -1
- package/pipeline/skills/shared/external/context-compression/SKILL.md +1 -1
- package/pipeline/skills/shared/external/council/SKILL.md +3 -3
- package/pipeline/skills/shared/external/css-modern/SKILL.md +1 -1
- package/pipeline/skills/shared/external/database-patterns/SKILL.md +1 -1
- package/pipeline/skills/shared/external/debugging-strategies/SKILL.md +1 -1
- package/pipeline/skills/shared/external/docker-expert/SKILL.md +1 -1
- package/pipeline/skills/shared/external/fastapi-pro/SKILL.md +1 -1
- package/pipeline/skills/shared/external/firebase/SKILL.md +1 -1
- package/pipeline/skills/shared/external/github-actions-templates/SKILL.md +1 -1
- package/pipeline/skills/shared/external/help-skills/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-components-content/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-components-layout/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-components-status/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-components-system/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-foundations/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-inputs/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-patterns/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-platforms/SKILL.md +1 -1
- package/pipeline/skills/shared/external/hig-technologies/SKILL.md +1 -1
- package/pipeline/skills/shared/external/html-semantic/SKILL.md +1 -1
- package/pipeline/skills/shared/external/humanizer/SKILL.md +1 -1
- package/pipeline/skills/shared/external/ios-debugger-agent/SKILL.md +1 -1
- package/pipeline/skills/shared/external/ios-developer/SKILL.md +1 -1
- package/pipeline/skills/shared/external/kotlin-coroutines-expert/SKILL.md +1 -1
- package/pipeline/skills/shared/external/macos-menubar-tuist-app/SKILL.md +1 -1
- package/pipeline/skills/shared/external/macos-spm-app-packaging/SKILL.md +1 -1
- package/pipeline/skills/shared/external/monorepo-architect/SKILL.md +1 -1
- package/pipeline/skills/shared/external/nextjs-app-router/SKILL.md +1 -1
- package/pipeline/skills/shared/external/nodejs-backend-patterns/SKILL.md +1 -1
- package/pipeline/skills/shared/external/observability-engineer/SKILL.md +1 -1
- package/pipeline/skills/shared/external/python-patterns/SKILL.md +1 -1
- package/pipeline/skills/shared/external/react-best-practices/SKILL.md +1 -1
- package/pipeline/skills/shared/external/rest-api-design/SKILL.md +1 -1
- package/pipeline/skills/shared/external/search-first/SKILL.md +2 -2
- package/pipeline/skills/shared/external/skill-creator/SKILL.md +12 -12
- package/pipeline/skills/shared/external/skill-creator/audit.md +21 -21
- package/pipeline/skills/shared/external/skill-creator/checklist.md +3 -3
- package/pipeline/skills/shared/external/skill-creator/examples.md +10 -10
- package/pipeline/skills/shared/external/skill-creator/label-check.md +17 -17
- package/pipeline/skills/shared/external/skill-creator/scripts/audit-panel.js +86 -50
- package/pipeline/skills/shared/external/skill-creator/template.md +9 -9
- package/pipeline/skills/shared/external/swift-concurrency-expert/SKILL.md +1 -1
- package/pipeline/skills/shared/external/swiftui-performance-audit/SKILL.md +1 -1
- package/pipeline/skills/shared/external/swiftui-ui-patterns/SKILL.md +1 -1
- package/pipeline/skills/shared/external/swiftui-view-refactor/SKILL.md +1 -1
- package/pipeline/skills/shared/external/tailwind-css/SKILL.md +1 -1
- package/pipeline/skills/shared/external/testing-backend/SKILL.md +1 -1
- package/pipeline/skills/shared/external/typescript-patterns/SKILL.md +1 -1
- package/pipeline/skills/shared/external/vue-composition/SKILL.md +1 -1
- package/pipeline/skills/shared/external/web-accessibility/SKILL.md +1 -1
- package/pipeline/skills/shared/external/web-performance/SKILL.md +1 -1
- package/pipeline/skills/shared/external/web-testing/SKILL.md +1 -1
- package/pipeline/skills/shared/external/xcode-build-benchmark/schemas/build-benchmark.schema.json +9 -49
- package/pipeline/skills/skills-index.md +63 -59
- package/pipeline/scripts/smoke-plugin-validate.sh +0 -64
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"skillCount":
|
|
3
|
+
"skillCount": 193,
|
|
4
4
|
"entries": [
|
|
5
5
|
{
|
|
6
6
|
"name": "accessibility-compliance-accessibility-audit",
|
|
7
|
-
"description": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.",
|
|
7
|
+
"description": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance. Use when auditing a product against WCAG, or when a barrier needs diagnosing and remediating.",
|
|
8
8
|
"platform": null,
|
|
9
9
|
"group": "external",
|
|
10
10
|
"triggerKeywords": [],
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "agentflow",
|
|
25
|
-
"description": "Orchestrate autonomous AI development pipelines through your Kanban board (Asana, GitHub Projects, Linear). Manages multi-worker Claude Code dispatch, deterministic quality gates, adversarial review, per-task cost tracking, and crash-proof pipeline execution.",
|
|
25
|
+
"description": "Orchestrate autonomous AI development pipelines through your Kanban board (Asana, GitHub Projects, Linear). Manages multi-worker Claude Code dispatch, deterministic quality gates, adversarial review, per-task cost tracking, and crash-proof pipeline execution. Use when development should be driven fr",
|
|
26
26
|
"platform": null,
|
|
27
27
|
"group": "external",
|
|
28
28
|
"triggerKeywords": [],
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
"name": "android_ui_verification",
|
|
43
|
-
"description": "Automated end-to-end UI testing and verification on an Android Emulator using ADB.",
|
|
43
|
+
"description": "Automated end-to-end UI testing and verification on an Android Emulator using ADB. Use when an Android build needs driving on an emulator to verify its UI end to end.",
|
|
44
44
|
"platform": null,
|
|
45
45
|
"group": "external",
|
|
46
46
|
"triggerKeywords": [],
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"name": "android-jetpack-compose-expert",
|
|
61
|
-
"description": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3.",
|
|
61
|
+
"description": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3. Use when building or reviewing Compose UI, state handling or navigation.",
|
|
62
62
|
"platform": null,
|
|
63
63
|
"group": "external",
|
|
64
64
|
"triggerKeywords": [],
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
"name": "api-patterns",
|
|
88
|
-
"description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.",
|
|
88
|
+
"description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination. Use when choosing between REST, GraphQL and tRPC, or shaping response formats, versioning and pagination.",
|
|
89
89
|
"platform": null,
|
|
90
90
|
"group": "external",
|
|
91
91
|
"triggerKeywords": [],
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"name": "api-security-best-practices",
|
|
97
|
-
"description": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities",
|
|
97
|
+
"description": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities. Use when designing or reviewing an API's authentication, authorization, input validation or rate limiting.",
|
|
98
98
|
"platform": null,
|
|
99
99
|
"group": "external",
|
|
100
100
|
"triggerKeywords": [],
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
},
|
|
122
122
|
{
|
|
123
123
|
"name": "app-store-changelog",
|
|
124
|
-
"description": "Generate user-facing App Store release notes from git history since the last tag.",
|
|
124
|
+
"description": "Generate user-facing App Store release notes from git history since the last tag. Use when release notes have to be written from the commits since the last tag.",
|
|
125
125
|
"platform": null,
|
|
126
126
|
"group": "external",
|
|
127
127
|
"triggerKeywords": [],
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
150
|
"name": "apple-archive-compliance",
|
|
151
|
-
"description": "Apple App Store Review compliance - wraps the dev-toolkit-mcp `ios_app_store_audit` tool (
|
|
151
|
+
"description": "Apple App Store Review compliance - wraps the dev-toolkit-mcp `ios_app_store_audit` tool (18-rule deep scan) with ITMS error code mapping + EN/TR humanizer templates. Consumed by: /multi-agent:test 'store-ready' (primary dispatch), Phase 4 Security Auditor (catalog cross-ref on Info.plist / Privac",
|
|
152
152
|
"platform": null,
|
|
153
153
|
"group": "core",
|
|
154
154
|
"triggerKeywords": [],
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
"name": "ci-cd-pipelines",
|
|
223
|
-
"description": "CI/CD pipelines: GitHub Actions workflows, Docker multi-stage builds, environment management, secret management, deployment strategies",
|
|
223
|
+
"description": "CI/CD pipelines: GitHub Actions workflows, Docker multi-stage builds, environment management, secret management, deployment strategies. Use when setting up or fixing a build, test or deploy pipeline.",
|
|
224
224
|
"platform": null,
|
|
225
225
|
"group": "external",
|
|
226
226
|
"triggerKeywords": [],
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
},
|
|
293
293
|
{
|
|
294
294
|
"name": "context-compression",
|
|
295
|
-
"description": "When agent sessions generate millions of tokens of conversation history, compression becomes mandatory. The naive approach is aggressive compression to minimize tokens per request.",
|
|
295
|
+
"description": "When agent sessions generate millions of tokens of conversation history, compression becomes mandatory. The naive approach is aggressive compression to minimize tokens per request. Use when an agent session has grown too long to keep in full and history has to be compressed.",
|
|
296
296
|
"platform": null,
|
|
297
297
|
"group": "external",
|
|
298
298
|
"triggerKeywords": [],
|
|
@@ -364,7 +364,7 @@
|
|
|
364
364
|
},
|
|
365
365
|
{
|
|
366
366
|
"name": "css-modern",
|
|
367
|
-
"description": "Modern CSS: container queries, nesting, @layer, Grid/Flexbox patterns, custom properties, animations, and transitions",
|
|
367
|
+
"description": "Modern CSS: container queries, nesting, @layer, Grid/Flexbox patterns, custom properties, animations, and transitions. Use when writing or reviewing modern CSS: layout, container queries, custom properties, animation.",
|
|
368
368
|
"platform": null,
|
|
369
369
|
"group": "external",
|
|
370
370
|
"triggerKeywords": [],
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
},
|
|
374
374
|
{
|
|
375
375
|
"name": "database-patterns",
|
|
376
|
-
"description": "Database patterns: SQL best practices (PostgreSQL), indexing, query optimization, migrations, schema design, ORMs (SQLAlchemy, Prisma, Drizzle)",
|
|
376
|
+
"description": "Database patterns: SQL best practices (PostgreSQL), indexing, query optimization, migrations, schema design, ORMs (SQLAlchemy, Prisma, Drizzle). Use when designing a schema, writing migrations, or a query needs optimising.",
|
|
377
377
|
"platform": null,
|
|
378
378
|
"group": "external",
|
|
379
379
|
"triggerKeywords": [],
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
},
|
|
392
392
|
{
|
|
393
393
|
"name": "debugging-strategies",
|
|
394
|
-
"description": "Transform debugging from frustrating guesswork into systematic problem-solving with proven strategies, powerful tools, and methodical approaches.",
|
|
394
|
+
"description": "Transform debugging from frustrating guesswork into systematic problem-solving with proven strategies, powerful tools, and methodical approaches. Use when a bug resists guesswork and needs a systematic approach.",
|
|
395
395
|
"platform": null,
|
|
396
396
|
"group": "external",
|
|
397
397
|
"triggerKeywords": [],
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
},
|
|
410
410
|
{
|
|
411
411
|
"name": "docker-expert",
|
|
412
|
-
"description": "You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices.",
|
|
412
|
+
"description": "You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices. Use when writing or reviewing a Dockerf",
|
|
413
413
|
"platform": null,
|
|
414
414
|
"group": "external",
|
|
415
415
|
"triggerKeywords": [],
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
},
|
|
437
437
|
{
|
|
438
438
|
"name": "fastapi-pro",
|
|
439
|
-
"description": "Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns.",
|
|
439
|
+
"description": "Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns. Use when building or reviewing an async Python API with FastAPI, SQLAlchemy or Pydantic.",
|
|
440
440
|
"platform": null,
|
|
441
441
|
"group": "external",
|
|
442
442
|
"triggerKeywords": [],
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
},
|
|
446
446
|
{
|
|
447
447
|
"name": "firebase",
|
|
448
|
-
"description": "You're a developer who has shipped dozens of Firebase projects. You've seen the
|
|
448
|
+
"description": "You're a developer who has shipped dozens of Firebase projects. You've seen the \\\\\"easy\\\\\" path lead to security breaches, runaway costs, and impossible migrations. You know Firebase is powerful, but you also know its sharp edges. Use when integrating or reviewing Firebase: auth, Firestore, function",
|
|
449
449
|
"platform": null,
|
|
450
450
|
"group": "external",
|
|
451
451
|
"triggerKeywords": [],
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
},
|
|
455
455
|
{
|
|
456
456
|
"name": "github-actions-templates",
|
|
457
|
-
"description": "Production-ready GitHub Actions workflow patterns for testing, building, and deploying applications.",
|
|
457
|
+
"description": "Production-ready GitHub Actions workflow patterns for testing, building, and deploying applications. Use when a GitHub Actions workflow has to be written or hardened.",
|
|
458
458
|
"platform": null,
|
|
459
459
|
"group": "external",
|
|
460
460
|
"triggerKeywords": [],
|
|
@@ -490,7 +490,7 @@
|
|
|
490
490
|
},
|
|
491
491
|
{
|
|
492
492
|
"name": "help-skills",
|
|
493
|
-
"description": "Mevcut tum iOS/Swift skill'lerini listeler ve ne ise yaradiklarini aciklar.",
|
|
493
|
+
"description": "Mevcut tum iOS/Swift skill'lerini listeler ve ne ise yaradiklarini aciklar. Use when asked which iOS or Swift skills are available and what each one covers.",
|
|
494
494
|
"platform": null,
|
|
495
495
|
"group": "external",
|
|
496
496
|
"triggerKeywords": [],
|
|
@@ -499,7 +499,7 @@
|
|
|
499
499
|
},
|
|
500
500
|
{
|
|
501
501
|
"name": "hig-components-content",
|
|
502
|
-
"description": "Apple Human Interface Guidelines for content display components.",
|
|
502
|
+
"description": "Apple Human Interface Guidelines for content display components. Use when designing or reviewing how content is displayed on an Apple platform.",
|
|
503
503
|
"platform": null,
|
|
504
504
|
"group": "external",
|
|
505
505
|
"triggerKeywords": [],
|
|
@@ -508,7 +508,7 @@
|
|
|
508
508
|
},
|
|
509
509
|
{
|
|
510
510
|
"name": "hig-components-layout",
|
|
511
|
-
"description": "Apple Human Interface Guidelines for layout and navigation components.",
|
|
511
|
+
"description": "Apple Human Interface Guidelines for layout and navigation components. Use when designing or reviewing layout and navigation on an Apple platform.",
|
|
512
512
|
"platform": null,
|
|
513
513
|
"group": "external",
|
|
514
514
|
"triggerKeywords": [],
|
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
},
|
|
518
518
|
{
|
|
519
519
|
"name": "hig-components-status",
|
|
520
|
-
"description": "Apple HIG guidance for status and progress UI components including progress indicators, status bars, and activity rings.",
|
|
520
|
+
"description": "Apple HIG guidance for status and progress UI components including progress indicators, status bars, and activity rings. Use when designing or reviewing progress, status or feedback UI on an Apple platform.",
|
|
521
521
|
"platform": null,
|
|
522
522
|
"group": "external",
|
|
523
523
|
"triggerKeywords": [],
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
},
|
|
527
527
|
{
|
|
528
528
|
"name": "hig-components-system",
|
|
529
|
-
"description": "'Apple HIG guidance for system experience components: widgets, live activities, notifications, complications, home screen quick actions, top shelf, watch faces, app clips, and app shortcuts.'",
|
|
529
|
+
"description": "'Apple HIG guidance for system experience components: widgets, live activities, notifications, complications, home screen quick actions, top shelf, watch faces, app clips, and app shortcuts. Use when designing or reviewing widgets, Live Activities or notifications on an Apple platform.'",
|
|
530
530
|
"platform": null,
|
|
531
531
|
"group": "external",
|
|
532
532
|
"triggerKeywords": [],
|
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
537
|
"name": "hig-foundations",
|
|
538
|
-
"description": "Apple Human Interface Guidelines design foundations.",
|
|
538
|
+
"description": "Apple Human Interface Guidelines design foundations. Use when a design decision turns on Apple's foundations: layout, typography, colour, motion, accessibility.",
|
|
539
539
|
"platform": null,
|
|
540
540
|
"group": "external",
|
|
541
541
|
"triggerKeywords": [],
|
|
@@ -544,7 +544,7 @@
|
|
|
544
544
|
},
|
|
545
545
|
{
|
|
546
546
|
"name": "hig-inputs",
|
|
547
|
-
"description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered.",
|
|
547
|
+
"description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Use when designing or reviewing input controls, forms or text entry on an Apple platform.",
|
|
548
548
|
"platform": null,
|
|
549
549
|
"group": "external",
|
|
550
550
|
"triggerKeywords": [],
|
|
@@ -553,7 +553,7 @@
|
|
|
553
553
|
},
|
|
554
554
|
{
|
|
555
555
|
"name": "hig-patterns",
|
|
556
|
-
"description": "Apple Human Interface Guidelines interaction and UX patterns.",
|
|
556
|
+
"description": "Apple Human Interface Guidelines interaction and UX patterns. Use when an interaction or UX pattern on an Apple platform needs designing or reviewing.",
|
|
557
557
|
"platform": null,
|
|
558
558
|
"group": "external",
|
|
559
559
|
"triggerKeywords": [],
|
|
@@ -562,7 +562,7 @@
|
|
|
562
562
|
},
|
|
563
563
|
{
|
|
564
564
|
"name": "hig-platforms",
|
|
565
|
-
"description": "Apple Human Interface Guidelines for platform-specific design.",
|
|
565
|
+
"description": "Apple Human Interface Guidelines for platform-specific design. Use when a design has to fit a specific Apple platform's conventions.",
|
|
566
566
|
"platform": null,
|
|
567
567
|
"group": "external",
|
|
568
568
|
"triggerKeywords": [],
|
|
@@ -571,7 +571,7 @@
|
|
|
571
571
|
},
|
|
572
572
|
{
|
|
573
573
|
"name": "hig-technologies",
|
|
574
|
-
"description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered.",
|
|
574
|
+
"description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Use when designing or reviewing a feature built on an Apple technology such as Sign in with Apple, Wallet or Maps.",
|
|
575
575
|
"platform": null,
|
|
576
576
|
"group": "external",
|
|
577
577
|
"triggerKeywords": [],
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
},
|
|
590
590
|
{
|
|
591
591
|
"name": "html-semantic",
|
|
592
|
-
"description": "Semantic HTML5: elements, forms with validation and accessibility, SEO best practices, structured data, Open Graph, Twitter Cards",
|
|
592
|
+
"description": "Semantic HTML5: elements, forms with validation and accessibility, SEO best practices, structured data, Open Graph, Twitter Cards. Use when writing or reviewing markup, forms or document structure for semantics, accessibility and SEO.",
|
|
593
593
|
"platform": null,
|
|
594
594
|
"group": "external",
|
|
595
595
|
"triggerKeywords": [],
|
|
@@ -616,7 +616,7 @@
|
|
|
616
616
|
},
|
|
617
617
|
{
|
|
618
618
|
"name": "ios-debugger-agent",
|
|
619
|
-
"description": "Debug the current iOS project on a booted simulator with XcodeBuildMCP.",
|
|
619
|
+
"description": "Debug the current iOS project on a booted simulator with XcodeBuildMCP. Use when an iOS bug has to be reproduced and diagnosed on a booted simulator.",
|
|
620
620
|
"platform": null,
|
|
621
621
|
"group": "external",
|
|
622
622
|
"triggerKeywords": [],
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
},
|
|
626
626
|
{
|
|
627
627
|
"name": "ios-developer",
|
|
628
|
-
"description": "Develop native iOS applications with Swift/SwiftUI. Masters iOS 18, SwiftUI, UIKit integration, Core Data, networking, and App Store optimization.",
|
|
628
|
+
"description": "Develop native iOS applications with Swift/SwiftUI. Masters iOS 18, SwiftUI, UIKit integration, Core Data, networking, and App Store optimization. Use when building or reviewing a native iOS feature in Swift or SwiftUI.",
|
|
629
629
|
"platform": null,
|
|
630
630
|
"group": "external",
|
|
631
631
|
"triggerKeywords": [],
|
|
@@ -670,7 +670,7 @@
|
|
|
670
670
|
},
|
|
671
671
|
{
|
|
672
672
|
"name": "kotlin-coroutines-expert",
|
|
673
|
-
"description": "Expert patterns for Kotlin Coroutines and Flow, covering structured concurrency, error handling, and testing.",
|
|
673
|
+
"description": "Expert patterns for Kotlin Coroutines and Flow, covering structured concurrency, error handling, and testing. Use when writing or reviewing coroutines and Flow, or a concurrency bug needs diagnosing.",
|
|
674
674
|
"platform": null,
|
|
675
675
|
"group": "external",
|
|
676
676
|
"triggerKeywords": [],
|
|
@@ -688,7 +688,7 @@
|
|
|
688
688
|
},
|
|
689
689
|
{
|
|
690
690
|
"name": "macos-menubar-tuist-app",
|
|
691
|
-
"description": "Build, refactor, or review SwiftUI macOS menubar apps that use Tuist.",
|
|
691
|
+
"description": "Build, refactor, or review SwiftUI macOS menubar apps that use Tuist. Use when building, refactoring or reviewing a SwiftUI macOS menubar app that uses Tuist.",
|
|
692
692
|
"platform": null,
|
|
693
693
|
"group": "external",
|
|
694
694
|
"triggerKeywords": [],
|
|
@@ -697,7 +697,7 @@
|
|
|
697
697
|
},
|
|
698
698
|
{
|
|
699
699
|
"name": "macos-spm-app-packaging",
|
|
700
|
-
"description": "Scaffold, build, sign, and package SwiftPM macOS apps without Xcode projects.",
|
|
700
|
+
"description": "Scaffold, build, sign, and package SwiftPM macOS apps without Xcode projects. Use when a SwiftPM macOS app has to be built, signed or packaged without an Xcode project.",
|
|
701
701
|
"platform": null,
|
|
702
702
|
"group": "external",
|
|
703
703
|
"triggerKeywords": [],
|
|
@@ -724,7 +724,7 @@
|
|
|
724
724
|
},
|
|
725
725
|
{
|
|
726
726
|
"name": "monorepo-architect",
|
|
727
|
-
"description": "Expert in monorepo architecture, build systems, and dependency management at scale. Masters Nx, Turborepo, Bazel, and Lerna for efficient multi-project development. Use PROACTIVELY for monorepo setup,",
|
|
727
|
+
"description": "Expert in monorepo architecture, build systems, and dependency management at scale. Masters Nx, Turborepo, Bazel, and Lerna for efficient multi-project development. Use PROACTIVELY for monorepo setup,. Use when a monorepo's build system, task graph or dependency layout needs designing or fixing.",
|
|
728
728
|
"platform": null,
|
|
729
729
|
"group": "external",
|
|
730
730
|
"triggerKeywords": [],
|
|
@@ -733,7 +733,7 @@
|
|
|
733
733
|
},
|
|
734
734
|
{
|
|
735
735
|
"name": "multi-agent",
|
|
736
|
-
"description": "Task orchestrator: runs the full pipeline from a Jira ID or GitHub Issue URL - analysis → plan → TDD development → parallel review (Fable + Sonnet on Claude Code, GPT + Opus + Sonnet on Copilot CLI) → commit → log. Every step is written to agent-log.md.",
|
|
736
|
+
"description": "Task orchestrator: runs the full pipeline from a Jira ID or GitHub Issue URL - analysis → plan → TDD development → parallel review (Fable + Sonnet on Claude Code, GPT + Opus + Sonnet on Copilot CLI) → commit → log. Every step is written to agent-log.md. Use when given a Jira ID, a GitHub issue or ",
|
|
737
737
|
"platform": null,
|
|
738
738
|
"group": "core",
|
|
739
739
|
"triggerKeywords": [],
|
|
@@ -760,7 +760,7 @@
|
|
|
760
760
|
},
|
|
761
761
|
{
|
|
762
762
|
"name": "multi-agent-autopilot",
|
|
763
|
-
"description": "Launch any task in autopilot mode: skips every confirmation, runs end-to-end autonomously.",
|
|
763
|
+
"description": "Launch any task in autopilot mode: skips every confirmation, runs end-to-end autonomously. Use when a task should run end to end with no confirmation prompts.",
|
|
764
764
|
"platform": null,
|
|
765
765
|
"group": "core",
|
|
766
766
|
"triggerKeywords": [],
|
|
@@ -769,7 +769,7 @@
|
|
|
769
769
|
},
|
|
770
770
|
{
|
|
771
771
|
"name": "multi-agent-build-optimize",
|
|
772
|
-
"description": "Wrapper that dispatches to xcode-build-orchestrator on iOS repos. Benchmarks the current Xcode build, runs compilation / project / SPM analyzers, produces a recommend-first optimization plan in .build-benchmark/, and re-benchmarks after the developer approves changes. Fails fast on non-iOS stacks.",
|
|
772
|
+
"description": "Wrapper that dispatches to xcode-build-orchestrator on iOS repos. Benchmarks the current Xcode build, runs compilation / project / SPM analyzers, produces a recommend-first optimization plan in .build-benchmark/, and re-benchmarks after the developer approves changes. Fails fast on non-iOS stacks. U",
|
|
773
773
|
"platform": null,
|
|
774
774
|
"group": "core",
|
|
775
775
|
"triggerKeywords": [],
|
|
@@ -787,16 +787,25 @@
|
|
|
787
787
|
},
|
|
788
788
|
{
|
|
789
789
|
"name": "multi-agent-create-jira",
|
|
790
|
-
"description": "Create a standards-compliant Jira issue (Task / Bug / Story): asks the type, mines project conventions, drafts from a standard template with auto-sizing sections, full preview + explicit approval before create.",
|
|
790
|
+
"description": "Create a standards-compliant Jira issue (Task / Bug / Story): asks the type, mines project conventions, drafts from a standard template with auto-sizing sections, full preview + explicit approval before create. Use when a Jira Task, Bug or Story has to be written to the project's own conventions.",
|
|
791
791
|
"platform": null,
|
|
792
792
|
"group": "core",
|
|
793
793
|
"triggerKeywords": [],
|
|
794
794
|
"triggerPaths": [],
|
|
795
795
|
"relativePath": "shared/core/multi-agent-create-jira/SKILL.md"
|
|
796
796
|
},
|
|
797
|
+
{
|
|
798
|
+
"name": "multi-agent-design-check",
|
|
799
|
+
"description": "Mock-mode vs Figma design audit (iOS / Android, local-only). Pick repo + module, gate on mock support, enumerate every state driver into a countable target set, build Debug in a worktree, launch in mock mode, fetch Figma variants, compare each pixel + px-spacing + typography + color, and export a si",
|
|
800
|
+
"platform": null,
|
|
801
|
+
"group": "core",
|
|
802
|
+
"triggerKeywords": [],
|
|
803
|
+
"triggerPaths": [],
|
|
804
|
+
"relativePath": "shared/core/multi-agent-design-check/SKILL.md"
|
|
805
|
+
},
|
|
797
806
|
{
|
|
798
807
|
"name": "multi-agent-dev",
|
|
799
|
-
"description": "Fast development mode: Init → Dev (Opus) → Test → Commit → Report. Analysis, planning, and review phases are skipped.",
|
|
808
|
+
"description": "Fast development mode: Init → Dev (Opus) → Test → Commit → Report. Analysis, planning, and review phases are skipped. Use when the work is already scoped and only development, test and commit are needed.",
|
|
800
809
|
"platform": null,
|
|
801
810
|
"group": "core",
|
|
802
811
|
"triggerKeywords": [],
|
|
@@ -805,7 +814,7 @@
|
|
|
805
814
|
},
|
|
806
815
|
{
|
|
807
816
|
"name": "multi-agent-dev-autopilot",
|
|
808
|
-
"description": "Fastest mode: Dev (Opus) plus Autopilot. Init → Dev → Commit → Report with zero confirmations.",
|
|
817
|
+
"description": "Fastest mode: Dev (Opus) plus Autopilot. Init → Dev → Commit → Report with zero confirmations. Use when a change is well understood and should go from start to commit with no questions asked.",
|
|
809
818
|
"platform": null,
|
|
810
819
|
"group": "core",
|
|
811
820
|
"triggerKeywords": [],
|
|
@@ -814,7 +823,7 @@
|
|
|
814
823
|
},
|
|
815
824
|
{
|
|
816
825
|
"name": "multi-agent-dev-local",
|
|
817
|
-
"description": "Fast mode + local - Init → Dev(Opus) → Commit → Report, no worktree.",
|
|
826
|
+
"description": "Fast mode + local - Init → Dev(Opus) → Commit → Report, no worktree. Use when a change should be developed on the current branch without creating a worktree.",
|
|
818
827
|
"platform": null,
|
|
819
828
|
"group": "core",
|
|
820
829
|
"triggerKeywords": [],
|
|
@@ -823,7 +832,7 @@
|
|
|
823
832
|
},
|
|
824
833
|
{
|
|
825
834
|
"name": "multi-agent-dev-local-autopilot",
|
|
826
|
-
"description": "Fastest + local - Dev(Opus) + autopilot, no worktree, zero interaction.",
|
|
835
|
+
"description": "Fastest + local - Dev(Opus) + autopilot, no worktree, zero interaction. Use when a change should be developed on the current branch with no worktree and no prompts.",
|
|
827
836
|
"platform": null,
|
|
828
837
|
"group": "core",
|
|
829
838
|
"triggerKeywords": [],
|
|
@@ -832,7 +841,7 @@
|
|
|
832
841
|
},
|
|
833
842
|
{
|
|
834
843
|
"name": "multi-agent-diff-explain",
|
|
835
|
-
"description": "Map Phase 4 triage findings to branch diff lines. Read-only post-hoc command, used after review to answer 'which finding lines up with which code change'.",
|
|
844
|
+
"description": "Map Phase 4 triage findings to branch diff lines. Read-only post-hoc command, used after review to answer 'which finding lines up with which code change'. Use when a review finding has to be traced to the exact lines that caused it.",
|
|
836
845
|
"platform": null,
|
|
837
846
|
"group": "core",
|
|
838
847
|
"triggerKeywords": [],
|
|
@@ -841,16 +850,25 @@
|
|
|
841
850
|
},
|
|
842
851
|
{
|
|
843
852
|
"name": "multi-agent-finish",
|
|
844
|
-
"description": "Continue already-done LOCAL work through the pipeline tail: Review → Build+Test → Commit/PR → Report (technical analysis + Jira test-scenario comment). No dev phase.",
|
|
853
|
+
"description": "Continue already-done LOCAL work through the pipeline tail: Review → Build+Test → Commit/PR → Report (technical analysis + Jira test-scenario comment). No dev phase. Use when local work is already done and only review, build, commit and reporting remain.",
|
|
845
854
|
"platform": null,
|
|
846
855
|
"group": "core",
|
|
847
856
|
"triggerKeywords": [],
|
|
848
857
|
"triggerPaths": [],
|
|
849
858
|
"relativePath": "shared/core/multi-agent-finish/SKILL.md"
|
|
850
859
|
},
|
|
860
|
+
{
|
|
861
|
+
"name": "multi-agent-forget",
|
|
862
|
+
"description": "Remove a saved /multi-agent routine (created by /multi-agent:save): deletes its local-only command and its registry entry. Asks which one and confirms. Use when a saved routine is no longer wanted and should be removed.",
|
|
863
|
+
"platform": null,
|
|
864
|
+
"group": "core",
|
|
865
|
+
"triggerKeywords": [],
|
|
866
|
+
"triggerPaths": [],
|
|
867
|
+
"relativePath": "shared/core/multi-agent-forget/SKILL.md"
|
|
868
|
+
},
|
|
851
869
|
{
|
|
852
870
|
"name": "multi-agent-garbage-collect",
|
|
853
|
-
"description": "Sweep leftover /tmp scratch (picker state, review diffs, channel payloads, analysis drafts) from past runs. Dry-run first; confirms before deleting.",
|
|
871
|
+
"description": "Sweep leftover /tmp scratch (picker state, review diffs, channel payloads, analysis drafts) from past runs. Dry-run first; confirms before deleting. Use when scratch files from earlier runs need clearing out.",
|
|
854
872
|
"platform": null,
|
|
855
873
|
"group": "core",
|
|
856
874
|
"triggerKeywords": [],
|
|
@@ -859,7 +877,7 @@
|
|
|
859
877
|
},
|
|
860
878
|
{
|
|
861
879
|
"name": "multi-agent-help",
|
|
862
|
-
"description": "Multi-agent pipeline usage guide - renders in EN or TR per prefs.global.outputLanguage (falls back to promptLanguage for backward compatibility).",
|
|
880
|
+
"description": "Multi-agent pipeline usage guide - renders in EN or TR per prefs.global.outputLanguage (falls back to promptLanguage for backward compatibility). Use when asked what the pipeline can do, which mode to pick, or what a command means.",
|
|
863
881
|
"platform": null,
|
|
864
882
|
"group": "core",
|
|
865
883
|
"triggerKeywords": [],
|
|
@@ -868,7 +886,7 @@
|
|
|
868
886
|
},
|
|
869
887
|
{
|
|
870
888
|
"name": "multi-agent-issue",
|
|
871
|
-
"description": "List unassigned GitHub issues, pick one, auto-assign, and launch the multi-agent pipeline.",
|
|
889
|
+
"description": "List unassigned GitHub issues, pick one, auto-assign, and launch the multi-agent pipeline. Use when a GitHub issue should be picked up and started without knowing its number in advance.",
|
|
872
890
|
"platform": null,
|
|
873
891
|
"group": "core",
|
|
874
892
|
"triggerKeywords": [],
|
|
@@ -877,7 +895,7 @@
|
|
|
877
895
|
},
|
|
878
896
|
{
|
|
879
897
|
"name": "multi-agent-jira",
|
|
880
|
-
"description": "List open Jira issues, pick one, and launch the multi-agent pipeline.",
|
|
898
|
+
"description": "List open Jira issues, pick one, and launch the multi-agent pipeline. Use when a Jira issue should be picked up and started without knowing its key in advance.",
|
|
881
899
|
"platform": null,
|
|
882
900
|
"group": "core",
|
|
883
901
|
"triggerKeywords": [],
|
|
@@ -886,7 +904,7 @@
|
|
|
886
904
|
},
|
|
887
905
|
{
|
|
888
906
|
"name": "multi-agent-kill",
|
|
889
|
-
"description": "Stop the given task, then remove its worktree and branch. Asks for confirmation.",
|
|
907
|
+
"description": "Stop the given task, then remove its worktree and branch. Asks for confirmation. Use when a running or stuck task should be stopped and its worktree removed.",
|
|
890
908
|
"platform": null,
|
|
891
909
|
"group": "core",
|
|
892
910
|
"triggerKeywords": [],
|
|
@@ -895,7 +913,7 @@
|
|
|
895
913
|
},
|
|
896
914
|
{
|
|
897
915
|
"name": "multi-agent-language",
|
|
898
|
-
"description": "Toggle outputLanguage (assistant explanations). promptLanguage is fixed to English. External payloads stay English.",
|
|
916
|
+
"description": "Toggle outputLanguage (assistant explanations). promptLanguage is fixed to English. External payloads stay English. Use when the assistant should explain itself in a different language.",
|
|
899
917
|
"platform": null,
|
|
900
918
|
"group": "core",
|
|
901
919
|
"triggerKeywords": [],
|
|
@@ -904,7 +922,7 @@
|
|
|
904
922
|
},
|
|
905
923
|
{
|
|
906
924
|
"name": "multi-agent-local",
|
|
907
|
-
"description": "Full pipeline in local mode - no worktree, runs directly on the current branch.",
|
|
925
|
+
"description": "Full pipeline in local mode - no worktree, runs directly on the current branch. Use when the full pipeline should run on the current branch without creating a worktree.",
|
|
908
926
|
"platform": null,
|
|
909
927
|
"group": "core",
|
|
910
928
|
"triggerKeywords": [],
|
|
@@ -913,7 +931,7 @@
|
|
|
913
931
|
},
|
|
914
932
|
{
|
|
915
933
|
"name": "multi-agent-local-autopilot",
|
|
916
|
-
"description": "Full pipeline + local + autopilot - no worktree, no confirmations, all 8 phases run end-to-end on the current branch.",
|
|
934
|
+
"description": "Full pipeline + local + autopilot - no worktree, no confirmations, all 8 phases run end-to-end on the current branch. Use when the full pipeline should run on the current branch with no worktree and no prompts.",
|
|
917
935
|
"platform": null,
|
|
918
936
|
"group": "core",
|
|
919
937
|
"triggerKeywords": [],
|
|
@@ -922,7 +940,7 @@
|
|
|
922
940
|
},
|
|
923
941
|
{
|
|
924
942
|
"name": "multi-agent-log",
|
|
925
|
-
"description": "Show the agent-log.md for the given task. With no ID, shows the most recent task.",
|
|
943
|
+
"description": "Show the agent-log.md for the given task. With no ID, shows the most recent task. Use when asked what a task did, or to read its log.",
|
|
926
944
|
"platform": null,
|
|
927
945
|
"group": "core",
|
|
928
946
|
"triggerKeywords": [],
|
|
@@ -931,7 +949,7 @@
|
|
|
931
949
|
},
|
|
932
950
|
{
|
|
933
951
|
"name": "multi-agent-manual-test",
|
|
934
|
-
"description": "Switch to the active task's branch and prepare it for manual testing in Xcode. Phase 5 standalone (the UI Bug Hunter lives at multi-agent-test).",
|
|
952
|
+
"description": "Switch to the active task's branch and prepare it for manual testing in Xcode. Phase 5 standalone (the UI Bug Hunter lives at multi-agent-test). Use when a finished change needs trying by hand on a device or simulator.",
|
|
935
953
|
"platform": null,
|
|
936
954
|
"group": "core",
|
|
937
955
|
"triggerKeywords": [],
|
|
@@ -940,7 +958,7 @@
|
|
|
940
958
|
},
|
|
941
959
|
{
|
|
942
960
|
"name": "multi-agent-prune-logs",
|
|
943
|
-
"description": "Delete per-task project logs under ~/.claude/logs/multi-agent (filter by age/project/task). Audit trail + metrics are preserved. Dry-run first; confirms before deleting.",
|
|
961
|
+
"description": "Delete per-task project logs under ~/.claude/logs/multi-agent (filter by age/project/task). Audit trail + metrics are preserved. Dry-run first; confirms before deleting. Use when task logs have built up and need trimming by age, project or task.",
|
|
944
962
|
"platform": null,
|
|
945
963
|
"group": "core",
|
|
946
964
|
"triggerKeywords": [],
|
|
@@ -949,7 +967,7 @@
|
|
|
949
967
|
},
|
|
950
968
|
{
|
|
951
969
|
"name": "multi-agent-purge",
|
|
952
|
-
"description": "⚠️ Wipes every worktree, branch, log, and state file. Irreversible; asks for double confirmation.",
|
|
970
|
+
"description": "⚠️ Wipes every worktree, branch, log, and state file. Irreversible; asks for double confirmation. Use when every worktree, branch, log and state file should be wiped and the pipeline reset.",
|
|
953
971
|
"platform": null,
|
|
954
972
|
"group": "core",
|
|
955
973
|
"triggerKeywords": [],
|
|
@@ -958,7 +976,7 @@
|
|
|
958
976
|
},
|
|
959
977
|
{
|
|
960
978
|
"name": "multi-agent-refactor",
|
|
961
|
-
"description": "Analyse the project: extract adapted best-practices, hunt real bugs + improvement areas, check upstream drift of derived skills, draft one plan, take approval, develop, then ask whether to sync.",
|
|
979
|
+
"description": "Analyse the project: extract adapted best-practices, hunt real bugs + improvement areas, check upstream drift of derived skills, research the companion dev-toolkit MCP server against current MCP practice, draft one plan, take approval, develop, then ask whether to sync. Use when asked to review a pr",
|
|
962
980
|
"platform": null,
|
|
963
981
|
"group": "core",
|
|
964
982
|
"triggerKeywords": [],
|
|
@@ -967,7 +985,7 @@
|
|
|
967
985
|
},
|
|
968
986
|
{
|
|
969
987
|
"name": "multi-agent-resume",
|
|
970
|
-
"description": "Resume a stopped or failed task from the phase where it left off.",
|
|
988
|
+
"description": "Resume a stopped or failed task from the phase where it left off. Use when a task stopped or failed and should carry on from where it left off.",
|
|
971
989
|
"platform": null,
|
|
972
990
|
"group": "core",
|
|
973
991
|
"triggerKeywords": [],
|
|
@@ -976,7 +994,7 @@
|
|
|
976
994
|
},
|
|
977
995
|
{
|
|
978
996
|
"name": "multi-agent-review",
|
|
979
|
-
"description": "Run parallel review on a branch diff or a Pull Request: 2 models on Claude Code (Fable + Sonnet), 3 models on Copilot CLI (GPT + Opus + Sonnet). On PR input, posts per-finding inline comments + approve/needs-work. With no input (interactive), lists open GitHub + Bitbucket PRs to multi-select.",
|
|
997
|
+
"description": "Run parallel review on a branch diff or a Pull Request: 2 models on Claude Code (Fable + Sonnet), 3 models on Copilot CLI (GPT + Opus + Sonnet). On PR input, posts per-finding inline comments + approve/needs-work. With no input (interactive), lists open GitHub + Bitbucket PRs to multi-select. Use wh",
|
|
980
998
|
"platform": null,
|
|
981
999
|
"group": "core",
|
|
982
1000
|
"triggerKeywords": [],
|
|
@@ -985,7 +1003,7 @@
|
|
|
985
1003
|
},
|
|
986
1004
|
{
|
|
987
1005
|
"name": "multi-agent-review-issue",
|
|
988
|
-
"description": "Assess whether a GitHub issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as an issue comment. Read-only on code.",
|
|
1006
|
+
"description": "Assess whether a GitHub issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as an issue comment. Read-only on code. Use when deciding whether a GitHub issue is specified well enough to ha",
|
|
989
1007
|
"platform": null,
|
|
990
1008
|
"group": "core",
|
|
991
1009
|
"triggerKeywords": [],
|
|
@@ -994,16 +1012,34 @@
|
|
|
994
1012
|
},
|
|
995
1013
|
{
|
|
996
1014
|
"name": "multi-agent-review-jira",
|
|
997
|
-
"description": "Assess whether a Jira issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as a Jira comment. Read-only on code.",
|
|
1015
|
+
"description": "Assess whether a Jira issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as a Jira comment. Read-only on code. Use when deciding whether a Jira issue is specified well enough to hand to ",
|
|
998
1016
|
"platform": null,
|
|
999
1017
|
"group": "core",
|
|
1000
1018
|
"triggerKeywords": [],
|
|
1001
1019
|
"triggerPaths": [],
|
|
1002
1020
|
"relativePath": "shared/core/multi-agent-review-jira/SKILL.md"
|
|
1003
1021
|
},
|
|
1022
|
+
{
|
|
1023
|
+
"name": "multi-agent-routines",
|
|
1024
|
+
"description": "List your saved /multi-agent routines (from /multi-agent:save) with what each one does, rendered in outputLanguage. Use when asked which saved routines exist or what one of them does.",
|
|
1025
|
+
"platform": null,
|
|
1026
|
+
"group": "core",
|
|
1027
|
+
"triggerKeywords": [],
|
|
1028
|
+
"triggerPaths": [],
|
|
1029
|
+
"relativePath": "shared/core/multi-agent-routines/SKILL.md"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"name": "multi-agent-save",
|
|
1033
|
+
"description": "Save a recurring job as a reusable /multi-agent:<name> command. Reviews the conversation + your CLAUDE.md for candidate routines, you pick one and name it; stored local-only, never synced. Use when a job keeps recurring and should become its own reusable command.",
|
|
1034
|
+
"platform": null,
|
|
1035
|
+
"group": "core",
|
|
1036
|
+
"triggerKeywords": [],
|
|
1037
|
+
"triggerPaths": [],
|
|
1038
|
+
"relativePath": "shared/core/multi-agent-save/SKILL.md"
|
|
1039
|
+
},
|
|
1004
1040
|
{
|
|
1005
1041
|
"name": "multi-agent-scan",
|
|
1006
|
-
"description": "Skill security scan: walks local skill directories against a tiered pattern catalog.",
|
|
1042
|
+
"description": "Skill security scan: walks local skill directories against a tiered pattern catalog. Use when local skill directories need checking for unsafe or unexpected content.",
|
|
1007
1043
|
"platform": null,
|
|
1008
1044
|
"group": "core",
|
|
1009
1045
|
"triggerKeywords": [],
|
|
@@ -1012,7 +1048,7 @@
|
|
|
1012
1048
|
},
|
|
1013
1049
|
{
|
|
1014
1050
|
"name": "multi-agent-search",
|
|
1015
|
-
"description": "Log search across every agent-log.md with smart ranking and filters. Optional --semantic flag queries the per-repo triage corpus.",
|
|
1051
|
+
"description": "Log search across every agent-log.md with smart ranking and filters. Optional --semantic flag queries the per-repo triage corpus. Use when something has to be found across past task logs.",
|
|
1016
1052
|
"platform": null,
|
|
1017
1053
|
"group": "core",
|
|
1018
1054
|
"triggerKeywords": [],
|
|
@@ -1021,7 +1057,7 @@
|
|
|
1021
1057
|
},
|
|
1022
1058
|
{
|
|
1023
1059
|
"name": "multi-agent-setup",
|
|
1024
|
-
"description": "First-run setup wizard: keychain token discovery, Git Identity onboarding, and pipeline preparation.",
|
|
1060
|
+
"description": "First-run setup wizard: keychain token discovery, Git Identity onboarding, and pipeline preparation. Use when the pipeline is being set up for the first time, or tokens and git identity need onboarding.",
|
|
1025
1061
|
"platform": null,
|
|
1026
1062
|
"group": "core",
|
|
1027
1063
|
"triggerKeywords": [],
|
|
@@ -1030,7 +1066,7 @@
|
|
|
1030
1066
|
},
|
|
1031
1067
|
{
|
|
1032
1068
|
"name": "multi-agent-stack",
|
|
1033
|
-
"description": "Select the active stack for this repo by enabling the matching marketplace plugin(s) in .claude/settings.json (ios/android/mobile/backend/frontend/fullstack/all).",
|
|
1069
|
+
"description": "Select the active stack for this repo by enabling the matching marketplace plugin(s) in .claude/settings.json (ios/android/mobile/backend/frontend/fullstack/all). Use when a repo's stack changed or the wrong plugins are enabled for it.",
|
|
1034
1070
|
"platform": null,
|
|
1035
1071
|
"group": "core",
|
|
1036
1072
|
"triggerKeywords": [],
|
|
@@ -1039,7 +1075,7 @@
|
|
|
1039
1075
|
},
|
|
1040
1076
|
{
|
|
1041
1077
|
"name": "multi-agent-status",
|
|
1042
|
-
"description": "Show every multi-agent task's ID, phase, branch, and status.",
|
|
1078
|
+
"description": "Show every multi-agent task's ID, phase, branch, and status. Use when asked what is running, or for an overview of every task.",
|
|
1043
1079
|
"platform": null,
|
|
1044
1080
|
"group": "core",
|
|
1045
1081
|
"triggerKeywords": [],
|
|
@@ -1048,7 +1084,7 @@
|
|
|
1048
1084
|
},
|
|
1049
1085
|
{
|
|
1050
1086
|
"name": "multi-agent-sync",
|
|
1051
|
-
"description": "One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, and website.",
|
|
1087
|
+
"description": "One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, website, and the dev-toolkit MCP server. Use when work is finished and should be propagated across Claude Code, Copilot CLI, the repos, the website and the dev-toolkit server.",
|
|
1052
1088
|
"platform": null,
|
|
1053
1089
|
"group": "core",
|
|
1054
1090
|
"triggerKeywords": [],
|
|
@@ -1057,7 +1093,7 @@
|
|
|
1057
1093
|
},
|
|
1058
1094
|
{
|
|
1059
1095
|
"name": "multi-agent-test",
|
|
1060
|
-
"description": "UI Bug Hunter - iOS Simulator (simctl) + Android Emulator (adb). Auto-detects platform. Screenshot + tap + analyze on the booted device. The Phase 5 Manual Test flow lives at multi-agent-manual-test.",
|
|
1096
|
+
"description": "UI Bug Hunter - iOS Simulator (simctl) + Android Emulator (adb). Auto-detects platform. Screenshot + tap + analyze on the booted device. The Phase 5 Manual Test flow lives at multi-agent-manual-test. Use when a running app should be driven on a simulator or emulator to hunt UI bugs.",
|
|
1061
1097
|
"platform": null,
|
|
1062
1098
|
"group": "core",
|
|
1063
1099
|
"triggerKeywords": [],
|
|
@@ -1066,7 +1102,7 @@
|
|
|
1066
1102
|
},
|
|
1067
1103
|
{
|
|
1068
1104
|
"name": "multi-agent-uninstall",
|
|
1069
|
-
"description": "Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are always left untouched; --all-data also clears pipeline settings and logs. Asks for double confirmation.",
|
|
1105
|
+
"description": "Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are always left untouched; --all-data also clears pipeline settings and logs. Asks for double confirmation. Use when the pipeline should be removed from Claude Code and Copilot CLI.",
|
|
1070
1106
|
"platform": null,
|
|
1071
1107
|
"group": "core",
|
|
1072
1108
|
"triggerKeywords": [],
|
|
@@ -1075,7 +1111,7 @@
|
|
|
1075
1111
|
},
|
|
1076
1112
|
{
|
|
1077
1113
|
"name": "multi-agent-update",
|
|
1078
|
-
"description": "Update the pipeline to the latest version: git pull, install, migrate.",
|
|
1114
|
+
"description": "Update the pipeline to the latest version: git pull, install, migrate. Use when the installed pipeline is behind and should be brought to the latest version.",
|
|
1079
1115
|
"platform": null,
|
|
1080
1116
|
"group": "core",
|
|
1081
1117
|
"triggerKeywords": [],
|
|
@@ -1102,7 +1138,7 @@
|
|
|
1102
1138
|
},
|
|
1103
1139
|
{
|
|
1104
1140
|
"name": "nextjs-app-router",
|
|
1105
|
-
"description": "Next.js 15+ App Router: Server/Client Components, Server Actions, data fetching, layouts, middleware, ISR/SSG/SSR, and routing patterns",
|
|
1141
|
+
"description": "Next.js 15+ App Router: Server/Client Components, Server Actions, data fetching, layouts, middleware, ISR/SSG/SSR, and routing patterns. Use when building or reviewing App Router work: Server Components, Server Actions, data fetching, layouts.",
|
|
1106
1142
|
"platform": null,
|
|
1107
1143
|
"group": "external",
|
|
1108
1144
|
"triggerKeywords": [],
|
|
@@ -1111,7 +1147,7 @@
|
|
|
1111
1147
|
},
|
|
1112
1148
|
{
|
|
1113
1149
|
"name": "nodejs-backend-patterns",
|
|
1114
|
-
"description": "Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices.",
|
|
1150
|
+
"description": "Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices. Use when building or reviewing a Node.js service: structure, error handling, configuration, scaling.",
|
|
1115
1151
|
"platform": null,
|
|
1116
1152
|
"group": "external",
|
|
1117
1153
|
"triggerKeywords": [],
|
|
@@ -1120,7 +1156,7 @@
|
|
|
1120
1156
|
},
|
|
1121
1157
|
{
|
|
1122
1158
|
"name": "observability-engineer",
|
|
1123
|
-
"description": "Build production-ready monitoring, logging, and tracing systems. Implements comprehensive observability strategies, SLI/SLO management, and incident response workflows.",
|
|
1159
|
+
"description": "Build production-ready monitoring, logging, and tracing systems. Implements comprehensive observability strategies, SLI/SLO management, and incident response workflows. Use when metrics, logging, tracing or alerting have to be designed or fixed.",
|
|
1124
1160
|
"platform": null,
|
|
1125
1161
|
"group": "external",
|
|
1126
1162
|
"triggerKeywords": [],
|
|
@@ -1192,7 +1228,7 @@
|
|
|
1192
1228
|
},
|
|
1193
1229
|
{
|
|
1194
1230
|
"name": "python-patterns",
|
|
1195
|
-
"description": "Modern Python 3.12+: type hints, dataclasses, Pydantic v2, async/await, context managers, generators, pattern matching",
|
|
1231
|
+
"description": "Modern Python 3.12+: type hints, dataclasses, Pydantic v2, async/await, context managers, generators, pattern matching. Use when writing or reviewing modern Python: typing, dataclasses, Pydantic, async, generators.",
|
|
1196
1232
|
"platform": null,
|
|
1197
1233
|
"group": "external",
|
|
1198
1234
|
"triggerKeywords": [],
|
|
@@ -1201,7 +1237,7 @@
|
|
|
1201
1237
|
},
|
|
1202
1238
|
{
|
|
1203
1239
|
"name": "react-best-practices",
|
|
1204
|
-
"description": "React 19+ best practices: Server Components, use() hook, Actions, hooks patterns, state management, and performance optimization",
|
|
1240
|
+
"description": "React 19+ best practices: Server Components, use() hook, Actions, hooks patterns, state management, and performance optimization. Use when building or reviewing React work: components, hooks, state, Server Components, Actions.",
|
|
1205
1241
|
"platform": null,
|
|
1206
1242
|
"group": "external",
|
|
1207
1243
|
"triggerKeywords": [],
|
|
@@ -1219,7 +1255,7 @@
|
|
|
1219
1255
|
},
|
|
1220
1256
|
{
|
|
1221
1257
|
"name": "rest-api-design",
|
|
1222
|
-
"description": "REST API design: HTTP methods, status codes, pagination, versioning, rate limiting, caching headers, OpenAPI documentation",
|
|
1258
|
+
"description": "REST API design: HTTP methods, status codes, pagination, versioning, rate limiting, caching headers, OpenAPI documentation. Use when a REST surface needs designing or reviewing: methods, status codes, pagination, versioning, caching.",
|
|
1223
1259
|
"platform": null,
|
|
1224
1260
|
"group": "external",
|
|
1225
1261
|
"triggerKeywords": [],
|
|
@@ -1264,7 +1300,7 @@
|
|
|
1264
1300
|
},
|
|
1265
1301
|
{
|
|
1266
1302
|
"name": "skill-creator",
|
|
1267
|
-
"description": "Author and refine skills for a plugin/toolkit efficiently. Use when creating a new skill, trimming or splitting an existing one, writing a skill's description, or choosing skill vs command vs agent vs CLAUDE.md. Encodes the house rules
|
|
1303
|
+
"description": "Author and refine skills for a plugin/toolkit efficiently. Use when creating a new skill, trimming or splitting an existing one, writing a skill's description, or choosing skill vs command vs agent vs CLAUDE.md. Encodes the house rules - lean SKILL.md as an index, progressive disclosure into bundled",
|
|
1268
1304
|
"platform": null,
|
|
1269
1305
|
"group": "external",
|
|
1270
1306
|
"triggerKeywords": [],
|
|
@@ -1345,7 +1381,7 @@
|
|
|
1345
1381
|
},
|
|
1346
1382
|
{
|
|
1347
1383
|
"name": "swift-concurrency-expert",
|
|
1348
|
-
"description": "Review and fix Swift concurrency issues such as actor isolation and Sendable violations.",
|
|
1384
|
+
"description": "Review and fix Swift concurrency issues such as actor isolation and Sendable violations. Use when a Swift concurrency problem needs diagnosing, such as actor isolation or a Sendable violation.",
|
|
1349
1385
|
"platform": null,
|
|
1350
1386
|
"group": "external",
|
|
1351
1387
|
"triggerKeywords": [],
|
|
@@ -1507,7 +1543,7 @@
|
|
|
1507
1543
|
},
|
|
1508
1544
|
{
|
|
1509
1545
|
"name": "swiftui-performance-audit",
|
|
1510
|
-
"description": "Audit SwiftUI performance issues from code review and profiling evidence.",
|
|
1546
|
+
"description": "Audit SwiftUI performance issues from code review and profiling evidence. Use when a SwiftUI view is slow and the cause has to be found from code and profiling evidence.",
|
|
1511
1547
|
"platform": null,
|
|
1512
1548
|
"group": "external",
|
|
1513
1549
|
"triggerKeywords": [],
|
|
@@ -1525,7 +1561,7 @@
|
|
|
1525
1561
|
},
|
|
1526
1562
|
{
|
|
1527
1563
|
"name": "swiftui-ui-patterns",
|
|
1528
|
-
"description": "Apply proven SwiftUI UI patterns for navigation, sheets, async state, and reusable screens.",
|
|
1564
|
+
"description": "Apply proven SwiftUI UI patterns for navigation, sheets, async state, and reusable screens. Use when a SwiftUI screen needs a proven pattern for navigation, sheets, async state or reuse.",
|
|
1529
1565
|
"platform": null,
|
|
1530
1566
|
"group": "external",
|
|
1531
1567
|
"triggerKeywords": [],
|
|
@@ -1543,7 +1579,7 @@
|
|
|
1543
1579
|
},
|
|
1544
1580
|
{
|
|
1545
1581
|
"name": "swiftui-view-refactor",
|
|
1546
|
-
"description": "Refactor SwiftUI views into smaller components with stable, explicit data flow.",
|
|
1582
|
+
"description": "Refactor SwiftUI views into smaller components with stable, explicit data flow. Use when a SwiftUI view has grown too large and needs splitting with clear data flow.",
|
|
1547
1583
|
"platform": null,
|
|
1548
1584
|
"group": "external",
|
|
1549
1585
|
"triggerKeywords": [],
|
|
@@ -1561,7 +1597,7 @@
|
|
|
1561
1597
|
},
|
|
1562
1598
|
{
|
|
1563
1599
|
"name": "tailwind-css",
|
|
1564
|
-
"description": "Tailwind CSS v4: utility-first styling, responsive design, dark mode, custom themes, component patterns, and cn() utility",
|
|
1600
|
+
"description": "Tailwind CSS v4: utility-first styling, responsive design, dark mode, custom themes, component patterns, and cn() utility. Use when styling or reviewing UI with Tailwind: utilities, responsive design, dark mode, theming.",
|
|
1565
1601
|
"platform": null,
|
|
1566
1602
|
"group": "external",
|
|
1567
1603
|
"triggerKeywords": [],
|
|
@@ -1570,7 +1606,7 @@
|
|
|
1570
1606
|
},
|
|
1571
1607
|
{
|
|
1572
1608
|
"name": "testing-backend",
|
|
1573
|
-
"description": "Backend testing: pytest patterns (Python), Jest patterns (Node.js), integration testing, database fixtures/factories, API contract testing",
|
|
1609
|
+
"description": "Backend testing: pytest patterns (Python), Jest patterns (Node.js), integration testing, database fixtures/factories, API contract testing. Use when writing or reviewing backend tests: unit, integration, database and API level.",
|
|
1574
1610
|
"platform": null,
|
|
1575
1611
|
"group": "external",
|
|
1576
1612
|
"triggerKeywords": [],
|
|
@@ -1588,7 +1624,7 @@
|
|
|
1588
1624
|
},
|
|
1589
1625
|
{
|
|
1590
1626
|
"name": "typescript-patterns",
|
|
1591
|
-
"description": "Modern TypeScript patterns: strict mode, utility types, generics, conditional types, type guards, discriminated unions, Zod validation",
|
|
1627
|
+
"description": "Modern TypeScript patterns: strict mode, utility types, generics, conditional types, type guards, discriminated unions, Zod validation. Use when writing or reviewing TypeScript types: generics, utility and conditional types, guards, strict mode.",
|
|
1592
1628
|
"platform": null,
|
|
1593
1629
|
"group": "external",
|
|
1594
1630
|
"triggerKeywords": [],
|
|
@@ -1606,7 +1642,7 @@
|
|
|
1606
1642
|
},
|
|
1607
1643
|
{
|
|
1608
1644
|
"name": "vue-composition",
|
|
1609
|
-
"description": "Vue 3 Composition API: ref, reactive, computed, watch, composables, Pinia state management, Vue Router 4, script setup",
|
|
1645
|
+
"description": "Vue 3 Composition API: ref, reactive, computed, watch, composables, Pinia state management, Vue Router 4, script setup. Use when building or reviewing Vue 3 work with the Composition API, composables or Pinia.",
|
|
1610
1646
|
"platform": null,
|
|
1611
1647
|
"group": "external",
|
|
1612
1648
|
"triggerKeywords": [],
|
|
@@ -1624,7 +1660,7 @@
|
|
|
1624
1660
|
},
|
|
1625
1661
|
{
|
|
1626
1662
|
"name": "web-accessibility",
|
|
1627
|
-
"description": "WCAG 2.2 AA web accessibility: ARIA roles/states, keyboard navigation, screen readers, color contrast, focus management, axe-core testing",
|
|
1663
|
+
"description": "WCAG 2.2 AA web accessibility: ARIA roles/states, keyboard navigation, screen readers, color contrast, focus management, axe-core testing. Use when auditing or fixing a web UI against WCAG: ARIA, keyboard access, screen readers, contrast.",
|
|
1628
1664
|
"platform": null,
|
|
1629
1665
|
"group": "external",
|
|
1630
1666
|
"triggerKeywords": [],
|
|
@@ -1633,7 +1669,7 @@
|
|
|
1633
1669
|
},
|
|
1634
1670
|
{
|
|
1635
1671
|
"name": "web-performance",
|
|
1636
|
-
"description": "Web performance: Core Web Vitals (LCP, INP, CLS), image optimization, code splitting, caching strategies, bundle analysis, Lighthouse",
|
|
1672
|
+
"description": "Web performance: Core Web Vitals (LCP, INP, CLS), image optimization, code splitting, caching strategies, bundle analysis, Lighthouse. Use when a page is slow and Core Web Vitals, images, bundles or caching have to be addressed.",
|
|
1637
1673
|
"platform": null,
|
|
1638
1674
|
"group": "external",
|
|
1639
1675
|
"triggerKeywords": [],
|
|
@@ -1642,7 +1678,7 @@
|
|
|
1642
1678
|
},
|
|
1643
1679
|
{
|
|
1644
1680
|
"name": "web-testing",
|
|
1645
|
-
"description": "Web testing: Vitest unit tests, React Testing Library, Playwright E2E, MSW API mocking, testing hooks and async operations",
|
|
1681
|
+
"description": "Web testing: Vitest unit tests, React Testing Library, Playwright E2E, MSW API mocking, testing hooks and async operations. Use when writing or reviewing web tests with Vitest, Testing Library, Playwright or MSW.",
|
|
1646
1682
|
"platform": null,
|
|
1647
1683
|
"group": "external",
|
|
1648
1684
|
"triggerKeywords": [],
|