@danmoisan/drm-copilot-mcp 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +50 -0
- package/out/mcp-server.js +17323 -0
- package/package.json +36 -0
- package/resources/claude-customizations/.claude/agent-memory/orchestrator/MEMORY.md +3 -0
- package/resources/claude-customizations/.claude/agent-memory/orchestrator/feedback_repo_root_is_source_of_truth.md +11 -0
- package/resources/claude-customizations/.claude/agent-memory/orchestrator/feedback_vsce_verify_package_location.md +19 -0
- package/resources/claude-customizations/.claude/agent-memory/orchestrator/project_extension_location.md +11 -0
- package/resources/claude-customizations/.claude/agent-memory/prd-feature/MEMORY.md +1 -0
- package/resources/claude-customizations/.claude/agent-memory/prd-feature/project_push_down_pattern.md +13 -0
- package/resources/claude-customizations/.claude/agent-memory/task-researcher/MEMORY.md +3 -0
- package/resources/claude-customizations/.claude/agent-memory/task-researcher/project_push_down_claude_dir.md +11 -0
- package/resources/claude-customizations/.claude/agents/atomic-executor.md +135 -0
- package/resources/claude-customizations/.claude/agents/atomic-planner.md +71 -0
- package/resources/claude-customizations/.claude/agents/csharp-typed-engineer.md +69 -0
- package/resources/claude-customizations/.claude/agents/epic-review.md +40 -0
- package/resources/claude-customizations/.claude/agents/feature-review.md +136 -0
- package/resources/claude-customizations/.claude/agents/orchestrator.md +83 -0
- package/resources/claude-customizations/.claude/agents/powershell-typed-engineer.md +80 -0
- package/resources/claude-customizations/.claude/agents/prd-feature.md +42 -0
- package/resources/claude-customizations/.claude/agents/python-typed-engineer.md +72 -0
- package/resources/claude-customizations/.claude/agents/staged-review.md +41 -0
- package/resources/claude-customizations/.claude/agents/status-updater.md +41 -0
- package/resources/claude-customizations/.claude/agents/task-researcher.md +81 -0
- package/resources/claude-customizations/.claude/agents/typescript-engineer.md +24 -0
- package/resources/claude-customizations/.claude/hooks/check-powershell-test-purity.ps1 +111 -0
- package/resources/claude-customizations/.claude/hooks/check-python-test-purity.ps1 +146 -0
- package/resources/claude-customizations/.claude/hooks/enforce-evidence-locations.ps1 +150 -0
- package/resources/claude-customizations/.claude/hooks/enforce-powershell-batch-budget.ps1 +238 -0
- package/resources/claude-customizations/.claude/hooks/enforce-promotion-mcp-only.ps1 +147 -0
- package/resources/claude-customizations/.claude/hooks/enforce-python-batch-budget.ps1 +235 -0
- package/resources/claude-customizations/.claude/hooks/validate-bash.ps1 +69 -0
- package/resources/claude-customizations/.claude/hooks/validate-executor-output.ps1 +296 -0
- package/resources/claude-customizations/.claude/hooks/validate-feature-review-coverage.ps1 +389 -0
- package/resources/claude-customizations/.claude/hooks/validate-orchestrator-output.ps1 +141 -0
- package/resources/claude-customizations/.claude/hooks/validate-planner-output.ps1 +288 -0
- package/resources/claude-customizations/.claude/hooks/validate-required-artifact-output.ps1 +171 -0
- package/resources/claude-customizations/.claude/hooks/validate-task-researcher-output.ps1 +142 -0
- package/resources/claude-customizations/.claude/rules/csharp.md +62 -0
- package/resources/claude-customizations/.claude/rules/general-code-change.md +71 -0
- package/resources/claude-customizations/.claude/rules/general-unit-test.md +60 -0
- package/resources/claude-customizations/.claude/rules/powershell.md +97 -0
- package/resources/claude-customizations/.claude/rules/python-suppressions.md +143 -0
- package/resources/claude-customizations/.claude/rules/python.md +99 -0
- package/resources/claude-customizations/.claude/rules/self-explanatory-code-commenting.md +97 -0
- package/resources/claude-customizations/.claude/rules/tonality.md +80 -0
- package/resources/claude-customizations/.claude/rules/typescript-suppressions.md +66 -0
- package/resources/claude-customizations/.claude/rules/typescript.md +45 -0
- package/resources/claude-customizations/.claude/settings.json +144 -0
- package/resources/claude-customizations/.claude/skills/acceptance-criteria-tracking/SKILL.md +102 -0
- package/resources/claude-customizations/.claude/skills/atomic-plan-contract/SKILL.md +189 -0
- package/resources/claude-customizations/.claude/skills/commit-message/SKILL.md +65 -0
- package/resources/claude-customizations/.claude/skills/csharp-change-budget-router/SKILL.md +90 -0
- package/resources/claude-customizations/.claude/skills/csharp-orchestration-state-machine/SKILL.md +58 -0
- package/resources/claude-customizations/.claude/skills/csharp-qa-gate/SKILL.md +77 -0
- package/resources/claude-customizations/.claude/skills/evidence-and-timestamp-conventions/SKILL.md +164 -0
- package/resources/claude-customizations/.claude/skills/execute-hard-lock/SKILL.md +82 -0
- package/resources/claude-customizations/.claude/skills/feature-promotion-lifecycle/SKILL.md +115 -0
- package/resources/claude-customizations/.claude/skills/feature-review-workflow/SKILL.md +167 -0
- package/resources/claude-customizations/.claude/skills/fill-feature-docs/SKILL.md +22 -0
- package/resources/claude-customizations/.claude/skills/invoke-csharp-engineer/SKILL.md +64 -0
- package/resources/claude-customizations/.claude/skills/invoke-powershell-engineer/SKILL.md +65 -0
- package/resources/claude-customizations/.claude/skills/invoke-python-engineer/SKILL.md +64 -0
- package/resources/claude-customizations/.claude/skills/make-skill-template/SKILL.md +147 -0
- package/resources/claude-customizations/.claude/skills/orchestrate/SKILL.md +132 -0
- package/resources/claude-customizations/.claude/skills/policy-audit-template-usage/SKILL.md +49 -0
- package/resources/claude-customizations/.claude/skills/policy-compliance-order/SKILL.md +40 -0
- package/resources/claude-customizations/.claude/skills/powershell-change-budget-router/SKILL.md +49 -0
- package/resources/claude-customizations/.claude/skills/powershell-orchestration-state-machine/SKILL.md +58 -0
- package/resources/claude-customizations/.claude/skills/powershell-qa-gate/SKILL.md +77 -0
- package/resources/claude-customizations/.claude/skills/pr-author/SKILL.md +50 -0
- package/resources/claude-customizations/.claude/skills/pr-base-branch-merge-base/SKILL.md +56 -0
- package/resources/claude-customizations/.claude/skills/pr-context-artifacts/SKILL.md +30 -0
- package/resources/claude-customizations/.claude/skills/python-change-budget-router/SKILL.md +79 -0
- package/resources/claude-customizations/.claude/skills/python-qa-gate/SKILL.md +77 -0
- package/resources/claude-customizations/.claude/skills/remediation-handoff-atomic-planner/SKILL.md +40 -0
- package/resources/claude-customizations/.claude/skills/research-issue/SKILL.md +67 -0
- package/resources/claude-customizations/.claude/skills/review-epic/SKILL.md +21 -0
- package/resources/claude-customizations/.claude/skills/review-feature/SKILL.md +25 -0
- package/resources/claude-customizations/.claude/skills/review-staged/SKILL.md +21 -0
- package/resources/claude-customizations/.claude/skills/skill-canonical-location-audit/SKILL.md +49 -0
- package/resources/claude-customizations/.claude/skills/translate-copilot-to-claude/SKILL.md +295 -0
- package/resources/claude-customizations/.claude/skills/update-status/SKILL.md +21 -0
- package/resources/claude-dir-customizations/.mcp.json +8 -0
- package/resources/codex-and-agents-customizations/.agents/README.md +86 -0
- package/resources/codex-and-agents-customizations/.agents/skills/README.md +49 -0
- package/resources/codex-and-agents-customizations/.agents/skills/acceptance-criteria-tracking/SKILL.md +107 -0
- package/resources/codex-and-agents-customizations/.agents/skills/atomic-executor/SKILL.md +73 -0
- package/resources/codex-and-agents-customizations/.agents/skills/atomic-plan-contract/SKILL.md +194 -0
- package/resources/codex-and-agents-customizations/.agents/skills/atomic-planner/SKILL.md +87 -0
- package/resources/codex-and-agents-customizations/.agents/skills/commit-message/SKILL.md +70 -0
- package/resources/codex-and-agents-customizations/.agents/skills/commit-message-conventions/SKILL.md +95 -0
- package/resources/codex-and-agents-customizations/.agents/skills/csharp/SKILL.md +67 -0
- package/resources/codex-and-agents-customizations/.agents/skills/csharp-change-budget-router/SKILL.md +94 -0
- package/resources/codex-and-agents-customizations/.agents/skills/csharp-orchestration-state-machine/SKILL.md +64 -0
- package/resources/codex-and-agents-customizations/.agents/skills/csharp-qa-gate/SKILL.md +82 -0
- package/resources/codex-and-agents-customizations/.agents/skills/evidence-and-timestamp-conventions/SKILL.md +168 -0
- package/resources/codex-and-agents-customizations/.agents/skills/execute-hard-lock/SKILL.md +88 -0
- package/resources/codex-and-agents-customizations/.agents/skills/feature-promotion-lifecycle/SKILL.md +129 -0
- package/resources/codex-and-agents-customizations/.agents/skills/feature-review/SKILL.md +106 -0
- package/resources/codex-and-agents-customizations/.agents/skills/feature-review-workflow/SKILL.md +181 -0
- package/resources/codex-and-agents-customizations/.agents/skills/fill-feature-docs/SKILL.md +27 -0
- package/resources/codex-and-agents-customizations/.agents/skills/invoke-csharp-engineer/SKILL.md +73 -0
- package/resources/codex-and-agents-customizations/.agents/skills/invoke-powershell-engineer/SKILL.md +74 -0
- package/resources/codex-and-agents-customizations/.agents/skills/invoke-python-engineer/SKILL.md +73 -0
- package/resources/codex-and-agents-customizations/.agents/skills/make-skill-template/SKILL.md +152 -0
- package/resources/codex-and-agents-customizations/.agents/skills/orchestrate/SKILL.md +143 -0
- package/resources/codex-and-agents-customizations/.agents/skills/orchestrator-workflow/SKILL.md +317 -0
- package/resources/codex-and-agents-customizations/.agents/skills/policy-audit-template-usage/SKILL.md +53 -0
- package/resources/codex-and-agents-customizations/.agents/skills/policy-compliance-order/SKILL.md +49 -0
- package/resources/codex-and-agents-customizations/.agents/skills/powershell/SKILL.md +102 -0
- package/resources/codex-and-agents-customizations/.agents/skills/powershell-change-budget-router/SKILL.md +53 -0
- package/resources/codex-and-agents-customizations/.agents/skills/powershell-orchestration-state-machine/SKILL.md +64 -0
- package/resources/codex-and-agents-customizations/.agents/skills/powershell-qa-gate/SKILL.md +83 -0
- package/resources/codex-and-agents-customizations/.agents/skills/pr-author/SKILL.md +55 -0
- package/resources/codex-and-agents-customizations/.agents/skills/pr-authoring/SKILL.md +124 -0
- package/resources/codex-and-agents-customizations/.agents/skills/pr-base-branch-merge-base/SKILL.md +60 -0
- package/resources/codex-and-agents-customizations/.agents/skills/pr-context-artifacts/SKILL.md +34 -0
- package/resources/codex-and-agents-customizations/.agents/skills/python/SKILL.md +104 -0
- package/resources/codex-and-agents-customizations/.agents/skills/python-change-budget-router/SKILL.md +84 -0
- package/resources/codex-and-agents-customizations/.agents/skills/python-qa-gate/SKILL.md +82 -0
- package/resources/codex-and-agents-customizations/.agents/skills/python-suppressions/SKILL.md +148 -0
- package/resources/codex-and-agents-customizations/.agents/skills/remediation-handoff-atomic-planner/SKILL.md +49 -0
- package/resources/codex-and-agents-customizations/.agents/skills/repo-automation-adapter/SKILL.md +142 -0
- package/resources/codex-and-agents-customizations/.agents/skills/repo-automation-adapter/agents/openai.yaml +5 -0
- package/resources/codex-and-agents-customizations/.agents/skills/research-issue/SKILL.md +72 -0
- package/resources/codex-and-agents-customizations/.agents/skills/review-epic/SKILL.md +26 -0
- package/resources/codex-and-agents-customizations/.agents/skills/review-feature/SKILL.md +30 -0
- package/resources/codex-and-agents-customizations/.agents/skills/review-staged/SKILL.md +26 -0
- package/resources/codex-and-agents-customizations/.agents/skills/self-explanatory-code-commenting/SKILL.md +102 -0
- package/resources/codex-and-agents-customizations/.agents/skills/skill-canonical-location-audit/SKILL.md +52 -0
- package/resources/codex-and-agents-customizations/.agents/skills/translate-copilot-to-claude/SKILL.md +317 -0
- package/resources/codex-and-agents-customizations/.agents/skills/typescript/SKILL.md +50 -0
- package/resources/codex-and-agents-customizations/.agents/skills/typescript-suppressions/SKILL.md +71 -0
- package/resources/codex-and-agents-customizations/.agents/skills/update-status/SKILL.md +26 -0
- package/resources/codex-and-agents-customizations/.codex/agents/5.1-beast-adjusted.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/5.1-thinking-beast-mode-adjusted.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/api-architect.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/atomic-executor.toml +151 -0
- package/resources/codex-and-agents-customizations/.codex/agents/atomic-planner.toml +93 -0
- package/resources/codex-and-agents-customizations/.codex/agents/atomic-planning.toml +24 -0
- package/resources/codex-and-agents-customizations/.codex/agents/commentary-remediation.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/commit-steward.toml +20 -0
- package/resources/codex-and-agents-customizations/.codex/agents/csharp-atomic-executor.toml +24 -0
- package/resources/codex-and-agents-customizations/.codex/agents/csharp-atomic-planning.toml +25 -0
- package/resources/codex-and-agents-customizations/.codex/agents/csharp-orchestrator.toml +56 -0
- package/resources/codex-and-agents-customizations/.codex/agents/csharp-typed-engineer.toml +97 -0
- package/resources/codex-and-agents-customizations/.codex/agents/epic-review.toml +52 -0
- package/resources/codex-and-agents-customizations/.codex/agents/expert-nextjs-developer.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/expert-react-frontend-engineer.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/feature-review.toml +149 -0
- package/resources/codex-and-agents-customizations/.codex/agents/feature-reviewer.toml +60 -0
- package/resources/codex-and-agents-customizations/.codex/agents/gpt-5-beast-mode.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/hlbpa.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/mentor.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/orchestrator.toml +121 -0
- package/resources/codex-and-agents-customizations/.codex/agents/powershell-atomic-executor.toml +24 -0
- package/resources/codex-and-agents-customizations/.codex/agents/powershell-atomic-planning.toml +25 -0
- package/resources/codex-and-agents-customizations/.codex/agents/powershell-di-unit-test-engineer.toml +24 -0
- package/resources/codex-and-agents-customizations/.codex/agents/powershell-orchestrator.toml +56 -0
- package/resources/codex-and-agents-customizations/.codex/agents/powershell-typed-engineer.toml +108 -0
- package/resources/codex-and-agents-customizations/.codex/agents/pr-author.toml +26 -0
- package/resources/codex-and-agents-customizations/.codex/agents/prd-feature.toml +53 -0
- package/resources/codex-and-agents-customizations/.codex/agents/prd.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/pytest-unit-test-coding.toml +24 -0
- package/resources/codex-and-agents-customizations/.codex/agents/python-atomic-executor.toml +24 -0
- package/resources/codex-and-agents-customizations/.codex/agents/python-atomic-planning.toml +25 -0
- package/resources/codex-and-agents-customizations/.codex/agents/python-execution-only-typed.toml +24 -0
- package/resources/codex-and-agents-customizations/.codex/agents/python-orchestrator.toml +54 -0
- package/resources/codex-and-agents-customizations/.codex/agents/python-typed-engineer.toml +100 -0
- package/resources/codex-and-agents-customizations/.codex/agents/staged-review.toml +53 -0
- package/resources/codex-and-agents-customizations/.codex/agents/status-updater.toml +53 -0
- package/resources/codex-and-agents-customizations/.codex/agents/task-researcher.toml +103 -0
- package/resources/codex-and-agents-customizations/.codex/agents/tdd-green.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/tdd-red.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/tdd-refactor.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/agents/typescript-engineer.toml +48 -0
- package/resources/codex-and-agents-customizations/.codex/agents/voidbeast-gpt41enhanced.toml +23 -0
- package/resources/codex-and-agents-customizations/.codex/codex-web-setup.plan.md +26 -0
- package/resources/codex-and-agents-customizations/.codex/codex-web-setup.sh +384 -0
- package/resources/codex-and-agents-customizations/.codex/config.toml +137 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/check-powershell-test-purity.ps1 +113 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/check-python-test-purity.ps1 +149 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/enforce-evidence-locations.ps1 +153 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/enforce-powershell-batch-budget.ps1 +241 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/enforce-promotion-mcp-only.ps1 +150 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/enforce-python-batch-budget.ps1 +238 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/validate-bash.ps1 +72 -0
- package/resources/codex-and-agents-customizations/.codex/hooks/validate-feature-review-coverage.ps1 +265 -0
- package/resources/codex-and-agents-customizations/.codex/prompts/feature-review-remediate.md +10 -0
- package/resources/codex-and-agents-customizations/.codex/prompts/generate-commit-message-repo.md +11 -0
- package/resources/codex-and-agents-customizations/.codex/prompts/generate-pr.md +15 -0
- package/resources/codex-and-agents-customizations/.codex/prompts/orchestrate-work.md +22 -0
- package/resources/codex-and-agents-customizations/AGENTS.md +317 -0
- package/resources/customizations/.github/agents/5.1-Beast-adjusted.agent.md +181 -0
- package/resources/customizations/.github/agents/5.1-Thinking-Beast-Mode-adjusted.agent.md +361 -0
- package/resources/customizations/.github/agents/Powershell DI Unit Test Engineer.agent.md +192 -0
- package/resources/customizations/.github/agents/api-architect.agent.md +40 -0
- package/resources/customizations/.github/agents/atomic_executor.agent.md +251 -0
- package/resources/customizations/.github/agents/atomic_planning.agent.md +658 -0
- package/resources/customizations/.github/agents/commentary-remediation.agent.md +35 -0
- package/resources/customizations/.github/agents/commit-steward.agent.md +200 -0
- package/resources/customizations/.github/agents/csharp-atomic-executor.agent.md +288 -0
- package/resources/customizations/.github/agents/csharp-atomic-planning.agent.md +354 -0
- package/resources/customizations/.github/agents/csharp-orchestrator.agent.md +375 -0
- package/resources/customizations/.github/agents/csharp-typed-engineer.agent.md +285 -0
- package/resources/customizations/.github/agents/epic-review.agent.md +374 -0
- package/resources/customizations/.github/agents/expert-nextjs-developer.agent.md +477 -0
- package/resources/customizations/.github/agents/expert-react-frontend-engineer.agent.md +739 -0
- package/resources/customizations/.github/agents/feature-review.agent.md +49 -0
- package/resources/customizations/.github/agents/gpt-5-beast-mode.agent.md +116 -0
- package/resources/customizations/.github/agents/hlbpa.agent.md +219 -0
- package/resources/customizations/.github/agents/mentor.agent.md +32 -0
- package/resources/customizations/.github/agents/orchestrator.agent.md +449 -0
- package/resources/customizations/.github/agents/powershell-atomic-executor.agent.md +287 -0
- package/resources/customizations/.github/agents/powershell-atomic-planning.agent.md +647 -0
- package/resources/customizations/.github/agents/powershell-orchestrator.agent.md +382 -0
- package/resources/customizations/.github/agents/powershell-typed-engineer.agent.md +293 -0
- package/resources/customizations/.github/agents/pr-author.agent.md +138 -0
- package/resources/customizations/.github/agents/prd-feature.agent.md +52 -0
- package/resources/customizations/.github/agents/prd.agent.md +202 -0
- package/resources/customizations/.github/agents/pytest-unit-test-coding.agent.md +202 -0
- package/resources/customizations/.github/agents/python-atomic-executor.agent.md +289 -0
- package/resources/customizations/.github/agents/python-atomic-planning.agent.md +429 -0
- package/resources/customizations/.github/agents/python-execution-only-typed.agent.md +217 -0
- package/resources/customizations/.github/agents/python-orchestrator.agent.md +380 -0
- package/resources/customizations/.github/agents/python-typed-engineer.agent.md +271 -0
- package/resources/customizations/.github/agents/staged-review.agent.md +246 -0
- package/resources/customizations/.github/agents/status_updater.agent.md +279 -0
- package/resources/customizations/.github/agents/task-researcher.agent.md +298 -0
- package/resources/customizations/.github/agents/tdd-green.agent.md +60 -0
- package/resources/customizations/.github/agents/tdd-red.agent.md +66 -0
- package/resources/customizations/.github/agents/tdd-refactor.agent.md +94 -0
- package/resources/customizations/.github/agents/typescript-engineer.agent.md +167 -0
- package/resources/customizations/.github/agents/voidbeast-gpt41enhanced.agent.md +230 -0
- package/resources/customizations/.github/codex/execute-hard-lock.prompt.md +105 -0
- package/resources/customizations/.github/codex/resume-hard-lock.prompt.md +92 -0
- package/resources/customizations/.github/copilot-instructions.md +7 -0
- package/resources/customizations/.github/instructions/csharp-code-change.instructions.md +184 -0
- package/resources/customizations/.github/instructions/csharp-unit-test.instructions.md +52 -0
- package/resources/customizations/.github/instructions/general-code-change.instructions.md +290 -0
- package/resources/customizations/.github/instructions/general-unit-test.instructions.md +106 -0
- package/resources/customizations/.github/instructions/github-actions-ci-cd-best-practices.instructions.md +607 -0
- package/resources/customizations/.github/instructions/github-actions.instructions.md +23 -0
- package/resources/customizations/.github/instructions/powershell-code-change.instructions.md +81 -0
- package/resources/customizations/.github/instructions/powershell-unit-test.instructions.md +69 -0
- package/resources/customizations/.github/instructions/python-code-change.instructions.md +232 -0
- package/resources/customizations/.github/instructions/python-suppressions.instructions.md +609 -0
- package/resources/customizations/.github/instructions/python-unit-test.instructions.md +71 -0
- package/resources/customizations/.github/instructions/self-explanatory-code-commenting.instructions.md +238 -0
- package/resources/customizations/.github/instructions/tonality.instructions.md +133 -0
- package/resources/customizations/.github/instructions/typescript-code-change.instructions.md +203 -0
- package/resources/customizations/.github/instructions/typescript-suppressions.instructions.md +157 -0
- package/resources/customizations/.github/instructions/typescript-unit-test.instructions.md +112 -0
- package/resources/customizations/.github/prompts/add-educational-comments.prompt.md +129 -0
- package/resources/customizations/.github/prompts/breakdown-bug-prd.prompt.md +29 -0
- package/resources/customizations/.github/prompts/breakdown-epic-arch.prompt.md +66 -0
- package/resources/customizations/.github/prompts/breakdown-epic-pm.prompt.md +58 -0
- package/resources/customizations/.github/prompts/breakdown-feature-implementation.prompt.md +128 -0
- package/resources/customizations/.github/prompts/breakdown-feature-prd.prompt.md +61 -0
- package/resources/customizations/.github/prompts/code-exemplars-blueprint-generator.prompt.md +126 -0
- package/resources/customizations/.github/prompts/drafts/create-github-issues-feature-from-implementation-plan.prompt.md +28 -0
- package/resources/customizations/.github/prompts/drafts/create-implementation-plan.prompt.md +158 -0
- package/resources/customizations/.github/prompts/drafts/create-technical-spike.prompt.md +231 -0
- package/resources/customizations/.github/prompts/drafts/potential-feature-prd.prompt.md +19 -0
- package/resources/customizations/.github/prompts/drafts/update-implementation-plan.prompt.md +158 -0
- package/resources/customizations/.github/prompts/execute-plan-template.md +21 -0
- package/resources/customizations/.github/prompts/export-chat.prompt.md +7 -0
- package/resources/customizations/.github/prompts/fillout-prd-feature.prompt.md +46 -0
- package/resources/customizations/.github/prompts/generate-atomic-plan.prompt.md +96 -0
- package/resources/customizations/.github/prompts/generate-commit-message-repo.prompt.md +108 -0
- package/resources/customizations/.github/prompts/generate-pr.prompt.md +151 -0
- package/resources/customizations/.github/prompts/javascript-typescript-jest.prompt.md +44 -0
- package/resources/customizations/.github/prompts/orchestrate-csharp-work.prompt.md +66 -0
- package/resources/customizations/.github/prompts/orchestrate-powershell-work.prompt.md +50 -0
- package/resources/customizations/.github/prompts/orchestrate-python-work.prompt.md +50 -0
- package/resources/customizations/.github/prompts/orchestrate-work.prompt.md +66 -0
- package/resources/customizations/.github/prompts/remediate-comments.prompt.md +53 -0
- package/resources/customizations/.github/prompts/research-issue.prompt.md +125 -0
- package/resources/customizations/.github/prompts/review-epic.prompt.md +94 -0
- package/resources/customizations/.github/prompts/review-feature.prompt.md +130 -0
- package/resources/customizations/.github/prompts/review-staged.prompt.md +43 -0
- package/resources/customizations/.github/prompts/update_status.prompt.md +68 -0
- package/resources/customizations/.github/skills/README.md +26 -0
- package/resources/customizations/.github/skills/acceptance-criteria-tracking/SKILL.md +102 -0
- package/resources/customizations/.github/skills/atomic-plan-contract/SKILL.md +174 -0
- package/resources/customizations/.github/skills/csharp-change-budget-router/SKILL.md +48 -0
- package/resources/customizations/.github/skills/csharp-orchestration-state-machine/SKILL.md +57 -0
- package/resources/customizations/.github/skills/evidence-and-timestamp-conventions/SKILL.md +135 -0
- package/resources/customizations/.github/skills/feature-promotion-lifecycle/SKILL.md +121 -0
- package/resources/customizations/.github/skills/feature-review-workflow/SKILL.md +153 -0
- package/resources/customizations/.github/skills/make-skill-template/SKILL.md +147 -0
- package/resources/customizations/.github/skills/policy-audit-template-usage/SKILL.md +48 -0
- package/resources/customizations/.github/skills/policy-compliance-order/SKILL.md +37 -0
- package/resources/customizations/.github/skills/powershell-change-budget-router/SKILL.md +48 -0
- package/resources/customizations/.github/skills/powershell-orchestration-state-machine/SKILL.md +57 -0
- package/resources/customizations/.github/skills/pr-base-branch-merge-base/SKILL.md +55 -0
- package/resources/customizations/.github/skills/pr-context-artifacts/SKILL.md +29 -0
- package/resources/customizations/.github/skills/remediation-handoff-atomic-planner/SKILL.md +39 -0
- package/resources/customizations/.github/skills/skill-canonical-location-audit/SKILL.md +48 -0
- package/resources/feature-templates/bug/plan.yyyy-MM-ddTHH-mm.md +44 -0
- package/resources/feature-templates/bug/potential_bug.md +59 -0
- package/resources/feature-templates/bug/spec.md +99 -0
- package/resources/feature-templates/epic/initiative.md +43 -0
- package/resources/feature-templates/feature/plan.yyyy-MM-ddTHH-mm.md +53 -0
- package/resources/feature-templates/feature/spec.md +66 -0
- package/resources/feature-templates/feature/user-story.md +42 -0
- package/resources/feature-templates/potential/template.md +33 -0
- package/resources/feature-templates/refactor/plan.yyyy-MM-ddTHH-mm.md +52 -0
- package/resources/feature-templates/refactor/spec.md +69 -0
- package/resources/powershell/PoshQC/PoshQC.Analyzer.psm1 +254 -0
- package/resources/powershell/PoshQC/PoshQC.FileDiscovery.psm1 +138 -0
- package/resources/powershell/PoshQC/PoshQC.Testing.psm1 +409 -0
- package/resources/powershell/PoshQC/PoshQC.psd1 +31 -0
- package/resources/powershell/PoshQC/PoshQC.psm1 +101 -0
- package/resources/powershell/PoshQC/README.md +80 -0
- package/resources/powershell/PoshQC/settings/pester.runsettings.psd1 +59 -0
- package/resources/powershell/PoshQC/settings/pssa.settings.psd1 +55 -0
- package/resources/scripts/dev_tools/__init__.py +0 -0
- package/resources/scripts/dev_tools/agentic_sync.py +819 -0
- package/resources/scripts/dev_tools/codex_native_converter/__init__.py +11 -0
- package/resources/scripts/dev_tools/codex_native_converter/__main__.py +6 -0
- package/resources/scripts/dev_tools/codex_native_converter/cli.py +11 -0
- package/resources/scripts/dev_tools/new_active_feature_folder.py +79 -0
- package/resources/scripts/dev_tools/new_active_feature_folder_docs.py +268 -0
- package/resources/scripts/dev_tools/new_active_feature_folder_flow.py +366 -0
- package/resources/scripts/dev_tools/new_active_feature_folder_io.py +306 -0
- package/resources/scripts/dev_tools/new_active_feature_folder_markdown.py +252 -0
- package/resources/scripts/dev_tools/new_active_feature_folder_models.py +136 -0
- package/resources/scripts/dev_tools/new_potential_bug_entry.py +465 -0
- package/resources/scripts/dev_tools/potential_to_issue.py +421 -0
- package/resources/scripts/dev_tools/potential_to_issue_content.py +212 -0
- package/resources/scripts/dev_tools/pr_context/__init__.py +0 -0
- package/resources/scripts/dev_tools/pr_context/collector.py +619 -0
- package/resources/scripts/dev_tools/pr_context/feature_docs.py +349 -0
- package/resources/scripts/dev_tools/pr_context/git.py +153 -0
- package/resources/scripts/dev_tools/pr_context/github.py +549 -0
- package/resources/scripts/dev_tools/pr_context/models.py +198 -0
- package/resources/scripts/dev_tools/pr_context/render.py +342 -0
- package/resources/scripts/dev_tools/pr_context/render_feature_excerpts.py +256 -0
- package/resources/scripts/dev_tools/pr_context/render_pr_helpers.py +291 -0
- package/resources/scripts/dev_tools/pr_context/summary_helpers.py +386 -0
- package/resources/scripts/dev_tools/pr_context/verification_evidence.py +171 -0
- package/resources/scripts/dev_tools/prompt_mode_contract.py +152 -0
- package/resources/scripts/dev_tools/push_down_claude_customizations.py +188 -0
- package/resources/scripts/dev_tools/push_down_codex_and_agents_customizations.py +139 -0
- package/resources/scripts/dev_tools/push_down_copilot_customizations.py +504 -0
- package/resources/scripts/dev_tools/push_down_copilot_customizations_filesystem.py +217 -0
- package/resources/scripts/dev_tools/push_down_copilot_customizations_rewrites.py +293 -0
- package/resources/scripts/dev_tools/resolve_file_prompt.py +457 -0
- package/resources/scripts/dev_tools/resolve_hard_lock_prompt.py +444 -0
- package/resources/scripts/dev_tools/validate_orchestration_artifacts.py +554 -0
- package/resources/templates/codex_native_converter.py +35 -0
- package/resources/templates/collect_commit_context.py +212 -0
- package/resources/templates/collect_pr_context.py +74 -0
- package/resources/templates/hello_pwsh.ps1 +3 -0
- package/resources/templates/hello_python.py +11 -0
- package/resources/templates/link-parent-child.ps1 +480 -0
- package/resources/templates/new-claude-worktree-session.ps1 +232 -0
- package/resources/templates/new-potential-entry.ps1 +187 -0
- package/resources/templates/new_active_feature_folder.py +67 -0
- package/resources/templates/new_potential_bug_entry.py +54 -0
- package/resources/templates/policy_audit/AGENTS.md +117 -0
- package/resources/templates/policy_audit/code-review.yyyy-MM-ddTHH-mm.md +165 -0
- package/resources/templates/policy_audit/feature-audit.yyyy-MM-ddTHH-mm.md +124 -0
- package/resources/templates/policy_audit/policy-audit.yyyy-MM-ddTHH-mm.md +649 -0
- package/resources/templates/potential_to_issue.py +55 -0
- package/resources/templates/push_down_claude_customizations.py +188 -0
- package/resources/templates/push_down_codex_and_agents_customizations.py +95 -0
- package/resources/templates/push_down_copilot_customizations.py +124 -0
- package/resources/templates/resolve_atomic_plan_prompt.py +75 -0
- package/resources/templates/resolve_hard_lock_prompt.py +65 -0
- package/resources/templates/run-poshqc-analyze-autofix.ps1 +16 -0
- package/resources/templates/run-poshqc-analyze.ps1 +26 -0
- package/resources/templates/run-poshqc-format.ps1 +26 -0
- package/resources/templates/run-poshqc-suite.ps1 +24 -0
- package/resources/templates/run-poshqc-test.ps1 +32 -0
- package/resources/templates/sync-agents-from-instructions.ps1 +400 -0
- package/resources/templates/validate_orchestration_artifacts.py +55 -0
- package/resources/templates/vscode-cli.helpers.ps1 +63 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: research-issue
|
|
3
|
+
description: Investigate the best implementation approach for a feature or bug by analyzing the codebase and external references, then writing structured findings to artifacts/research/.
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Grep
|
|
7
|
+
- Glob
|
|
8
|
+
- WebFetch
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Research Issue Skill
|
|
12
|
+
|
|
13
|
+
Research the best implementation approach for a feature or bug described in the provided issue and spec documents. Output is a structured research file, not implementation code.
|
|
14
|
+
|
|
15
|
+
## Inputs
|
|
16
|
+
|
|
17
|
+
Accept one or more feature documents as context:
|
|
18
|
+
|
|
19
|
+
- `docs/features/active/<feature>/issue.md` (primary)
|
|
20
|
+
- `docs/features/active/<feature>/user-story.md` (when present)
|
|
21
|
+
- `docs/features/active/<feature>/spec.md` (when present)
|
|
22
|
+
|
|
23
|
+
## Output
|
|
24
|
+
|
|
25
|
+
Create or update a single research file:
|
|
26
|
+
|
|
27
|
+
- Path: `artifacts/research/<timestamp>-<short-name>-research.md`
|
|
28
|
+
- Use the Task Researcher template from the repository exactly.
|
|
29
|
+
- Place rejected-alternatives summaries inside `## Recommended Approach`, not as a separate top-level header.
|
|
30
|
+
|
|
31
|
+
## Investigation Areas
|
|
32
|
+
|
|
33
|
+
### 1. Current State Analysis
|
|
34
|
+
|
|
35
|
+
- Identify implementation targets from the feature docs.
|
|
36
|
+
- Read relevant modules end-to-end.
|
|
37
|
+
- Document current behavior, key abstractions, extension points, and toolchain constraints.
|
|
38
|
+
|
|
39
|
+
### 2. Candidate Implementation Approaches
|
|
40
|
+
|
|
41
|
+
- Research and compare at least two viable approaches.
|
|
42
|
+
- Select one final recommendation with justification.
|
|
43
|
+
- For any new dependency, confirm whether it already exists in the repo and justify adding it.
|
|
44
|
+
- Gather authoritative external documentation to support the recommendation.
|
|
45
|
+
|
|
46
|
+
### 3. Behavior Semantics and Edge Cases
|
|
47
|
+
|
|
48
|
+
- Extract intended behavior from feature docs.
|
|
49
|
+
- Define success/failure conditions, ordering rules, cancellation behavior, and CI vs. local expectations.
|
|
50
|
+
- Research comparable tools that implement similar semantics.
|
|
51
|
+
|
|
52
|
+
### 4. Requirements Mapping to Design
|
|
53
|
+
|
|
54
|
+
- Map acceptance criteria into a concrete design.
|
|
55
|
+
- Propose state model, transitions, internal API boundaries, and required file changes.
|
|
56
|
+
|
|
57
|
+
### 5. Testing Implications
|
|
58
|
+
|
|
59
|
+
- Propose a test strategy consistent with repository policy (unit tests for pure logic, integration seams).
|
|
60
|
+
- Do not write test code; describe the strategy only.
|
|
61
|
+
|
|
62
|
+
## Constraints
|
|
63
|
+
|
|
64
|
+
- Research only. Do not implement changes.
|
|
65
|
+
- Ground all findings in verified evidence from the codebase and authoritative external sources.
|
|
66
|
+
- Keep discussion of non-selected approaches brief.
|
|
67
|
+
- Do not claim or perform nested worker delegation.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: review-epic
|
|
3
|
+
description: Invoke the epic-review worker to produce epic-audit artifacts for an epic folder.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Review Epic Skill
|
|
7
|
+
|
|
8
|
+
This direct-use wrapper delegates review work to the `epic-review` worker.
|
|
9
|
+
|
|
10
|
+
## Inputs
|
|
11
|
+
|
|
12
|
+
- Active epic folder path
|
|
13
|
+
- Evidence and child-feature context under that epic
|
|
14
|
+
|
|
15
|
+
## Output Paths
|
|
16
|
+
|
|
17
|
+
- `docs/features/epics/<epic>/epic-audit.<timestamp>.md`
|
|
18
|
+
|
|
19
|
+
## Worker Routing
|
|
20
|
+
|
|
21
|
+
- Worker: `epic-review`
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: review-feature
|
|
3
|
+
description: Invoke the feature-review worker to produce feature-audit artifacts for an active feature folder.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Review Feature Skill
|
|
7
|
+
|
|
8
|
+
This direct-use wrapper delegates review work to the `feature-review` worker.
|
|
9
|
+
|
|
10
|
+
## Inputs
|
|
11
|
+
|
|
12
|
+
- Active feature folder path
|
|
13
|
+
- Existing implementation, evidence, and requirement files under that folder
|
|
14
|
+
|
|
15
|
+
## Output Paths
|
|
16
|
+
|
|
17
|
+
When the active review scope is a selected version folder such as `docs/features/active/<feature>/v2/`, write the review artifacts into that selected version folder rather than the parent feature root.
|
|
18
|
+
|
|
19
|
+
- `docs/features/active/<feature-or-selected-version>/policy-audit.<timestamp>.md`
|
|
20
|
+
- `docs/features/active/<feature-or-selected-version>/code-review.<timestamp>.md`
|
|
21
|
+
- `docs/features/active/<feature-or-selected-version>/feature-audit.<timestamp>.md`
|
|
22
|
+
|
|
23
|
+
## Worker Routing
|
|
24
|
+
|
|
25
|
+
- Worker: `feature-review`
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: review-staged
|
|
3
|
+
description: Invoke the staged-review worker to produce staged-review artifacts from the staged diff.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Review Staged Skill
|
|
7
|
+
|
|
8
|
+
This direct-use wrapper delegates review work to the `staged-review` worker.
|
|
9
|
+
|
|
10
|
+
## Inputs
|
|
11
|
+
|
|
12
|
+
- Current staged diff
|
|
13
|
+
- Repository context needed to review staged changes
|
|
14
|
+
|
|
15
|
+
## Output Paths
|
|
16
|
+
|
|
17
|
+
- `artifacts/reviews/staged-review.<timestamp>.md`
|
|
18
|
+
|
|
19
|
+
## Worker Routing
|
|
20
|
+
|
|
21
|
+
- Worker: `staged-review`
|
package/resources/claude-customizations/.claude/skills/skill-canonical-location-audit/SKILL.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: skill-canonical-location-audit
|
|
3
|
+
description: 'Audit skills for canonical-location duplication. Use when ensuring a canonical location for a given item is defined in exactly one skill and duplicates are flagged.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Skill Canonical-Location Audit
|
|
7
|
+
|
|
8
|
+
Audit skills to ensure canonical locations for the same item are not defined in multiple places.
|
|
9
|
+
|
|
10
|
+
## When to Use This Skill
|
|
11
|
+
|
|
12
|
+
Use this skill when:
|
|
13
|
+
- You add or update skills that define canonical locations.
|
|
14
|
+
- You want to verify that canonical paths live in exactly one skill.
|
|
15
|
+
- You need a duplication report listing which skills conflict.
|
|
16
|
+
|
|
17
|
+
## Scope
|
|
18
|
+
|
|
19
|
+
- Applies to all skills under `.claude/skills/**/SKILL.md`.
|
|
20
|
+
- Focuses on canonical locations (paths, folders, or file names) for a given item (e.g., PR context artifacts, evidence locations, issue mirrors).
|
|
21
|
+
|
|
22
|
+
## Audit Workflow
|
|
23
|
+
|
|
24
|
+
1) Inventory canonical-location statements
|
|
25
|
+
- Read each `SKILL.md` and extract explicit canonical location statements (paths, folders, file names).
|
|
26
|
+
- Group statements by the item they describe (e.g., “PR context summary”, “baseline evidence”).
|
|
27
|
+
|
|
28
|
+
2) Detect duplicates
|
|
29
|
+
- For each item group, verify that exactly one skill defines its canonical location.
|
|
30
|
+
- If two or more skills define the same item’s canonical location, flag it as a duplication.
|
|
31
|
+
|
|
32
|
+
3) Report results
|
|
33
|
+
- Produce a short report listing:
|
|
34
|
+
- The item with duplicated canonical location
|
|
35
|
+
- The conflicting skills
|
|
36
|
+
- A recommendation for consolidation (name the single skill to keep as source-of-truth)
|
|
37
|
+
|
|
38
|
+
## Output Template (Suggested)
|
|
39
|
+
|
|
40
|
+
- Item: <canonical item name>
|
|
41
|
+
- Skills with definitions: <skill A>, <skill B>, ...
|
|
42
|
+
- Recommendation: Keep <skill X> as canonical; remove duplicates from others.
|
|
43
|
+
|
|
44
|
+
## Notes
|
|
45
|
+
|
|
46
|
+
- If a skill references a canonical location indirectly (e.g., “see evidence-and-timestamp-conventions”), do NOT treat that as a duplication.
|
|
47
|
+
- Only treat explicit canonical paths or filenames as definitions.
|
|
48
|
+
|
|
49
|
+
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: translate-copilot-to-claude
|
|
3
|
+
description: Translate one or more GitHub Copilot native files (.github/copilot-instructions.md, .github/instructions/*.instructions.md, .github/agents/*.agent.md, .github/prompts/*.prompt.md, .github/skills/<name>/SKILL.md) into the native Claude runtime. Classify each section into agent/rule/skill/hook surfaces, diff against existing .claude/ state, produce a translation plan for user approval, and then apply the plan.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Translate Copilot to Claude
|
|
7
|
+
|
|
8
|
+
Deterministic translation workflow that ports GitHub Copilot native files into the `.claude/` runtime without duplicating content, overwriting user edits, or breaking existing agents.
|
|
9
|
+
|
|
10
|
+
## When to Use This Skill
|
|
11
|
+
|
|
12
|
+
Use this skill when:
|
|
13
|
+
|
|
14
|
+
- One or more `.github/` native files must be mirrored into `.claude/`.
|
|
15
|
+
- An agent persona needs to be split across Claude's four runtime surfaces.
|
|
16
|
+
- A batch of instructions files must be re-expressed as path-scoped Claude rules.
|
|
17
|
+
- A Copilot prompt or skill must be reshaped into a Claude skill.
|
|
18
|
+
- The user wants to know what is missing or out-of-date on the Claude side before making changes.
|
|
19
|
+
|
|
20
|
+
## Inputs
|
|
21
|
+
|
|
22
|
+
Required:
|
|
23
|
+
|
|
24
|
+
- One or more source paths under `.github/`. Accepted types:
|
|
25
|
+
- `.github/copilot-instructions.md`
|
|
26
|
+
- `.github/instructions/<name>.instructions.md`
|
|
27
|
+
- `.github/agents/<name>.agent.md`
|
|
28
|
+
- `.github/prompts/<name>.prompt.md`
|
|
29
|
+
- `.github/skills/<name>/SKILL.md`
|
|
30
|
+
|
|
31
|
+
Optional:
|
|
32
|
+
|
|
33
|
+
- `mode=plan-only` — do not write anything; emit the translation plan and stop.
|
|
34
|
+
- `mode=apply` — apply the plan after it is produced and approved in the same turn.
|
|
35
|
+
- `target-scope=<agent|rule|skill|hook|all>` — restrict surfaces considered for this run.
|
|
36
|
+
- `timestamp-override=<ISO-8601>` — override the auto-generated evidence folder timestamp.
|
|
37
|
+
|
|
38
|
+
Default mode is `plan-only`. Apply requires explicit confirmation either via `mode=apply` or a plain-text approval in the same turn.
|
|
39
|
+
|
|
40
|
+
## Phase 1 — Intake and Section Extraction
|
|
41
|
+
|
|
42
|
+
For each input file:
|
|
43
|
+
|
|
44
|
+
1. Read the full file with `Read`.
|
|
45
|
+
2. Parse YAML frontmatter (name, description, tools, applyTo, agent, handoffs, model, other keys).
|
|
46
|
+
3. Split the body into top-level sections delimited by `#`, `##`, `###` headings.
|
|
47
|
+
4. Classify each section as declarative, procedural, enforceable, identity, or handoff per the taxonomy in Phase 2.
|
|
48
|
+
5. Record each section as `{source_path, heading, classification, raw_content}` in an in-memory list.
|
|
49
|
+
|
|
50
|
+
Never modify or delete source files. Translation is a copy-forward operation.
|
|
51
|
+
|
|
52
|
+
## Phase 2 — Classification Taxonomy
|
|
53
|
+
|
|
54
|
+
Apply these decision rules in order. Use the first rule that matches.
|
|
55
|
+
|
|
56
|
+
### 2.1 Enforceable (hard gate / hard stop) -> `.claude/hooks/`
|
|
57
|
+
|
|
58
|
+
A section is enforceable when it contains:
|
|
59
|
+
|
|
60
|
+
- phrases such as "hard gate", "hard stop", "must not", "blocked", "forbidden", "zero-regression", "non-negotiable",
|
|
61
|
+
- command or path blacklists that should be rejected regardless of model intent,
|
|
62
|
+
- per-batch counting or budget limits,
|
|
63
|
+
- toolchain-execution verification ("must run", "no unverified work"),
|
|
64
|
+
- test-purity forbiddens (tempfile, network, subprocess in tests).
|
|
65
|
+
|
|
66
|
+
Target:
|
|
67
|
+
|
|
68
|
+
- A new or updated script under `.claude/hooks/<name>.ps1`.
|
|
69
|
+
- Registration in `.claude/settings.json` under `hooks.PreToolUse` or `hooks.SubagentStop` with a `matcher` that targets the affected tools (`Bash`, `Write|Edit`, specific agent names).
|
|
70
|
+
|
|
71
|
+
Hooks must be read-only validation gates unless the user explicitly authorizes state mutation. Prefer exit code 0 with a `{"decision":"block","reason":"..."}` JSON response over a non-zero exit when feedback to the agent is required.
|
|
72
|
+
|
|
73
|
+
### 2.2 Declarative standards (always-on for matching files) -> `.claude/rules/`
|
|
74
|
+
|
|
75
|
+
A section is declarative when it contains:
|
|
76
|
+
|
|
77
|
+
- coding conventions (naming, typing, imports, error handling),
|
|
78
|
+
- test structure requirements,
|
|
79
|
+
- toolchain ordering statements,
|
|
80
|
+
- file-size limits,
|
|
81
|
+
- language-specific style rules.
|
|
82
|
+
|
|
83
|
+
Target:
|
|
84
|
+
|
|
85
|
+
- An existing rule file under `.claude/rules/` that already covers the same path scope, merged into place.
|
|
86
|
+
- A new rule file under `.claude/rules/<language-or-topic>.md` with frontmatter:
|
|
87
|
+
|
|
88
|
+
```yaml
|
|
89
|
+
---
|
|
90
|
+
paths:
|
|
91
|
+
- "<glob>"
|
|
92
|
+
description: "<one line>"
|
|
93
|
+
---
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
- If the source frontmatter used `applyTo: "<glob>"`, convert to `paths: [<glob>]`.
|
|
97
|
+
|
|
98
|
+
### 2.3 Reusable procedures -> `.claude/skills/<name>/SKILL.md`
|
|
99
|
+
|
|
100
|
+
A section is procedural when it contains:
|
|
101
|
+
|
|
102
|
+
- multi-step workflows ("Phase A", "Phase B", "Workflow", numbered steps),
|
|
103
|
+
- reporting templates,
|
|
104
|
+
- routing decision tables,
|
|
105
|
+
- delegation contracts.
|
|
106
|
+
|
|
107
|
+
Target:
|
|
108
|
+
|
|
109
|
+
- An existing skill under `.claude/skills/` when one already covers the same concept (check `.claude/skills/<name>/SKILL.md` by name and description).
|
|
110
|
+
- A new skill at `.claude/skills/<name>/SKILL.md` when no coverage exists. Use the `make-skill-template` skill as the scaffold if needed. Frontmatter must include `name` and `description`.
|
|
111
|
+
|
|
112
|
+
Copilot `.github/prompts/*.prompt.md` and `.github/skills/<name>/SKILL.md` default to this target. Preserve the original name when it does not collide with an existing Claude skill.
|
|
113
|
+
|
|
114
|
+
### 2.4 Identity and preload manifest -> `.claude/agents/<name>.md`
|
|
115
|
+
|
|
116
|
+
A section belongs on the persona when it contains:
|
|
117
|
+
|
|
118
|
+
- agent name, description, role summary,
|
|
119
|
+
- tool allowlist,
|
|
120
|
+
- model selection,
|
|
121
|
+
- skill preloads,
|
|
122
|
+
- memory scope,
|
|
123
|
+
- a short workflow index pointing to preloaded skills,
|
|
124
|
+
- stop conditions.
|
|
125
|
+
|
|
126
|
+
Target:
|
|
127
|
+
|
|
128
|
+
- An existing agent file under `.claude/agents/<name>.md`. Update only the preload list, tools, description, and stop conditions. Keep the body thin.
|
|
129
|
+
- A new agent file when the Copilot persona has no Claude counterpart. Do not duplicate rule, skill, or hook content into the persona body.
|
|
130
|
+
|
|
131
|
+
### 2.5 Handoffs and delegation -> reference existing skills
|
|
132
|
+
|
|
133
|
+
Sections describing handoffs to other agents ("delegate to atomic_planner", "handoffs:" frontmatter) should not be duplicated. Reference the canonical skill:
|
|
134
|
+
|
|
135
|
+
- plan authoring -> `atomic-plan-contract`
|
|
136
|
+
- remediation -> `remediation-handoff-atomic-planner`
|
|
137
|
+
- promotion lifecycle -> `feature-promotion-lifecycle`
|
|
138
|
+
- PR context -> `pr-context-artifacts`
|
|
139
|
+
- evidence storage -> `evidence-and-timestamp-conventions`
|
|
140
|
+
|
|
141
|
+
### 2.6 Repo-wide tone / policy precedence -> `CLAUDE.md`
|
|
142
|
+
|
|
143
|
+
Sections that state cross-cutting repository defaults (tone, policy reading order, architectural overview) belong in `CLAUDE.md` and should be cross-referenced from `.claude/rules/` rather than restated.
|
|
144
|
+
|
|
145
|
+
### 2.7 Out-of-scope content
|
|
146
|
+
|
|
147
|
+
The following content is **not** translated:
|
|
148
|
+
|
|
149
|
+
- GitHub Actions workflow YAML under `.github/workflows/`.
|
|
150
|
+
- Codex or other non-Copilot customizations under `.github/codex/` unless explicitly requested.
|
|
151
|
+
- Copilot `chatmodes` unless the user specifies a target Claude surface.
|
|
152
|
+
|
|
153
|
+
## Phase 3 — Target Resolution
|
|
154
|
+
|
|
155
|
+
For each classified section, compute a concrete target path:
|
|
156
|
+
|
|
157
|
+
1. **Hook**: `.claude/hooks/<verb-noun>.ps1` where the verb is `check|enforce|validate` and the noun is the concern (for example, `check-python-test-purity.ps1`, `enforce-python-batch-budget.ps1`).
|
|
158
|
+
2. **Rule**: `.claude/rules/<topic>.md` where topic is the language (`python.md`, `csharp.md`, `powershell.md`, `typescript.md`) or cross-cutting concern (`tonality.md`, `general-code-change.md`, `general-unit-test.md`).
|
|
159
|
+
3. **Skill**: `.claude/skills/<kebab-case-name>/SKILL.md`. Prefer verb-first names for action skills (`review-feature`, `implement-python`, `invoke-python-engineer`) and topic names for contract skills (`python-qa-gate`, `atomic-plan-contract`).
|
|
160
|
+
4. **Agent**: `.claude/agents/<kebab-case-name>.md`. Normalize underscores to hyphens (`python_typed_engineer` -> `python-typed-engineer`).
|
|
161
|
+
5. **CLAUDE.md**: single repo-wide file at the workspace root.
|
|
162
|
+
6. **settings.json**: `.claude/settings.json` sections `hooks` and `permissions`.
|
|
163
|
+
|
|
164
|
+
Record target paths in the plan. Do not write anything yet.
|
|
165
|
+
|
|
166
|
+
## Phase 4 — Existing State Diff
|
|
167
|
+
|
|
168
|
+
For every target path:
|
|
169
|
+
|
|
170
|
+
1. `Read` the existing file when it exists.
|
|
171
|
+
2. Compute a per-section delta:
|
|
172
|
+
- **add** — the section does not exist in the target.
|
|
173
|
+
- **replace** — the section exists but the source content supersedes it (explicit user intent).
|
|
174
|
+
- **merge** — the section exists and source content must be appended or integrated without removing existing text.
|
|
175
|
+
- **skip** — the section is already present verbatim or has a newer canonical form in the target.
|
|
176
|
+
- **conflict** — the source and target disagree on substantive content; requires user decision.
|
|
177
|
+
3. For `.claude/settings.json`, compute add-only updates to `hooks.*` arrays and `permissions.allow`. Never remove existing permissions without explicit instruction.
|
|
178
|
+
4. For agent personas already present, prefer **merge** over **replace** to preserve hand-authored guidance.
|
|
179
|
+
|
|
180
|
+
Flag every `conflict` row in the plan. Conflicts stop Phase 6 for that row until resolved.
|
|
181
|
+
|
|
182
|
+
## Phase 5 — Translation Plan Artifact
|
|
183
|
+
|
|
184
|
+
Write a translation plan to `artifacts/translation/<timestamp>/plan.md`. The timestamp is ISO-8601 UTC, for example `2026-04-18T14-30-00Z`, per `evidence-and-timestamp-conventions`.
|
|
185
|
+
|
|
186
|
+
Plan structure:
|
|
187
|
+
|
|
188
|
+
```markdown
|
|
189
|
+
# Translation Plan: <source file basename(s)>
|
|
190
|
+
|
|
191
|
+
Generated: <timestamp>
|
|
192
|
+
Mode: <plan-only | apply>
|
|
193
|
+
|
|
194
|
+
## Inputs
|
|
195
|
+
- <source path 1>
|
|
196
|
+
- <source path 2>
|
|
197
|
+
|
|
198
|
+
## Mapping Table
|
|
199
|
+
| Source Section | Classification | Target Path | Action |
|
|
200
|
+
|---|---|---|---|
|
|
201
|
+
| <source#section-anchor> | rule | .claude/rules/python.md#pytest-rules | merge |
|
|
202
|
+
| <source#section-anchor> | hook | .claude/hooks/check-python-test-purity.ps1 | add |
|
|
203
|
+
| <source#section-anchor> | skill | .claude/skills/python-qa-gate/SKILL.md | add |
|
|
204
|
+
| <source#section-anchor> | agent | .claude/agents/python-typed-engineer.md | merge |
|
|
205
|
+
| <source#section-anchor> | settings | .claude/settings.json | add |
|
|
206
|
+
|
|
207
|
+
## Conflicts (require user decision)
|
|
208
|
+
<one row per conflict, or "none">
|
|
209
|
+
|
|
210
|
+
## New Files
|
|
211
|
+
<list of new file paths>
|
|
212
|
+
|
|
213
|
+
## Updated Files
|
|
214
|
+
<list of modified file paths>
|
|
215
|
+
|
|
216
|
+
## Settings Delta
|
|
217
|
+
- Hooks added: <list>
|
|
218
|
+
- Permissions added: <list>
|
|
219
|
+
- Matchers extended: <list>
|
|
220
|
+
|
|
221
|
+
## Evidence Paths
|
|
222
|
+
- artifacts/translation/<timestamp>/plan.md
|
|
223
|
+
- artifacts/translation/<timestamp>/diff.md (populated after apply)
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
Always produce the plan artifact, even in `mode=apply` runs, for auditability.
|
|
227
|
+
|
|
228
|
+
## Phase 6 — Apply (only after explicit approval)
|
|
229
|
+
|
|
230
|
+
Only execute when one of the following holds:
|
|
231
|
+
|
|
232
|
+
- The user invoked the skill with `mode=apply`.
|
|
233
|
+
- The user sent a plain-text approval ("proceed", "apply", "execute the plan") in the same turn after the plan was shown.
|
|
234
|
+
|
|
235
|
+
Apply order (to minimize breakage):
|
|
236
|
+
|
|
237
|
+
1. **Rules** — add or merge rule files under `.claude/rules/`.
|
|
238
|
+
2. **Skills** — add or merge skill files under `.claude/skills/<name>/SKILL.md`.
|
|
239
|
+
3. **Hooks** — add hook scripts under `.claude/hooks/` and parse-check them with `pwsh -NoProfile -Command "[System.Management.Automation.Language.Parser]::ParseFile(..., [ref]$null, [ref]$errors)"`.
|
|
240
|
+
4. **Agent personas** — update `.claude/agents/<name>.md` frontmatter (tools, skills, memory) and trim the body to identity + workflow index.
|
|
241
|
+
5. **settings.json** — append hook registrations and `Skill(...)` permissions. Never rewrite the file; use targeted edits.
|
|
242
|
+
6. **CLAUDE.md** — append cross-references only; never overwrite existing sections.
|
|
243
|
+
7. **Evidence** — write `artifacts/translation/<timestamp>/diff.md` summarizing what was actually changed, and store a copy of every new or modified file path under `artifacts/translation/<timestamp>/snapshots/`.
|
|
244
|
+
|
|
245
|
+
After apply, run a verification sweep:
|
|
246
|
+
|
|
247
|
+
- Parse-check every new or changed `.ps1` under `.claude/hooks/`.
|
|
248
|
+
- JSON-parse `.claude/settings.json` to confirm validity.
|
|
249
|
+
- Confirm every new skill appears in the skills catalog by reading back the first five lines of each target file.
|
|
250
|
+
- Report the final mapping table with `done` / `skipped` / `conflict-unresolved` statuses.
|
|
251
|
+
|
|
252
|
+
## Phase 7 — Reporting
|
|
253
|
+
|
|
254
|
+
Every completion response must include:
|
|
255
|
+
|
|
256
|
+
1. **Inputs** — list of source files.
|
|
257
|
+
2. **Mapping summary** — counts by classification (rule, skill, hook, agent, settings).
|
|
258
|
+
3. **Action summary** — counts by action (add, replace, merge, skip, conflict).
|
|
259
|
+
4. **Files changed** — explicit list of created and modified paths.
|
|
260
|
+
5. **Settings delta** — hooks and permissions added.
|
|
261
|
+
6. **Evidence paths** — artifact locations.
|
|
262
|
+
7. **Conflicts** — unresolved conflict rows, or "none".
|
|
263
|
+
|
|
264
|
+
## Guarantees and Prohibitions
|
|
265
|
+
|
|
266
|
+
- **Idempotency**: running the skill twice on the same input produces no new changes beyond the regenerated plan artifact.
|
|
267
|
+
- **No source deletion**: `.github/` files are never modified or removed.
|
|
268
|
+
- **No silent overwrites**: existing `.claude/` content is merged by default. Replace requires either user instruction or a `conflict` row resolved explicitly.
|
|
269
|
+
- **No hook-based state mutation**: hooks generated by this skill are validation-only unless the user authorizes otherwise.
|
|
270
|
+
- **No settings.json rewrites**: only targeted edits that append permissions or matchers.
|
|
271
|
+
- **No translation of out-of-scope surfaces**: `.github/workflows/`, `.github/codex/`, and unrecognized file types are skipped and listed under "Skipped inputs" in the plan.
|
|
272
|
+
|
|
273
|
+
## Classification Quick Reference
|
|
274
|
+
|
|
275
|
+
| Copilot source pattern | Default Claude target | Notes |
|
|
276
|
+
|---|---|---|
|
|
277
|
+
| `.github/copilot-instructions.md` | `CLAUDE.md` + `.claude/rules/tonality.md` | Tone and precedence only. |
|
|
278
|
+
| `.github/instructions/*.instructions.md` (applyTo) | `.claude/rules/<topic>.md` (paths) | Direct frontmatter rewrite. |
|
|
279
|
+
| `.github/agents/*.agent.md` identity frontmatter | `.claude/agents/<name>.md` frontmatter | Convert `tools:` to Claude tool names. |
|
|
280
|
+
| `.github/agents/*.agent.md` "Absolute guardrails / hard gate" | `.claude/hooks/*.ps1` + `settings.json` | Hooks enforce; rules merely document. |
|
|
281
|
+
| `.github/agents/*.agent.md` "Workflow / Phase X" | `.claude/skills/<workflow>/SKILL.md` | Split per phase when phases are independent. |
|
|
282
|
+
| `.github/agents/*.agent.md` "Design rules / Testing rules" | `.claude/rules/<language>.md` | Merge under Design Rules / Pytest Rules subheadings. |
|
|
283
|
+
| `.github/agents/*.agent.md` "Handoffs" | Reference existing routing skills | Do not duplicate. |
|
|
284
|
+
| `.github/agents/*.agent.md` "Reporting requirements" | `.claude/skills/<name>-qa-gate/SKILL.md` or the QA gate skill | Procedure, not identity. |
|
|
285
|
+
| `.github/prompts/*.prompt.md` | `.claude/skills/<action-name>/SKILL.md` | One skill per prompt. |
|
|
286
|
+
| `.github/skills/<name>/SKILL.md` | `.claude/skills/<name>/SKILL.md` | Near-1:1; reconcile frontmatter schema. |
|
|
287
|
+
|
|
288
|
+
## Invocation Examples
|
|
289
|
+
|
|
290
|
+
- Translate a single agent persona, plan only:
|
|
291
|
+
`translate-copilot-to-claude .github/agents/python-typed-engineer.agent.md`
|
|
292
|
+
- Translate a set of instruction files and apply:
|
|
293
|
+
`translate-copilot-to-claude .github/instructions/python-code-change.instructions.md .github/instructions/python-unit-test.instructions.md mode=apply`
|
|
294
|
+
- Translate an entire agent bundle (persona + its referenced instructions):
|
|
295
|
+
`translate-copilot-to-claude .github/agents/csharp-typed-engineer.agent.md .github/instructions/csharp-code-change.instructions.md .github/instructions/csharp-unit-test.instructions.md target-scope=all`
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: update-status
|
|
3
|
+
description: Invoke the status-updater worker to reconcile status artifacts and synchronized status outputs.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Update Status Skill
|
|
7
|
+
|
|
8
|
+
This direct-use wrapper delegates status synchronization work to the `status-updater` worker.
|
|
9
|
+
|
|
10
|
+
## Inputs
|
|
11
|
+
|
|
12
|
+
- Epic or feature folder path
|
|
13
|
+
- Existing plan, evidence, and issue status context
|
|
14
|
+
|
|
15
|
+
## Output Paths
|
|
16
|
+
|
|
17
|
+
- `artifacts/status/status-sync.<timestamp>.md`
|
|
18
|
+
|
|
19
|
+
## Worker Routing
|
|
20
|
+
|
|
21
|
+
- Worker: `status-updater`
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Codex Skill Architecture
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
This directory is the canonical Codex runtime surface for repository-local skills.
|
|
6
|
+
|
|
7
|
+
Codex-supported repository locations in this repo are:
|
|
8
|
+
|
|
9
|
+
- `.agents/skills/<skill-name>/SKILL.md` for reusable workflow skills
|
|
10
|
+
- `.codex/agents/*.toml` for subagent definitions
|
|
11
|
+
- `.codex/prompts/*.md` for prompt entrypoints and lightweight workflow launchers
|
|
12
|
+
|
|
13
|
+
The legacy GitHub Copilot ecosystem under `.github/skills` and `.github/agents` remains as historical source material during migration. New Codex-native runtime behavior should be authored in `.agents/skills` and consumed from `.codex/agents`.
|
|
14
|
+
|
|
15
|
+
## Layering
|
|
16
|
+
|
|
17
|
+
Design skills in layers so behavior is authored once and reused everywhere:
|
|
18
|
+
|
|
19
|
+
1. Foundation skills
|
|
20
|
+
- Policy order
|
|
21
|
+
- Atomic plan contract
|
|
22
|
+
- Acceptance criteria tracking
|
|
23
|
+
- Evidence conventions
|
|
24
|
+
- Canonical-location audits
|
|
25
|
+
|
|
26
|
+
2. Integration skills
|
|
27
|
+
- PR base resolution
|
|
28
|
+
- PR context artifact rules
|
|
29
|
+
- Feature-promotion lifecycle
|
|
30
|
+
- Remediation handoff
|
|
31
|
+
- Host-surface adapters
|
|
32
|
+
|
|
33
|
+
3. Language routing and orchestration-state skills
|
|
34
|
+
- Change-budget routers
|
|
35
|
+
- Checkpoint and resume contracts
|
|
36
|
+
|
|
37
|
+
4. Workflow skills
|
|
38
|
+
- `atomic-executor`
|
|
39
|
+
- `atomic-planner`
|
|
40
|
+
- `feature-review`
|
|
41
|
+
- `orchestrator-workflow`
|
|
42
|
+
|
|
43
|
+
5. Specialist support skills
|
|
44
|
+
- `commit-message-conventions`
|
|
45
|
+
- `pr-authoring`
|
|
46
|
+
|
|
47
|
+
6. Subagents
|
|
48
|
+
- Keep `.codex/agents/*.toml` concise.
|
|
49
|
+
- Reference workflow and shared skills by name instead of embedding long duplicated instructions.
|
|
50
|
+
|
|
51
|
+
## Anti-Duplication Rules
|
|
52
|
+
|
|
53
|
+
1. If multiple workflows need the same rule, extract it into one shared skill.
|
|
54
|
+
2. Workflow skills should name the shared skills they depend on rather than restating those blocks.
|
|
55
|
+
3. Environment-specific repo automation and its MCP dependency binding should live in `repo-automation-adapter`, not in each workflow skill.
|
|
56
|
+
4. Canonical paths should be defined in exactly one skill; other skills should reference that skill instead of repeating the path.
|
|
57
|
+
5. If Codex already ships a suitable system skill, prefer a thin repo-local compatibility wrapper instead of re-implementing the same scaffolding.
|
|
58
|
+
6. If an agent persona grows reusable decision rules or formatting rules, move those rules into a shared skill and keep the agent as a thin wrapper.
|
|
59
|
+
7. If a top-level workflow routes between multiple existing skills or subagents, capture that routing once in a shared workflow skill and keep the prompt or agent as a launcher.
|
|
60
|
+
|
|
61
|
+
## Migration Rules
|
|
62
|
+
|
|
63
|
+
When migrating a Copilot artifact:
|
|
64
|
+
|
|
65
|
+
1. If it defines reusable repository guidance, migrate it to `.agents/skills/<name>/SKILL.md`.
|
|
66
|
+
2. If it defines a reusable agent persona or bounded delegation role, migrate it to `.codex/agents/<name>.toml`.
|
|
67
|
+
3. If it is mainly a launch prompt or an orchestration shortcut, migrate it to `.codex/prompts/<name>.md`.
|
|
68
|
+
4. Preserve stable names where possible so downstream handoffs remain readable and consistent.
|
|
69
|
+
5. If a Copilot workflow relied on `drmCopilotExtension.*` commands or another host-specific surface, move that translation logic into `repo-automation-adapter`, target semantic MCP tools on server `drmCopilotExtension` when available, and keep the business workflow skill host-agnostic.
|
|
70
|
+
|
|
71
|
+
## External Tool Bindings
|
|
72
|
+
|
|
73
|
+
When a repository skill owns an external MCP dependency:
|
|
74
|
+
|
|
75
|
+
- declare that dependency once in `agents/openai.yaml` beside the owning skill
|
|
76
|
+
- keep downstream workflow skills dependent on the adapter skill, not on duplicated MCP binding metadata
|
|
77
|
+
|
|
78
|
+
## Future Migrations
|
|
79
|
+
|
|
80
|
+
Use the system `$skill-creator` skill when scaffolding a new Codex skill, then apply the repository rules in this file:
|
|
81
|
+
|
|
82
|
+
- place the runtime skill under `.agents/skills`
|
|
83
|
+
- keep frontmatter minimal
|
|
84
|
+
- make the description explicit about triggers
|
|
85
|
+
- reference existing shared skills before creating a new one
|
|
86
|
+
- add a new shared skill only when the behavior cannot be expressed as a composition of existing skills
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Codex Repository Skills
|
|
2
|
+
|
|
3
|
+
Repository-local Codex skills live under `.agents/skills/<skill-name>/SKILL.md`.
|
|
4
|
+
|
|
5
|
+
## Skill Groups
|
|
6
|
+
|
|
7
|
+
- Foundation
|
|
8
|
+
- `policy-compliance-order`
|
|
9
|
+
- `atomic-plan-contract`
|
|
10
|
+
- `acceptance-criteria-tracking`
|
|
11
|
+
- `evidence-and-timestamp-conventions`
|
|
12
|
+
- `skill-canonical-location-audit`
|
|
13
|
+
|
|
14
|
+
- Integration
|
|
15
|
+
- `repo-automation-adapter`
|
|
16
|
+
- `pr-base-branch-merge-base`
|
|
17
|
+
- `pr-context-artifacts`
|
|
18
|
+
- `feature-promotion-lifecycle`
|
|
19
|
+
- `policy-audit-template-usage`
|
|
20
|
+
- `remediation-handoff-atomic-planner`
|
|
21
|
+
|
|
22
|
+
- Language routing and state
|
|
23
|
+
- `csharp-change-budget-router`
|
|
24
|
+
- `csharp-orchestration-state-machine`
|
|
25
|
+
- `powershell-change-budget-router`
|
|
26
|
+
- `powershell-orchestration-state-machine`
|
|
27
|
+
|
|
28
|
+
- Workflow
|
|
29
|
+
- `atomic-planner`
|
|
30
|
+
- `atomic-executor`
|
|
31
|
+
- `feature-review`
|
|
32
|
+
- `orchestrator-workflow`
|
|
33
|
+
|
|
34
|
+
- Specialist support
|
|
35
|
+
- `commit-message-conventions`
|
|
36
|
+
- `pr-authoring`
|
|
37
|
+
|
|
38
|
+
- Meta
|
|
39
|
+
- `make-skill-template`
|
|
40
|
+
|
|
41
|
+
## Authoring Rules
|
|
42
|
+
|
|
43
|
+
1. Put shared rules in one skill only.
|
|
44
|
+
2. Have workflow skills reference shared skills instead of copying their text.
|
|
45
|
+
3. Put host-specific repo automation rules and their MCP dependency binding in `repo-automation-adapter`.
|
|
46
|
+
4. Keep names stable when migrating from the legacy Copilot ecosystem.
|
|
47
|
+
5. When an agent needs reusable rules, extract them into a shared skill and keep the agent as a thin wrapper.
|
|
48
|
+
6. Put top-level route selection and checkpoint rules in a shared workflow skill rather than duplicating them across prompts or agent personas.
|
|
49
|
+
7. When a skill depends on an external MCP server, declare it in that skill's `agents/openai.yaml` instead of repeating the binding in each caller.
|