compound-engineering-pi 0.2.3
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/LICENSE +21 -0
- package/README.md +124 -0
- package/bin/compound-engineering-pi +12 -0
- package/bin/compound-plugin +12 -0
- package/compound-engineering-pi +12 -0
- package/compound-plugin +5 -0
- package/docs/pi.md +152 -0
- package/extensions/compound-engineering-compat.ts +452 -0
- package/package.json +84 -0
- package/pi-resources/compound-engineering/mcporter.json +7 -0
- package/plugins/coding-tutor/.claude-plugin/plugin.json +9 -0
- package/plugins/coding-tutor/README.md +37 -0
- package/plugins/coding-tutor/commands/quiz-me.md +1 -0
- package/plugins/coding-tutor/commands/sync-tutorials.md +25 -0
- package/plugins/coding-tutor/commands/teach-me.md +1 -0
- package/plugins/coding-tutor/skills/coding-tutor/SKILL.md +214 -0
- package/plugins/coding-tutor/skills/coding-tutor/scripts/create_tutorial.py +207 -0
- package/plugins/coding-tutor/skills/coding-tutor/scripts/index_tutorials.py +193 -0
- package/plugins/coding-tutor/skills/coding-tutor/scripts/quiz_priority.py +190 -0
- package/plugins/coding-tutor/skills/coding-tutor/scripts/setup_tutorials.py +118 -0
- package/plugins/compound-engineering/.claude-plugin/plugin.json +33 -0
- package/plugins/compound-engineering/CHANGELOG.md +457 -0
- package/plugins/compound-engineering/CLAUDE.md +89 -0
- package/plugins/compound-engineering/LICENSE +21 -0
- package/plugins/compound-engineering/README.md +232 -0
- package/plugins/compound-engineering/agents/design/design-implementation-reviewer.md +109 -0
- package/plugins/compound-engineering/agents/design/design-iterator.md +224 -0
- package/plugins/compound-engineering/agents/design/figma-design-sync.md +190 -0
- package/plugins/compound-engineering/agents/docs/ankane-readme-writer.md +65 -0
- package/plugins/compound-engineering/agents/research/best-practices-researcher.md +126 -0
- package/plugins/compound-engineering/agents/research/framework-docs-researcher.md +106 -0
- package/plugins/compound-engineering/agents/research/git-history-analyzer.md +59 -0
- package/plugins/compound-engineering/agents/research/learnings-researcher.md +264 -0
- package/plugins/compound-engineering/agents/research/repo-research-analyst.md +135 -0
- package/plugins/compound-engineering/agents/review/agent-native-reviewer.md +261 -0
- package/plugins/compound-engineering/agents/review/architecture-strategist.md +67 -0
- package/plugins/compound-engineering/agents/review/code-simplicity-reviewer.md +101 -0
- package/plugins/compound-engineering/agents/review/data-integrity-guardian.md +85 -0
- package/plugins/compound-engineering/agents/review/data-migration-expert.md +112 -0
- package/plugins/compound-engineering/agents/review/deployment-verification-agent.md +174 -0
- package/plugins/compound-engineering/agents/review/dhh-rails-reviewer.md +66 -0
- package/plugins/compound-engineering/agents/review/julik-frontend-races-reviewer.md +221 -0
- package/plugins/compound-engineering/agents/review/kieran-python-reviewer.md +133 -0
- package/plugins/compound-engineering/agents/review/kieran-rails-reviewer.md +115 -0
- package/plugins/compound-engineering/agents/review/kieran-typescript-reviewer.md +124 -0
- package/plugins/compound-engineering/agents/review/pattern-recognition-specialist.md +72 -0
- package/plugins/compound-engineering/agents/review/performance-oracle.md +137 -0
- package/plugins/compound-engineering/agents/review/schema-drift-detector.md +154 -0
- package/plugins/compound-engineering/agents/review/security-sentinel.md +114 -0
- package/plugins/compound-engineering/agents/workflow/bug-reproduction-validator.md +82 -0
- package/plugins/compound-engineering/agents/workflow/every-style-editor.md +64 -0
- package/plugins/compound-engineering/agents/workflow/lint.md +16 -0
- package/plugins/compound-engineering/agents/workflow/pr-comment-resolver.md +84 -0
- package/plugins/compound-engineering/agents/workflow/spec-flow-analyzer.md +134 -0
- package/plugins/compound-engineering/commands/agent-native-audit.md +278 -0
- package/plugins/compound-engineering/commands/changelog.md +138 -0
- package/plugins/compound-engineering/commands/create-agent-skill.md +9 -0
- package/plugins/compound-engineering/commands/deepen-plan.md +546 -0
- package/plugins/compound-engineering/commands/deploy-docs.md +113 -0
- package/plugins/compound-engineering/commands/feature-video.md +342 -0
- package/plugins/compound-engineering/commands/generate_command.md +163 -0
- package/plugins/compound-engineering/commands/heal-skill.md +143 -0
- package/plugins/compound-engineering/commands/lfg.md +20 -0
- package/plugins/compound-engineering/commands/release-docs.md +212 -0
- package/plugins/compound-engineering/commands/report-bug.md +151 -0
- package/plugins/compound-engineering/commands/reproduce-bug.md +100 -0
- package/plugins/compound-engineering/commands/resolve_parallel.md +35 -0
- package/plugins/compound-engineering/commands/resolve_todo_parallel.md +37 -0
- package/plugins/compound-engineering/commands/slfg.md +32 -0
- package/plugins/compound-engineering/commands/technical_review.md +8 -0
- package/plugins/compound-engineering/commands/test-browser.md +339 -0
- package/plugins/compound-engineering/commands/test-xcode.md +332 -0
- package/plugins/compound-engineering/commands/triage.md +311 -0
- package/plugins/compound-engineering/commands/workflows/brainstorm.md +124 -0
- package/plugins/compound-engineering/commands/workflows/compound.md +239 -0
- package/plugins/compound-engineering/commands/workflows/plan.md +551 -0
- package/plugins/compound-engineering/commands/workflows/review.md +526 -0
- package/plugins/compound-engineering/commands/workflows/work.md +433 -0
- package/plugins/compound-engineering/skills/agent-browser/SKILL.md +223 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/SKILL.md +435 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/action-parity-discipline.md +409 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/agent-execution-patterns.md +467 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/agent-native-testing.md +582 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/architecture-patterns.md +478 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/dynamic-context-injection.md +338 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/files-universal-interface.md +301 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/from-primitives-to-domain-tools.md +359 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/mcp-tool-design.md +506 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/mobile-patterns.md +871 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/product-implications.md +443 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/refactoring-to-prompt-native.md +317 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/self-modification.md +269 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/shared-workspace-architecture.md +680 -0
- package/plugins/compound-engineering/skills/agent-native-architecture/references/system-prompt-design.md +250 -0
- package/plugins/compound-engineering/skills/andrew-kane-gem-writer/SKILL.md +184 -0
- package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/database-adapters.md +231 -0
- package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/module-organization.md +121 -0
- package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/rails-integration.md +183 -0
- package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/resources.md +119 -0
- package/plugins/compound-engineering/skills/andrew-kane-gem-writer/references/testing-patterns.md +261 -0
- package/plugins/compound-engineering/skills/brainstorming/SKILL.md +190 -0
- package/plugins/compound-engineering/skills/compound-docs/SKILL.md +511 -0
- package/plugins/compound-engineering/skills/compound-docs/assets/critical-pattern-template.md +34 -0
- package/plugins/compound-engineering/skills/compound-docs/assets/resolution-template.md +93 -0
- package/plugins/compound-engineering/skills/compound-docs/references/yaml-schema.md +65 -0
- package/plugins/compound-engineering/skills/compound-docs/schema.yaml +176 -0
- package/plugins/compound-engineering/skills/create-agent-skills/SKILL.md +275 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/api-security.md +226 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/be-clear-and-direct.md +531 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/best-practices.md +404 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/common-patterns.md +595 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/core-principles.md +437 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/executable-code.md +175 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/iteration-and-testing.md +474 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/official-spec.md +134 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/recommended-structure.md +168 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/skill-structure.md +152 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/using-scripts.md +113 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/using-templates.md +112 -0
- package/plugins/compound-engineering/skills/create-agent-skills/references/workflows-and-validation.md +510 -0
- package/plugins/compound-engineering/skills/create-agent-skills/templates/router-skill.md +73 -0
- package/plugins/compound-engineering/skills/create-agent-skills/templates/simple-skill.md +33 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-reference.md +96 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-script.md +93 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-template.md +74 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/add-workflow.md +120 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/audit-skill.md +138 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/create-domain-expertise-skill.md +605 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/create-new-skill.md +191 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/get-guidance.md +121 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/upgrade-to-router.md +161 -0
- package/plugins/compound-engineering/skills/create-agent-skills/workflows/verify-skill.md +204 -0
- package/plugins/compound-engineering/skills/dhh-rails-style/SKILL.md +185 -0
- package/plugins/compound-engineering/skills/dhh-rails-style/references/architecture.md +653 -0
- package/plugins/compound-engineering/skills/dhh-rails-style/references/controllers.md +303 -0
- package/plugins/compound-engineering/skills/dhh-rails-style/references/frontend.md +510 -0
- package/plugins/compound-engineering/skills/dhh-rails-style/references/gems.md +266 -0
- package/plugins/compound-engineering/skills/dhh-rails-style/references/models.md +359 -0
- package/plugins/compound-engineering/skills/dhh-rails-style/references/testing.md +338 -0
- package/plugins/compound-engineering/skills/document-review/SKILL.md +87 -0
- package/plugins/compound-engineering/skills/dspy-ruby/SKILL.md +737 -0
- package/plugins/compound-engineering/skills/dspy-ruby/assets/config-template.rb +187 -0
- package/plugins/compound-engineering/skills/dspy-ruby/assets/module-template.rb +300 -0
- package/plugins/compound-engineering/skills/dspy-ruby/assets/signature-template.rb +221 -0
- package/plugins/compound-engineering/skills/dspy-ruby/references/core-concepts.md +674 -0
- package/plugins/compound-engineering/skills/dspy-ruby/references/observability.md +366 -0
- package/plugins/compound-engineering/skills/dspy-ruby/references/optimization.md +603 -0
- package/plugins/compound-engineering/skills/dspy-ruby/references/providers.md +418 -0
- package/plugins/compound-engineering/skills/dspy-ruby/references/toolsets.md +502 -0
- package/plugins/compound-engineering/skills/every-style-editor/SKILL.md +134 -0
- package/plugins/compound-engineering/skills/every-style-editor/references/EVERY_WRITE_STYLE.md +529 -0
- package/plugins/compound-engineering/skills/file-todos/SKILL.md +252 -0
- package/plugins/compound-engineering/skills/file-todos/assets/todo-template.md +155 -0
- package/plugins/compound-engineering/skills/frontend-design/SKILL.md +42 -0
- package/plugins/compound-engineering/skills/gemini-imagegen/SKILL.md +237 -0
- package/plugins/compound-engineering/skills/gemini-imagegen/requirements.txt +2 -0
- package/plugins/compound-engineering/skills/gemini-imagegen/scripts/compose_images.py +157 -0
- package/plugins/compound-engineering/skills/gemini-imagegen/scripts/edit_image.py +144 -0
- package/plugins/compound-engineering/skills/gemini-imagegen/scripts/gemini_images.py +263 -0
- package/plugins/compound-engineering/skills/gemini-imagegen/scripts/generate_image.py +133 -0
- package/plugins/compound-engineering/skills/gemini-imagegen/scripts/multi_turn_chat.py +216 -0
- package/plugins/compound-engineering/skills/git-worktree/SKILL.md +302 -0
- package/plugins/compound-engineering/skills/git-worktree/scripts/worktree-manager.sh +337 -0
- package/plugins/compound-engineering/skills/orchestrating-swarms/SKILL.md +1718 -0
- package/plugins/compound-engineering/skills/rclone/SKILL.md +150 -0
- package/plugins/compound-engineering/skills/rclone/scripts/check_setup.sh +60 -0
- package/plugins/compound-engineering/skills/resolve-pr-parallel/SKILL.md +89 -0
- package/plugins/compound-engineering/skills/resolve-pr-parallel/scripts/get-pr-comments +68 -0
- package/plugins/compound-engineering/skills/resolve-pr-parallel/scripts/resolve-pr-thread +23 -0
- package/plugins/compound-engineering/skills/skill-creator/SKILL.md +210 -0
- package/plugins/compound-engineering/skills/skill-creator/scripts/init_skill.py +303 -0
- package/plugins/compound-engineering/skills/skill-creator/scripts/package_skill.py +110 -0
- package/plugins/compound-engineering/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/prompts/deepen-plan.md +549 -0
- package/prompts/feature-video.md +341 -0
- package/prompts/resolve_todo_parallel.md +36 -0
- package/prompts/test-browser.md +342 -0
- package/prompts/workflows-brainstorm.md +123 -0
- package/prompts/workflows-compound.md +238 -0
- package/prompts/workflows-plan.md +550 -0
- package/prompts/workflows-review.md +529 -0
- package/prompts/workflows-work.md +432 -0
- package/skills/agent-browser/SKILL.md +223 -0
- package/skills/agent-native-architecture/SKILL.md +435 -0
- package/skills/agent-native-architecture/references/action-parity-discipline.md +409 -0
- package/skills/agent-native-architecture/references/agent-execution-patterns.md +467 -0
- package/skills/agent-native-architecture/references/agent-native-testing.md +582 -0
- package/skills/agent-native-architecture/references/architecture-patterns.md +478 -0
- package/skills/agent-native-architecture/references/dynamic-context-injection.md +338 -0
- package/skills/agent-native-architecture/references/files-universal-interface.md +301 -0
- package/skills/agent-native-architecture/references/from-primitives-to-domain-tools.md +359 -0
- package/skills/agent-native-architecture/references/mcp-tool-design.md +506 -0
- package/skills/agent-native-architecture/references/mobile-patterns.md +871 -0
- package/skills/agent-native-architecture/references/product-implications.md +443 -0
- package/skills/agent-native-architecture/references/refactoring-to-prompt-native.md +317 -0
- package/skills/agent-native-architecture/references/self-modification.md +269 -0
- package/skills/agent-native-architecture/references/shared-workspace-architecture.md +680 -0
- package/skills/agent-native-architecture/references/system-prompt-design.md +250 -0
- package/skills/agent-native-reviewer/SKILL.md +260 -0
- package/skills/andrew-kane-gem-writer/SKILL.md +184 -0
- package/skills/andrew-kane-gem-writer/references/database-adapters.md +231 -0
- package/skills/andrew-kane-gem-writer/references/module-organization.md +121 -0
- package/skills/andrew-kane-gem-writer/references/rails-integration.md +183 -0
- package/skills/andrew-kane-gem-writer/references/resources.md +119 -0
- package/skills/andrew-kane-gem-writer/references/testing-patterns.md +261 -0
- package/skills/ankane-readme-writer/SKILL.md +63 -0
- package/skills/architecture-strategist/SKILL.md +66 -0
- package/skills/best-practices-researcher/SKILL.md +125 -0
- package/skills/brainstorming/SKILL.md +190 -0
- package/skills/bug-reproduction-validator/SKILL.md +81 -0
- package/skills/code-simplicity-reviewer/SKILL.md +100 -0
- package/skills/compound-docs/SKILL.md +511 -0
- package/skills/compound-docs/assets/critical-pattern-template.md +34 -0
- package/skills/compound-docs/assets/resolution-template.md +93 -0
- package/skills/compound-docs/references/yaml-schema.md +65 -0
- package/skills/compound-docs/schema.yaml +176 -0
- package/skills/create-agent-skills/SKILL.md +275 -0
- package/skills/create-agent-skills/references/api-security.md +226 -0
- package/skills/create-agent-skills/references/be-clear-and-direct.md +531 -0
- package/skills/create-agent-skills/references/best-practices.md +404 -0
- package/skills/create-agent-skills/references/common-patterns.md +595 -0
- package/skills/create-agent-skills/references/core-principles.md +437 -0
- package/skills/create-agent-skills/references/executable-code.md +175 -0
- package/skills/create-agent-skills/references/iteration-and-testing.md +474 -0
- package/skills/create-agent-skills/references/official-spec.md +134 -0
- package/skills/create-agent-skills/references/recommended-structure.md +168 -0
- package/skills/create-agent-skills/references/skill-structure.md +152 -0
- package/skills/create-agent-skills/references/using-scripts.md +113 -0
- package/skills/create-agent-skills/references/using-templates.md +112 -0
- package/skills/create-agent-skills/references/workflows-and-validation.md +510 -0
- package/skills/create-agent-skills/templates/router-skill.md +73 -0
- package/skills/create-agent-skills/templates/simple-skill.md +33 -0
- package/skills/create-agent-skills/workflows/add-reference.md +96 -0
- package/skills/create-agent-skills/workflows/add-script.md +93 -0
- package/skills/create-agent-skills/workflows/add-template.md +74 -0
- package/skills/create-agent-skills/workflows/add-workflow.md +120 -0
- package/skills/create-agent-skills/workflows/audit-skill.md +138 -0
- package/skills/create-agent-skills/workflows/create-domain-expertise-skill.md +605 -0
- package/skills/create-agent-skills/workflows/create-new-skill.md +191 -0
- package/skills/create-agent-skills/workflows/get-guidance.md +121 -0
- package/skills/create-agent-skills/workflows/upgrade-to-router.md +161 -0
- package/skills/create-agent-skills/workflows/verify-skill.md +204 -0
- package/skills/data-integrity-guardian/SKILL.md +84 -0
- package/skills/data-migration-expert/SKILL.md +111 -0
- package/skills/deployment-verification-agent/SKILL.md +173 -0
- package/skills/design-implementation-reviewer/SKILL.md +107 -0
- package/skills/design-iterator/SKILL.md +222 -0
- package/skills/dhh-rails-reviewer/SKILL.md +65 -0
- package/skills/dhh-rails-style/SKILL.md +185 -0
- package/skills/dhh-rails-style/references/architecture.md +653 -0
- package/skills/dhh-rails-style/references/controllers.md +303 -0
- package/skills/dhh-rails-style/references/frontend.md +510 -0
- package/skills/dhh-rails-style/references/gems.md +266 -0
- package/skills/dhh-rails-style/references/models.md +359 -0
- package/skills/dhh-rails-style/references/testing.md +338 -0
- package/skills/document-review/SKILL.md +87 -0
- package/skills/dspy-ruby/SKILL.md +737 -0
- package/skills/dspy-ruby/assets/config-template.rb +187 -0
- package/skills/dspy-ruby/assets/module-template.rb +300 -0
- package/skills/dspy-ruby/assets/signature-template.rb +221 -0
- package/skills/dspy-ruby/references/core-concepts.md +674 -0
- package/skills/dspy-ruby/references/observability.md +366 -0
- package/skills/dspy-ruby/references/optimization.md +603 -0
- package/skills/dspy-ruby/references/providers.md +418 -0
- package/skills/dspy-ruby/references/toolsets.md +502 -0
- package/skills/every-style-editor/SKILL.md +134 -0
- package/skills/every-style-editor/references/EVERY_WRITE_STYLE.md +529 -0
- package/skills/every-style-editor-2/SKILL.md +62 -0
- package/skills/figma-design-sync/SKILL.md +188 -0
- package/skills/file-todos/SKILL.md +252 -0
- package/skills/file-todos/assets/todo-template.md +155 -0
- package/skills/framework-docs-researcher/SKILL.md +105 -0
- package/skills/frontend-design/SKILL.md +42 -0
- package/skills/gemini-imagegen/SKILL.md +237 -0
- package/skills/gemini-imagegen/requirements.txt +2 -0
- package/skills/gemini-imagegen/scripts/compose_images.py +157 -0
- package/skills/gemini-imagegen/scripts/edit_image.py +144 -0
- package/skills/gemini-imagegen/scripts/gemini_images.py +263 -0
- package/skills/gemini-imagegen/scripts/generate_image.py +133 -0
- package/skills/gemini-imagegen/scripts/multi_turn_chat.py +216 -0
- package/skills/git-history-analyzer/SKILL.md +58 -0
- package/skills/git-worktree/SKILL.md +302 -0
- package/skills/git-worktree/scripts/worktree-manager.sh +337 -0
- package/skills/julik-frontend-races-reviewer/SKILL.md +220 -0
- package/skills/kieran-python-reviewer/SKILL.md +132 -0
- package/skills/kieran-rails-reviewer/SKILL.md +114 -0
- package/skills/kieran-typescript-reviewer/SKILL.md +123 -0
- package/skills/learnings-researcher/SKILL.md +263 -0
- package/skills/lint/SKILL.md +14 -0
- package/skills/orchestrating-swarms/SKILL.md +1718 -0
- package/skills/pattern-recognition-specialist/SKILL.md +71 -0
- package/skills/performance-oracle/SKILL.md +136 -0
- package/skills/pr-comment-resolver/SKILL.md +82 -0
- package/skills/rclone/SKILL.md +150 -0
- package/skills/rclone/scripts/check_setup.sh +60 -0
- package/skills/repo-research-analyst/SKILL.md +134 -0
- package/skills/resolve_pr_parallel/SKILL.md +89 -0
- package/skills/resolve_pr_parallel/scripts/get-pr-comments +68 -0
- package/skills/resolve_pr_parallel/scripts/resolve-pr-thread +23 -0
- package/skills/schema-drift-detector/SKILL.md +153 -0
- package/skills/security-sentinel/SKILL.md +113 -0
- package/skills/skill-creator/SKILL.md +210 -0
- package/skills/skill-creator/scripts/init_skill.py +303 -0
- package/skills/skill-creator/scripts/package_skill.py +110 -0
- package/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/skills/spec-flow-analyzer/SKILL.md +133 -0
- package/src/commands/convert.ts +183 -0
- package/src/commands/install.ts +273 -0
- package/src/commands/list.ts +37 -0
- package/src/commands/sync.ts +89 -0
- package/src/converters/claude-to-codex.ts +182 -0
- package/src/converters/claude-to-opencode.ts +395 -0
- package/src/converters/claude-to-pi.ts +205 -0
- package/src/index.ts +22 -0
- package/src/parsers/claude-home.ts +65 -0
- package/src/parsers/claude.ts +252 -0
- package/src/sync/codex.ts +92 -0
- package/src/sync/opencode.ts +75 -0
- package/src/sync/pi.ts +88 -0
- package/src/targets/codex.ts +96 -0
- package/src/targets/index.ts +38 -0
- package/src/targets/opencode.ts +57 -0
- package/src/targets/pi.ts +131 -0
- package/src/templates/pi/compat-extension.ts +452 -0
- package/src/types/claude.ts +90 -0
- package/src/types/codex.ts +23 -0
- package/src/types/opencode.ts +54 -0
- package/src/types/pi.ts +40 -0
- package/src/utils/codex-agents.ts +64 -0
- package/src/utils/files.ts +77 -0
- package/src/utils/frontmatter.ts +65 -0
- package/src/utils/symlink.ts +43 -0
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Skill Initializer - Creates a new skill from template
|
|
4
|
+
|
|
5
|
+
Usage:
|
|
6
|
+
init_skill.py <skill-name> --path <path>
|
|
7
|
+
|
|
8
|
+
Examples:
|
|
9
|
+
init_skill.py my-new-skill --path skills/public
|
|
10
|
+
init_skill.py my-api-helper --path skills/private
|
|
11
|
+
init_skill.py custom-skill --path /custom/location
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
import sys
|
|
15
|
+
from pathlib import Path
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
SKILL_TEMPLATE = """---
|
|
19
|
+
name: {skill_name}
|
|
20
|
+
description: [TODO: Complete and informative explanation of what the skill does and when to use it. Include WHEN to use this skill - specific scenarios, file types, or tasks that trigger it.]
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
# {skill_title}
|
|
24
|
+
|
|
25
|
+
## Overview
|
|
26
|
+
|
|
27
|
+
[TODO: 1-2 sentences explaining what this skill enables]
|
|
28
|
+
|
|
29
|
+
## Structuring This Skill
|
|
30
|
+
|
|
31
|
+
[TODO: Choose the structure that best fits this skill's purpose. Common patterns:
|
|
32
|
+
|
|
33
|
+
**1. Workflow-Based** (best for sequential processes)
|
|
34
|
+
- Works well when there are clear step-by-step procedures
|
|
35
|
+
- Example: DOCX skill with "Workflow Decision Tree" → "Reading" → "Creating" → "Editing"
|
|
36
|
+
- Structure: ## Overview → ## Workflow Decision Tree → ## Step 1 → ## Step 2...
|
|
37
|
+
|
|
38
|
+
**2. Task-Based** (best for tool collections)
|
|
39
|
+
- Works well when the skill offers different operations/capabilities
|
|
40
|
+
- Example: PDF skill with "Quick Start" → "Merge PDFs" → "Split PDFs" → "Extract Text"
|
|
41
|
+
- Structure: ## Overview → ## Quick Start → ## Task Category 1 → ## Task Category 2...
|
|
42
|
+
|
|
43
|
+
**3. Reference/Guidelines** (best for standards or specifications)
|
|
44
|
+
- Works well for brand guidelines, coding standards, or requirements
|
|
45
|
+
- Example: Brand styling with "Brand Guidelines" → "Colors" → "Typography" → "Features"
|
|
46
|
+
- Structure: ## Overview → ## Guidelines → ## Specifications → ## Usage...
|
|
47
|
+
|
|
48
|
+
**4. Capabilities-Based** (best for integrated systems)
|
|
49
|
+
- Works well when the skill provides multiple interrelated features
|
|
50
|
+
- Example: Product Management with "Core Capabilities" → numbered capability list
|
|
51
|
+
- Structure: ## Overview → ## Core Capabilities → ### 1. Feature → ### 2. Feature...
|
|
52
|
+
|
|
53
|
+
Patterns can be mixed and matched as needed. Most skills combine patterns (e.g., start with task-based, add workflow for complex operations).
|
|
54
|
+
|
|
55
|
+
Delete this entire "Structuring This Skill" section when done - it's just guidance.]
|
|
56
|
+
|
|
57
|
+
## [TODO: Replace with the first main section based on chosen structure]
|
|
58
|
+
|
|
59
|
+
[TODO: Add content here. See examples in existing skills:
|
|
60
|
+
- Code samples for technical skills
|
|
61
|
+
- Decision trees for complex workflows
|
|
62
|
+
- Concrete examples with realistic user requests
|
|
63
|
+
- References to scripts/templates/references as needed]
|
|
64
|
+
|
|
65
|
+
## Resources
|
|
66
|
+
|
|
67
|
+
This skill includes example resource directories that demonstrate how to organize different types of bundled resources:
|
|
68
|
+
|
|
69
|
+
### scripts/
|
|
70
|
+
Executable code (Python/Bash/etc.) that can be run directly to perform specific operations.
|
|
71
|
+
|
|
72
|
+
**Examples from other skills:**
|
|
73
|
+
- PDF skill: `fill_fillable_fields.py`, `extract_form_field_info.py` - utilities for PDF manipulation
|
|
74
|
+
- DOCX skill: `document.py`, `utilities.py` - Python modules for document processing
|
|
75
|
+
|
|
76
|
+
**Appropriate for:** Python scripts, shell scripts, or any executable code that performs automation, data processing, or specific operations.
|
|
77
|
+
|
|
78
|
+
**Note:** Scripts may be executed without loading into context, but can still be read by Claude for patching or environment adjustments.
|
|
79
|
+
|
|
80
|
+
### references/
|
|
81
|
+
Documentation and reference material intended to be loaded into context to inform Claude's process and thinking.
|
|
82
|
+
|
|
83
|
+
**Examples from other skills:**
|
|
84
|
+
- Product management: `communication.md`, `context_building.md` - detailed workflow guides
|
|
85
|
+
- BigQuery: API reference documentation and query examples
|
|
86
|
+
- Finance: Schema documentation, company policies
|
|
87
|
+
|
|
88
|
+
**Appropriate for:** In-depth documentation, API references, database schemas, comprehensive guides, or any detailed information that Claude should reference while working.
|
|
89
|
+
|
|
90
|
+
### assets/
|
|
91
|
+
Files not intended to be loaded into context, but rather used within the output Claude produces.
|
|
92
|
+
|
|
93
|
+
**Examples from other skills:**
|
|
94
|
+
- Brand styling: PowerPoint template files (.pptx), logo files
|
|
95
|
+
- Frontend builder: HTML/React boilerplate project directories
|
|
96
|
+
- Typography: Font files (.ttf, .woff2)
|
|
97
|
+
|
|
98
|
+
**Appropriate for:** Templates, boilerplate code, document templates, images, icons, fonts, or any files meant to be copied or used in the final output.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
**Any unneeded directories can be deleted.** Not every skill requires all three types of resources.
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
EXAMPLE_SCRIPT = '''#!/usr/bin/env python3
|
|
106
|
+
"""
|
|
107
|
+
Example helper script for {skill_name}
|
|
108
|
+
|
|
109
|
+
This is a placeholder script that can be executed directly.
|
|
110
|
+
Replace with actual implementation or delete if not needed.
|
|
111
|
+
|
|
112
|
+
Example real scripts from other skills:
|
|
113
|
+
- pdf/scripts/fill_fillable_fields.py - Fills PDF form fields
|
|
114
|
+
- pdf/scripts/convert_pdf_to_images.py - Converts PDF pages to images
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
def main():
|
|
118
|
+
print("This is an example script for {skill_name}")
|
|
119
|
+
# TODO: Add actual script logic here
|
|
120
|
+
# This could be data processing, file conversion, API calls, etc.
|
|
121
|
+
|
|
122
|
+
if __name__ == "__main__":
|
|
123
|
+
main()
|
|
124
|
+
'''
|
|
125
|
+
|
|
126
|
+
EXAMPLE_REFERENCE = """# Reference Documentation for {skill_title}
|
|
127
|
+
|
|
128
|
+
This is a placeholder for detailed reference documentation.
|
|
129
|
+
Replace with actual reference content or delete if not needed.
|
|
130
|
+
|
|
131
|
+
Example real reference docs from other skills:
|
|
132
|
+
- product-management/references/communication.md - Comprehensive guide for status updates
|
|
133
|
+
- product-management/references/context_building.md - Deep-dive on gathering context
|
|
134
|
+
- bigquery/references/ - API references and query examples
|
|
135
|
+
|
|
136
|
+
## When Reference Docs Are Useful
|
|
137
|
+
|
|
138
|
+
Reference docs are ideal for:
|
|
139
|
+
- Comprehensive API documentation
|
|
140
|
+
- Detailed workflow guides
|
|
141
|
+
- Complex multi-step processes
|
|
142
|
+
- Information too lengthy for main SKILL.md
|
|
143
|
+
- Content that's only needed for specific use cases
|
|
144
|
+
|
|
145
|
+
## Structure Suggestions
|
|
146
|
+
|
|
147
|
+
### API Reference Example
|
|
148
|
+
- Overview
|
|
149
|
+
- Authentication
|
|
150
|
+
- Endpoints with examples
|
|
151
|
+
- Error codes
|
|
152
|
+
- Rate limits
|
|
153
|
+
|
|
154
|
+
### Workflow Guide Example
|
|
155
|
+
- Prerequisites
|
|
156
|
+
- Step-by-step instructions
|
|
157
|
+
- Common patterns
|
|
158
|
+
- Troubleshooting
|
|
159
|
+
- Best practices
|
|
160
|
+
"""
|
|
161
|
+
|
|
162
|
+
EXAMPLE_ASSET = """# Example Asset File
|
|
163
|
+
|
|
164
|
+
This placeholder represents where asset files would be stored.
|
|
165
|
+
Replace with actual asset files (templates, images, fonts, etc.) or delete if not needed.
|
|
166
|
+
|
|
167
|
+
Asset files are NOT intended to be loaded into context, but rather used within
|
|
168
|
+
the output Claude produces.
|
|
169
|
+
|
|
170
|
+
Example asset files from other skills:
|
|
171
|
+
- Brand guidelines: logo.png, slides_template.pptx
|
|
172
|
+
- Frontend builder: hello-world/ directory with HTML/React boilerplate
|
|
173
|
+
- Typography: custom-font.ttf, font-family.woff2
|
|
174
|
+
- Data: sample_data.csv, test_dataset.json
|
|
175
|
+
|
|
176
|
+
## Common Asset Types
|
|
177
|
+
|
|
178
|
+
- Templates: .pptx, .docx, boilerplate directories
|
|
179
|
+
- Images: .png, .jpg, .svg, .gif
|
|
180
|
+
- Fonts: .ttf, .otf, .woff, .woff2
|
|
181
|
+
- Boilerplate code: Project directories, starter files
|
|
182
|
+
- Icons: .ico, .svg
|
|
183
|
+
- Data files: .csv, .json, .xml, .yaml
|
|
184
|
+
|
|
185
|
+
Note: This is a text placeholder. Actual assets can be any file type.
|
|
186
|
+
"""
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
def title_case_skill_name(skill_name):
|
|
190
|
+
"""Convert hyphenated skill name to Title Case for display."""
|
|
191
|
+
return ' '.join(word.capitalize() for word in skill_name.split('-'))
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
def init_skill(skill_name, path):
|
|
195
|
+
"""
|
|
196
|
+
Initialize a new skill directory with template SKILL.md.
|
|
197
|
+
|
|
198
|
+
Args:
|
|
199
|
+
skill_name: Name of the skill
|
|
200
|
+
path: Path where the skill directory should be created
|
|
201
|
+
|
|
202
|
+
Returns:
|
|
203
|
+
Path to created skill directory, or None if error
|
|
204
|
+
"""
|
|
205
|
+
# Determine skill directory path
|
|
206
|
+
skill_dir = Path(path).resolve() / skill_name
|
|
207
|
+
|
|
208
|
+
# Check if directory already exists
|
|
209
|
+
if skill_dir.exists():
|
|
210
|
+
print(f"❌ Error: Skill directory already exists: {skill_dir}")
|
|
211
|
+
return None
|
|
212
|
+
|
|
213
|
+
# Create skill directory
|
|
214
|
+
try:
|
|
215
|
+
skill_dir.mkdir(parents=True, exist_ok=False)
|
|
216
|
+
print(f"✅ Created skill directory: {skill_dir}")
|
|
217
|
+
except Exception as e:
|
|
218
|
+
print(f"❌ Error creating directory: {e}")
|
|
219
|
+
return None
|
|
220
|
+
|
|
221
|
+
# Create SKILL.md from template
|
|
222
|
+
skill_title = title_case_skill_name(skill_name)
|
|
223
|
+
skill_content = SKILL_TEMPLATE.format(
|
|
224
|
+
skill_name=skill_name,
|
|
225
|
+
skill_title=skill_title
|
|
226
|
+
)
|
|
227
|
+
|
|
228
|
+
skill_md_path = skill_dir / 'SKILL.md'
|
|
229
|
+
try:
|
|
230
|
+
skill_md_path.write_text(skill_content)
|
|
231
|
+
print("✅ Created SKILL.md")
|
|
232
|
+
except Exception as e:
|
|
233
|
+
print(f"❌ Error creating SKILL.md: {e}")
|
|
234
|
+
return None
|
|
235
|
+
|
|
236
|
+
# Create resource directories with example files
|
|
237
|
+
try:
|
|
238
|
+
# Create scripts/ directory with example script
|
|
239
|
+
scripts_dir = skill_dir / 'scripts'
|
|
240
|
+
scripts_dir.mkdir(exist_ok=True)
|
|
241
|
+
example_script = scripts_dir / 'example.py'
|
|
242
|
+
example_script.write_text(EXAMPLE_SCRIPT.format(skill_name=skill_name))
|
|
243
|
+
example_script.chmod(0o755)
|
|
244
|
+
print("✅ Created scripts/example.py")
|
|
245
|
+
|
|
246
|
+
# Create references/ directory with example reference doc
|
|
247
|
+
references_dir = skill_dir / 'references'
|
|
248
|
+
references_dir.mkdir(exist_ok=True)
|
|
249
|
+
example_reference = references_dir / 'api_reference.md'
|
|
250
|
+
example_reference.write_text(EXAMPLE_REFERENCE.format(skill_title=skill_title))
|
|
251
|
+
print("✅ Created references/api_reference.md")
|
|
252
|
+
|
|
253
|
+
# Create assets/ directory with example asset placeholder
|
|
254
|
+
assets_dir = skill_dir / 'assets'
|
|
255
|
+
assets_dir.mkdir(exist_ok=True)
|
|
256
|
+
example_asset = assets_dir / 'example_asset.txt'
|
|
257
|
+
example_asset.write_text(EXAMPLE_ASSET)
|
|
258
|
+
print("✅ Created assets/example_asset.txt")
|
|
259
|
+
except Exception as e:
|
|
260
|
+
print(f"❌ Error creating resource directories: {e}")
|
|
261
|
+
return None
|
|
262
|
+
|
|
263
|
+
# Print next steps
|
|
264
|
+
print(f"\n✅ Skill '{skill_name}' initialized successfully at {skill_dir}")
|
|
265
|
+
print("\nNext steps:")
|
|
266
|
+
print("1. Edit SKILL.md to complete the TODO items and update the description")
|
|
267
|
+
print("2. Customize or delete the example files in scripts/, references/, and assets/")
|
|
268
|
+
print("3. Run the validator when ready to check the skill structure")
|
|
269
|
+
|
|
270
|
+
return skill_dir
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
def main():
|
|
274
|
+
if len(sys.argv) < 4 or sys.argv[2] != '--path':
|
|
275
|
+
print("Usage: init_skill.py <skill-name> --path <path>")
|
|
276
|
+
print("\nSkill name requirements:")
|
|
277
|
+
print(" - Hyphen-case identifier (e.g., 'data-analyzer')")
|
|
278
|
+
print(" - Lowercase letters, digits, and hyphens only")
|
|
279
|
+
print(" - Max 40 characters")
|
|
280
|
+
print(" - Must match directory name exactly")
|
|
281
|
+
print("\nExamples:")
|
|
282
|
+
print(" init_skill.py my-new-skill --path skills/public")
|
|
283
|
+
print(" init_skill.py my-api-helper --path skills/private")
|
|
284
|
+
print(" init_skill.py custom-skill --path /custom/location")
|
|
285
|
+
sys.exit(1)
|
|
286
|
+
|
|
287
|
+
skill_name = sys.argv[1]
|
|
288
|
+
path = sys.argv[3]
|
|
289
|
+
|
|
290
|
+
print(f"🚀 Initializing skill: {skill_name}")
|
|
291
|
+
print(f" Location: {path}")
|
|
292
|
+
print()
|
|
293
|
+
|
|
294
|
+
result = init_skill(skill_name, path)
|
|
295
|
+
|
|
296
|
+
if result:
|
|
297
|
+
sys.exit(0)
|
|
298
|
+
else:
|
|
299
|
+
sys.exit(1)
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
if __name__ == "__main__":
|
|
303
|
+
main()
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Skill Packager - Creates a distributable zip file of a skill folder
|
|
4
|
+
|
|
5
|
+
Usage:
|
|
6
|
+
python utils/package_skill.py <path/to/skill-folder> [output-directory]
|
|
7
|
+
|
|
8
|
+
Example:
|
|
9
|
+
python utils/package_skill.py skills/public/my-skill
|
|
10
|
+
python utils/package_skill.py skills/public/my-skill ./dist
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
import sys
|
|
14
|
+
import zipfile
|
|
15
|
+
from pathlib import Path
|
|
16
|
+
from quick_validate import validate_skill
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def package_skill(skill_path, output_dir=None):
|
|
20
|
+
"""
|
|
21
|
+
Package a skill folder into a zip file.
|
|
22
|
+
|
|
23
|
+
Args:
|
|
24
|
+
skill_path: Path to the skill folder
|
|
25
|
+
output_dir: Optional output directory for the zip file (defaults to current directory)
|
|
26
|
+
|
|
27
|
+
Returns:
|
|
28
|
+
Path to the created zip file, or None if error
|
|
29
|
+
"""
|
|
30
|
+
skill_path = Path(skill_path).resolve()
|
|
31
|
+
|
|
32
|
+
# Validate skill folder exists
|
|
33
|
+
if not skill_path.exists():
|
|
34
|
+
print(f"❌ Error: Skill folder not found: {skill_path}")
|
|
35
|
+
return None
|
|
36
|
+
|
|
37
|
+
if not skill_path.is_dir():
|
|
38
|
+
print(f"❌ Error: Path is not a directory: {skill_path}")
|
|
39
|
+
return None
|
|
40
|
+
|
|
41
|
+
# Validate SKILL.md exists
|
|
42
|
+
skill_md = skill_path / "SKILL.md"
|
|
43
|
+
if not skill_md.exists():
|
|
44
|
+
print(f"❌ Error: SKILL.md not found in {skill_path}")
|
|
45
|
+
return None
|
|
46
|
+
|
|
47
|
+
# Run validation before packaging
|
|
48
|
+
print("🔍 Validating skill...")
|
|
49
|
+
valid, message = validate_skill(skill_path)
|
|
50
|
+
if not valid:
|
|
51
|
+
print(f"❌ Validation failed: {message}")
|
|
52
|
+
print(" Please fix the validation errors before packaging.")
|
|
53
|
+
return None
|
|
54
|
+
print(f"✅ {message}\n")
|
|
55
|
+
|
|
56
|
+
# Determine output location
|
|
57
|
+
skill_name = skill_path.name
|
|
58
|
+
if output_dir:
|
|
59
|
+
output_path = Path(output_dir).resolve()
|
|
60
|
+
output_path.mkdir(parents=True, exist_ok=True)
|
|
61
|
+
else:
|
|
62
|
+
output_path = Path.cwd()
|
|
63
|
+
|
|
64
|
+
zip_filename = output_path / f"{skill_name}.zip"
|
|
65
|
+
|
|
66
|
+
# Create the zip file
|
|
67
|
+
try:
|
|
68
|
+
with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:
|
|
69
|
+
# Walk through the skill directory
|
|
70
|
+
for file_path in skill_path.rglob('*'):
|
|
71
|
+
if file_path.is_file():
|
|
72
|
+
# Calculate the relative path within the zip
|
|
73
|
+
arcname = file_path.relative_to(skill_path.parent)
|
|
74
|
+
zipf.write(file_path, arcname)
|
|
75
|
+
print(f" Added: {arcname}")
|
|
76
|
+
|
|
77
|
+
print(f"\n✅ Successfully packaged skill to: {zip_filename}")
|
|
78
|
+
return zip_filename
|
|
79
|
+
|
|
80
|
+
except Exception as e:
|
|
81
|
+
print(f"❌ Error creating zip file: {e}")
|
|
82
|
+
return None
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
def main():
|
|
86
|
+
if len(sys.argv) < 2:
|
|
87
|
+
print("Usage: python utils/package_skill.py <path/to/skill-folder> [output-directory]")
|
|
88
|
+
print("\nExample:")
|
|
89
|
+
print(" python utils/package_skill.py skills/public/my-skill")
|
|
90
|
+
print(" python utils/package_skill.py skills/public/my-skill ./dist")
|
|
91
|
+
sys.exit(1)
|
|
92
|
+
|
|
93
|
+
skill_path = sys.argv[1]
|
|
94
|
+
output_dir = sys.argv[2] if len(sys.argv) > 2 else None
|
|
95
|
+
|
|
96
|
+
print(f"📦 Packaging skill: {skill_path}")
|
|
97
|
+
if output_dir:
|
|
98
|
+
print(f" Output directory: {output_dir}")
|
|
99
|
+
print()
|
|
100
|
+
|
|
101
|
+
result = package_skill(skill_path, output_dir)
|
|
102
|
+
|
|
103
|
+
if result:
|
|
104
|
+
sys.exit(0)
|
|
105
|
+
else:
|
|
106
|
+
sys.exit(1)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
if __name__ == "__main__":
|
|
110
|
+
main()
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Quick validation script for skills - minimal version
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import sys
|
|
7
|
+
import os
|
|
8
|
+
import re
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
def validate_skill(skill_path):
|
|
12
|
+
"""Basic validation of a skill"""
|
|
13
|
+
skill_path = Path(skill_path)
|
|
14
|
+
|
|
15
|
+
# Check SKILL.md exists
|
|
16
|
+
skill_md = skill_path / 'SKILL.md'
|
|
17
|
+
if not skill_md.exists():
|
|
18
|
+
return False, "SKILL.md not found"
|
|
19
|
+
|
|
20
|
+
# Read and validate frontmatter
|
|
21
|
+
content = skill_md.read_text()
|
|
22
|
+
if not content.startswith('---'):
|
|
23
|
+
return False, "No YAML frontmatter found"
|
|
24
|
+
|
|
25
|
+
# Extract frontmatter
|
|
26
|
+
match = re.match(r'^---\n(.*?)\n---', content, re.DOTALL)
|
|
27
|
+
if not match:
|
|
28
|
+
return False, "Invalid frontmatter format"
|
|
29
|
+
|
|
30
|
+
frontmatter = match.group(1)
|
|
31
|
+
|
|
32
|
+
# Check required fields
|
|
33
|
+
if 'name:' not in frontmatter:
|
|
34
|
+
return False, "Missing 'name' in frontmatter"
|
|
35
|
+
if 'description:' not in frontmatter:
|
|
36
|
+
return False, "Missing 'description' in frontmatter"
|
|
37
|
+
|
|
38
|
+
# Extract name for validation
|
|
39
|
+
name_match = re.search(r'name:\s*(.+)', frontmatter)
|
|
40
|
+
if name_match:
|
|
41
|
+
name = name_match.group(1).strip()
|
|
42
|
+
# Check naming convention (hyphen-case: lowercase with hyphens)
|
|
43
|
+
if not re.match(r'^[a-z0-9-]+$', name):
|
|
44
|
+
return False, f"Name '{name}' should be hyphen-case (lowercase letters, digits, and hyphens only)"
|
|
45
|
+
if name.startswith('-') or name.endswith('-') or '--' in name:
|
|
46
|
+
return False, f"Name '{name}' cannot start/end with hyphen or contain consecutive hyphens"
|
|
47
|
+
|
|
48
|
+
# Extract and validate description
|
|
49
|
+
desc_match = re.search(r'description:\s*(.+)', frontmatter)
|
|
50
|
+
if desc_match:
|
|
51
|
+
description = desc_match.group(1).strip()
|
|
52
|
+
# Check for angle brackets
|
|
53
|
+
if '<' in description or '>' in description:
|
|
54
|
+
return False, "Description cannot contain angle brackets (< or >)"
|
|
55
|
+
|
|
56
|
+
return True, "Skill is valid!"
|
|
57
|
+
|
|
58
|
+
if __name__ == "__main__":
|
|
59
|
+
if len(sys.argv) != 2:
|
|
60
|
+
print("Usage: python quick_validate.py <skill_directory>")
|
|
61
|
+
sys.exit(1)
|
|
62
|
+
|
|
63
|
+
valid, message = validate_skill(sys.argv[1])
|
|
64
|
+
print(message)
|
|
65
|
+
sys.exit(0 if valid else 1)
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: spec-flow-analyzer
|
|
3
|
+
description: Analyzes specifications and feature descriptions for user flow completeness and gap identification. Use when a spec, plan, or feature description needs flow analysis, edge case discovery, or requirements validation.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<examples>
|
|
7
|
+
<example>
|
|
8
|
+
Context: The user has just finished drafting a specification for OAuth implementation.
|
|
9
|
+
user: "Here's the OAuth spec for our new integration: [OAuth spec details]"
|
|
10
|
+
assistant: "Let me use the spec-flow-analyzer agent to analyze this OAuth specification for user flows and missing elements."
|
|
11
|
+
<commentary>Since the user has provided a specification document, use the Task tool to launch the spec-flow-analyzer agent to identify all user flows, edge cases, and missing clarifications.</commentary>
|
|
12
|
+
</example>
|
|
13
|
+
<example>
|
|
14
|
+
Context: The user is planning a new social sharing feature.
|
|
15
|
+
user: "I'm thinking we should add social sharing to posts. Users can share to Twitter, Facebook, and LinkedIn."
|
|
16
|
+
assistant: "This sounds like a feature specification that would benefit from flow analysis. Let me use the spec-flow-analyzer agent to map out all the user flows and identify any missing pieces."
|
|
17
|
+
<commentary>The user is describing a new feature. Use the spec-flow-analyzer agent to analyze the feature from the user's perspective, identify all permutations, and surface questions about missing elements.</commentary>
|
|
18
|
+
</example>
|
|
19
|
+
<example>
|
|
20
|
+
Context: The user has created a plan for a new onboarding flow.
|
|
21
|
+
user: "Can you review this onboarding plan and make sure we haven't missed anything?"
|
|
22
|
+
assistant: "I'll use the spec-flow-analyzer agent to thoroughly analyze this onboarding plan from the user's perspective."
|
|
23
|
+
<commentary>The user is explicitly asking for review of a plan. Use the spec-flow-analyzer agent to identify all user flows, edge cases, and gaps in the specification.</commentary>
|
|
24
|
+
</example>
|
|
25
|
+
</examples>
|
|
26
|
+
|
|
27
|
+
You are an elite User Experience Flow Analyst and Requirements Engineer. Your expertise lies in examining specifications, plans, and feature descriptions through the lens of the end user, identifying every possible user journey, edge case, and interaction pattern.
|
|
28
|
+
|
|
29
|
+
Your primary mission is to:
|
|
30
|
+
1. Map out ALL possible user flows and permutations
|
|
31
|
+
2. Identify gaps, ambiguities, and missing specifications
|
|
32
|
+
3. Ask clarifying questions about unclear elements
|
|
33
|
+
4. Present a comprehensive overview of user journeys
|
|
34
|
+
5. Highlight areas that need further definition
|
|
35
|
+
|
|
36
|
+
When you receive a specification, plan, or feature description, you will:
|
|
37
|
+
|
|
38
|
+
## Phase 1: Deep Flow Analysis
|
|
39
|
+
|
|
40
|
+
- Map every distinct user journey from start to finish
|
|
41
|
+
- Identify all decision points, branches, and conditional paths
|
|
42
|
+
- Consider different user types, roles, and permission levels
|
|
43
|
+
- Think through happy paths, error states, and edge cases
|
|
44
|
+
- Examine state transitions and system responses
|
|
45
|
+
- Consider integration points with existing features
|
|
46
|
+
- Analyze authentication, authorization, and session flows
|
|
47
|
+
- Map data flows and transformations
|
|
48
|
+
|
|
49
|
+
## Phase 2: Permutation Discovery
|
|
50
|
+
|
|
51
|
+
For each feature, systematically consider:
|
|
52
|
+
- First-time user vs. returning user scenarios
|
|
53
|
+
- Different entry points to the feature
|
|
54
|
+
- Various device types and contexts (mobile, desktop, tablet)
|
|
55
|
+
- Network conditions (offline, slow connection, perfect connection)
|
|
56
|
+
- Concurrent user actions and race conditions
|
|
57
|
+
- Partial completion and resumption scenarios
|
|
58
|
+
- Error recovery and retry flows
|
|
59
|
+
- Cancellation and rollback paths
|
|
60
|
+
|
|
61
|
+
## Phase 3: Gap Identification
|
|
62
|
+
|
|
63
|
+
Identify and document:
|
|
64
|
+
- Missing error handling specifications
|
|
65
|
+
- Unclear state management
|
|
66
|
+
- Ambiguous user feedback mechanisms
|
|
67
|
+
- Unspecified validation rules
|
|
68
|
+
- Missing accessibility considerations
|
|
69
|
+
- Unclear data persistence requirements
|
|
70
|
+
- Undefined timeout or rate limiting behavior
|
|
71
|
+
- Missing security considerations
|
|
72
|
+
- Unclear integration contracts
|
|
73
|
+
- Ambiguous success/failure criteria
|
|
74
|
+
|
|
75
|
+
## Phase 4: Question Formulation
|
|
76
|
+
|
|
77
|
+
For each gap or ambiguity, formulate:
|
|
78
|
+
- Specific, actionable questions
|
|
79
|
+
- Context about why this matters
|
|
80
|
+
- Potential impact if left unspecified
|
|
81
|
+
- Examples to illustrate the ambiguity
|
|
82
|
+
|
|
83
|
+
## Output Format
|
|
84
|
+
|
|
85
|
+
Structure your response as follows:
|
|
86
|
+
|
|
87
|
+
### User Flow Overview
|
|
88
|
+
|
|
89
|
+
[Provide a clear, structured breakdown of all identified user flows. Use visual aids like mermaid diagrams when helpful. Number each flow and describe it concisely.]
|
|
90
|
+
|
|
91
|
+
### Flow Permutations Matrix
|
|
92
|
+
|
|
93
|
+
[Create a matrix or table showing different variations of each flow based on:
|
|
94
|
+
- User state (authenticated, guest, admin, etc.)
|
|
95
|
+
- Context (first time, returning, error recovery)
|
|
96
|
+
- Device/platform
|
|
97
|
+
- Any other relevant dimensions]
|
|
98
|
+
|
|
99
|
+
### Missing Elements & Gaps
|
|
100
|
+
|
|
101
|
+
[Organized by category, list all identified gaps with:
|
|
102
|
+
- **Category**: (e.g., Error Handling, Validation, Security)
|
|
103
|
+
- **Gap Description**: What's missing or unclear
|
|
104
|
+
- **Impact**: Why this matters
|
|
105
|
+
- **Current Ambiguity**: What's currently unclear]
|
|
106
|
+
|
|
107
|
+
### Critical Questions Requiring Clarification
|
|
108
|
+
|
|
109
|
+
[Numbered list of specific questions, prioritized by:
|
|
110
|
+
1. **Critical** (blocks implementation or creates security/data risks)
|
|
111
|
+
2. **Important** (significantly affects UX or maintainability)
|
|
112
|
+
3. **Nice-to-have** (improves clarity but has reasonable defaults)]
|
|
113
|
+
|
|
114
|
+
For each question, include:
|
|
115
|
+
- The question itself
|
|
116
|
+
- Why it matters
|
|
117
|
+
- What assumptions you'd make if it's not answered
|
|
118
|
+
- Examples illustrating the ambiguity
|
|
119
|
+
|
|
120
|
+
### Recommended Next Steps
|
|
121
|
+
|
|
122
|
+
[Concrete actions to resolve the gaps and questions]
|
|
123
|
+
|
|
124
|
+
Key principles:
|
|
125
|
+
- **Be exhaustively thorough** - assume the spec will be implemented exactly as written, so every gap matters
|
|
126
|
+
- **Think like a user** - walk through flows as if you're actually using the feature
|
|
127
|
+
- **Consider the unhappy paths** - errors, failures, and edge cases are where most gaps hide
|
|
128
|
+
- **Be specific in questions** - avoid "what about errors?" in favor of "what should happen when the OAuth provider returns a 429 rate limit error?"
|
|
129
|
+
- **Prioritize ruthlessly** - distinguish between critical blockers and nice-to-have clarifications
|
|
130
|
+
- **Use examples liberally** - concrete scenarios make ambiguities clear
|
|
131
|
+
- **Reference existing patterns** - when available, reference how similar flows work in the codebase
|
|
132
|
+
|
|
133
|
+
Your goal is to ensure that when implementation begins, developers have a crystal-clear understanding of every user journey, every edge case is accounted for, and no critical questions remain unanswered. Be the advocate for the user's experience and the guardian against ambiguity.
|