@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,72 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- None
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
name: research-issue
|
|
8
|
+
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/.
|
|
9
|
+
allowed-tools:
|
|
10
|
+
- Read
|
|
11
|
+
- Grep
|
|
12
|
+
- Glob
|
|
13
|
+
- WebFetch
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# Research Issue Skill
|
|
17
|
+
|
|
18
|
+
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.
|
|
19
|
+
|
|
20
|
+
## Inputs
|
|
21
|
+
|
|
22
|
+
Accept one or more feature documents as context:
|
|
23
|
+
|
|
24
|
+
- `docs/features/active/<feature>/issue.md` (primary)
|
|
25
|
+
- `docs/features/active/<feature>/user-story.md` (when present)
|
|
26
|
+
- `docs/features/active/<feature>/spec.md` (when present)
|
|
27
|
+
|
|
28
|
+
## Output
|
|
29
|
+
|
|
30
|
+
Create or update a single research file:
|
|
31
|
+
|
|
32
|
+
- Path: `artifacts/research/<timestamp>-<short-name>-research.md`
|
|
33
|
+
- Use the Task Researcher template from the repository exactly.
|
|
34
|
+
- Place rejected-alternatives summaries inside `## Recommended Approach`, not as a separate top-level header.
|
|
35
|
+
|
|
36
|
+
## Investigation Areas
|
|
37
|
+
|
|
38
|
+
### 1. Current State Analysis
|
|
39
|
+
|
|
40
|
+
- Identify implementation targets from the feature docs.
|
|
41
|
+
- Read relevant modules end-to-end.
|
|
42
|
+
- Document current behavior, key abstractions, extension points, and toolchain constraints.
|
|
43
|
+
|
|
44
|
+
### 2. Candidate Implementation Approaches
|
|
45
|
+
|
|
46
|
+
- Research and compare at least two viable approaches.
|
|
47
|
+
- Select one final recommendation with justification.
|
|
48
|
+
- For any new dependency, confirm whether it already exists in the repo and justify adding it.
|
|
49
|
+
- Gather authoritative external documentation to support the recommendation.
|
|
50
|
+
|
|
51
|
+
### 3. Behavior Semantics and Edge Cases
|
|
52
|
+
|
|
53
|
+
- Extract intended behavior from feature docs.
|
|
54
|
+
- Define success/failure conditions, ordering rules, cancellation behavior, and CI vs. local expectations.
|
|
55
|
+
- Research comparable tools that implement similar semantics.
|
|
56
|
+
|
|
57
|
+
### 4. Requirements Mapping to Design
|
|
58
|
+
|
|
59
|
+
- Map acceptance criteria into a concrete design.
|
|
60
|
+
- Propose state model, transitions, internal API boundaries, and required file changes.
|
|
61
|
+
|
|
62
|
+
### 5. Testing Implications
|
|
63
|
+
|
|
64
|
+
- Propose a test strategy consistent with repository policy (unit tests for pure logic, integration seams).
|
|
65
|
+
- Do not write test code; describe the strategy only.
|
|
66
|
+
|
|
67
|
+
## Constraints
|
|
68
|
+
|
|
69
|
+
- Research only. Do not implement changes.
|
|
70
|
+
- Ground all findings in verified evidence from the codebase and authoritative external sources.
|
|
71
|
+
- Keep discussion of non-selected approaches brief.
|
|
72
|
+
- Do not claim or perform nested worker delegation.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- None
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
name: review-epic
|
|
8
|
+
description: Invoke the epic-review worker to produce epic-audit artifacts for an epic folder.
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Review Epic Skill
|
|
12
|
+
|
|
13
|
+
This direct-use wrapper delegates review work to the `epic-review` worker.
|
|
14
|
+
|
|
15
|
+
## Inputs
|
|
16
|
+
|
|
17
|
+
- Active epic folder path
|
|
18
|
+
- Evidence and child-feature context under that epic
|
|
19
|
+
|
|
20
|
+
## Output Paths
|
|
21
|
+
|
|
22
|
+
- `docs/features/epics/<epic>/epic-audit.<timestamp>.md`
|
|
23
|
+
|
|
24
|
+
## Worker Routing
|
|
25
|
+
|
|
26
|
+
- Worker: `epic-review`
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- None
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
name: review-feature
|
|
8
|
+
description: Invoke the feature-review worker to produce feature-audit artifacts for an active feature folder.
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Review Feature Skill
|
|
12
|
+
|
|
13
|
+
This direct-use wrapper delegates review work to the `feature-review` worker.
|
|
14
|
+
|
|
15
|
+
## Inputs
|
|
16
|
+
|
|
17
|
+
- Active feature folder path
|
|
18
|
+
- Existing implementation, evidence, and requirement files under that folder
|
|
19
|
+
|
|
20
|
+
## Output Paths
|
|
21
|
+
|
|
22
|
+
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.
|
|
23
|
+
|
|
24
|
+
- `docs/features/active/<feature-or-selected-version>/policy-audit.<timestamp>.md`
|
|
25
|
+
- `docs/features/active/<feature-or-selected-version>/code-review.<timestamp>.md`
|
|
26
|
+
- `docs/features/active/<feature-or-selected-version>/feature-audit.<timestamp>.md`
|
|
27
|
+
|
|
28
|
+
## Worker Routing
|
|
29
|
+
|
|
30
|
+
- Worker: `feature-review`
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- None
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
name: review-staged
|
|
8
|
+
description: Invoke the staged-review worker to produce staged-review artifacts from the staged diff.
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Review Staged Skill
|
|
12
|
+
|
|
13
|
+
This direct-use wrapper delegates review work to the `staged-review` worker.
|
|
14
|
+
|
|
15
|
+
## Inputs
|
|
16
|
+
|
|
17
|
+
- Current staged diff
|
|
18
|
+
- Repository context needed to review staged changes
|
|
19
|
+
|
|
20
|
+
## Output Paths
|
|
21
|
+
|
|
22
|
+
- `artifacts/reviews/staged-review.<timestamp>.md`
|
|
23
|
+
|
|
24
|
+
## Worker Routing
|
|
25
|
+
|
|
26
|
+
- Worker: `staged-review`
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- None
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
paths:
|
|
8
|
+
- "**/*.py"
|
|
9
|
+
description: Intent-first docstring and commenting standards. Applies to Python files.
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Code Commenting and Docstring Policy
|
|
13
|
+
|
|
14
|
+
This rule file summarizes the code commenting and docstring requirements for Python code in this repository.
|
|
15
|
+
|
|
16
|
+
## Core Principle
|
|
17
|
+
|
|
18
|
+
Write code that is readable, but assume the maintainer may not know the intent. Docstrings are mandatory for classes and functions. Inline comments explain intent, flow, and decision logic — especially around iteration and branching. Avoid low-value comments that merely narrate the obvious.
|
|
19
|
+
|
|
20
|
+
## Mandatory Class Docstrings
|
|
21
|
+
|
|
22
|
+
Every class must have a docstring covering, at minimum:
|
|
23
|
+
|
|
24
|
+
- **Purpose**: what the class represents or coordinates.
|
|
25
|
+
- **Responsibilities**: what it does and does not do (scope boundaries).
|
|
26
|
+
- **Usage**: lifecycle, typical call pattern, and collaboration with other objects.
|
|
27
|
+
- **High-level flow**: the main steps the class performs or orchestrates.
|
|
28
|
+
- **Key invariants/constraints**: expectations that must hold (e.g., sorted inputs, caching semantics).
|
|
29
|
+
- **Important side effects**: I/O, persistence, network calls, mutation, concurrency.
|
|
30
|
+
- **Attributes** (when non-obvious): what the stored fields mean and how they are populated.
|
|
31
|
+
|
|
32
|
+
Preferred docstring style: Google-style with `Args:`, `Returns:`, `Raises:`, and `Attributes:` sections where applicable.
|
|
33
|
+
|
|
34
|
+
## Mandatory Function and Method Docstrings
|
|
35
|
+
|
|
36
|
+
Every function and method (including private helpers) must have a docstring that includes:
|
|
37
|
+
|
|
38
|
+
- **Purpose and behavior**: what it accomplishes.
|
|
39
|
+
- **Parameters**: meaning, constraints, and how used (types included, even when type hints are present).
|
|
40
|
+
- **Returns**: meaning and shape of the return value (or explicitly state `None` for procedures).
|
|
41
|
+
- **Raises**: key exceptions that are part of the contract (not every incidental exception, but contract-relevant ones).
|
|
42
|
+
- **Side effects**: if it mutates inputs, writes to disk/DB, emits events, etc.
|
|
43
|
+
|
|
44
|
+
Keep docstrings accurate and contract-oriented. If behavior changes, docstrings must be updated. If a method is a thin wrapper, say so explicitly and explain why the wrapper exists.
|
|
45
|
+
|
|
46
|
+
## Loops and Comprehensions — Intent Comments Required
|
|
47
|
+
|
|
48
|
+
Every `for` loop, `while` loop, and non-trivial list/dict/set comprehension must have an **intent comment immediately above it** explaining what the loop accomplishes and why.
|
|
49
|
+
|
|
50
|
+
- If the intent of a comprehension cannot be explained clearly in one short comment, prefer expanding to an explicit loop with a comment.
|
|
51
|
+
- Line-by-line narration of trivial loop counters is not required; explain the purpose of the iteration as a whole.
|
|
52
|
+
|
|
53
|
+
## Branching — Decision-Logic Comments Required
|
|
54
|
+
|
|
55
|
+
For any conditional branching beyond a trivial guard clause, add a comment that explains:
|
|
56
|
+
|
|
57
|
+
- The decision criteria (what distinguishes branches).
|
|
58
|
+
- Why the ordering matters (if it does).
|
|
59
|
+
- The business/system rationale for why this branching exists.
|
|
60
|
+
|
|
61
|
+
This applies to `if`/`elif`/`else` chains and `match`/`case` statements. For `match/case`, include a short "routing table" explanation of what each case handle.
|
|
62
|
+
|
|
63
|
+
## Multi-Step Blocks — Meta-What Comments
|
|
64
|
+
|
|
65
|
+
When a sequence of tactical lines collectively accomplishes a larger goal, precede the block with a **meta-what + why comment** that describes the overall purpose of the block and the rationale for its approach.
|
|
66
|
+
|
|
67
|
+
If the block is substantial, strongly prefer extracting it into a helper method with its own docstring.
|
|
68
|
+
|
|
69
|
+
## 6) Do not number notes
|
|
70
|
+
|
|
71
|
+
In code comments and docstrings, **do not** use fragile numbered notes like:
|
|
72
|
+
|
|
73
|
+
* `NOTE 1: ...`
|
|
74
|
+
* `NOTE 2: ...`
|
|
75
|
+
|
|
76
|
+
Prefer comments without tags for general explanations. But if a tag is necessary (e.g. follow-up is needed), use unnumbered tags instead:
|
|
77
|
+
|
|
78
|
+
* `TODO: ...`
|
|
79
|
+
* `WARNING: ...`
|
|
80
|
+
* `PERF: ...`
|
|
81
|
+
* `SECURITY: ...`
|
|
82
|
+
|
|
83
|
+
## Meta-What vs. Narration
|
|
84
|
+
|
|
85
|
+
- **Allowed:** Comments that describe the intent and purpose of a loop, branch, or multi-step block.
|
|
86
|
+
- **Prohibited:** Line-by-line narration that merely restates what a single obvious line does.
|
|
87
|
+
|
|
88
|
+
Example of prohibited narration: `# increment counter` above `count += 1`
|
|
89
|
+
|
|
90
|
+
Example of allowed meta-what: `# Walk all changed files and collect those that exceed the size limit for the report` above a filtering loop.
|
|
91
|
+
|
|
92
|
+
## Quality Checklist
|
|
93
|
+
|
|
94
|
+
Before finalizing code:
|
|
95
|
+
|
|
96
|
+
- [ ] Docstrings exist for every class and every function/method.
|
|
97
|
+
- [ ] Docstrings explain purpose, usage, flow, args, returns, and contract-level raises/side effects.
|
|
98
|
+
- [ ] Loops and comprehensions have intent comments (or are expanded for clarity).
|
|
99
|
+
- [ ] Branching has decision-logic comments.
|
|
100
|
+
- [ ] Multi-step blocks have meta-what + rationale comments above them.
|
|
101
|
+
- [ ] No numbered notes (`NOTE 1:`, `NOTE 2:`) appear in comments or docstrings.
|
|
102
|
+
- [ ] Comments remain accurate and add real explanatory value.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- Rewrite Claude skill-directory references to the native skill root.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
name: skill-canonical-location-audit
|
|
8
|
+
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.'
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Skill Canonical-Location Audit
|
|
12
|
+
|
|
13
|
+
Audit skills to ensure canonical locations for the same item are not defined in multiple places.
|
|
14
|
+
|
|
15
|
+
## When to Use This Skill
|
|
16
|
+
|
|
17
|
+
Use this skill when:
|
|
18
|
+
- You add or update skills that define canonical locations.
|
|
19
|
+
- You want to verify that canonical paths live in exactly one skill.
|
|
20
|
+
- You need a duplication report listing which skills conflict.
|
|
21
|
+
|
|
22
|
+
## Scope
|
|
23
|
+
|
|
24
|
+
- Applies to all skills under `.agents/skills/**/SKILL.md`.
|
|
25
|
+
- Focuses on canonical locations (paths, folders, or file names) for a given item (e.g., PR context artifacts, evidence locations, issue mirrors).
|
|
26
|
+
|
|
27
|
+
## Audit Workflow
|
|
28
|
+
|
|
29
|
+
1) Inventory canonical-location statements
|
|
30
|
+
- Read each `SKILL.md` and extract explicit canonical location statements (paths, folders, file names).
|
|
31
|
+
- Group statements by the item they describe (e.g., “PR context summary”, “baseline evidence”).
|
|
32
|
+
|
|
33
|
+
2) Detect duplicates
|
|
34
|
+
- For each item group, verify that exactly one skill defines its canonical location.
|
|
35
|
+
- If two or more skills define the same item’s canonical location, flag it as a duplication.
|
|
36
|
+
|
|
37
|
+
3) Report results
|
|
38
|
+
- Produce a short report listing:
|
|
39
|
+
- The item with duplicated canonical location
|
|
40
|
+
- The conflicting skills
|
|
41
|
+
- A recommendation for consolidation (name the single skill to keep as source-of-truth)
|
|
42
|
+
|
|
43
|
+
## Output Template (Suggested)
|
|
44
|
+
|
|
45
|
+
- Item: <canonical item name>
|
|
46
|
+
- Skills with definitions: <skill A>, <skill B>, ...
|
|
47
|
+
- Recommendation: Keep <skill X> as canonical; remove duplicates from others.
|
|
48
|
+
|
|
49
|
+
## Notes
|
|
50
|
+
|
|
51
|
+
- If a skill references a canonical location indirectly (e.g., “see evidence-and-timestamp-conventions”), do NOT treat that as a duplication.
|
|
52
|
+
- Only treat explicit canonical paths or filenames as definitions.
|
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- Rewrite merged standing-guidance source paths to the native AGENTS.md target.
|
|
5
|
+
- Rewrite merged standing-guidance source paths to the native AGENTS.md target.
|
|
6
|
+
- Rewrite GitHub Copilot standing guidance paths to AGENTS.md.
|
|
7
|
+
- Rewrite GitHub Copilot path-scoped instructions to shared skill paths.
|
|
8
|
+
- Rewrite GitHub Copilot agent manifest paths to Codex agent paths.
|
|
9
|
+
- Rewrite GitHub Copilot instruction-directory references to the native skill root.
|
|
10
|
+
- Rewrite GitHub Copilot skill-directory references to the native skill root.
|
|
11
|
+
- Rewrite GitHub Copilot agent-directory references to the native agent root.
|
|
12
|
+
- Rewrite Claude skill paths to shared skill paths.
|
|
13
|
+
- Rewrite Claude agent manifest paths to Codex agent paths.
|
|
14
|
+
- Rewrite Claude hook paths to Codex hook paths.
|
|
15
|
+
- Rewrite Claude settings paths to Codex config paths.
|
|
16
|
+
- Rewrite Claude rule paths to shared skill paths.
|
|
17
|
+
- Rewrite Claude rules-directory references to the native skill root.
|
|
18
|
+
- Rewrite Claude skill-directory references to the native skill root.
|
|
19
|
+
- Rewrite Claude agent-directory references to the native agent root.
|
|
20
|
+
- Rewrite Claude hook-directory references to the native hook root.
|
|
21
|
+
- Rewrite GitHub prompt-directory references to the native shared skill root when repository prompt launchers are disabled.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
name: translate-copilot-to-claude
|
|
25
|
+
description: Translate one or more GitHub Copilot native files (AGENTS.md, .agents/skills/*.instructions.md, .codex/agents/*.agent.md, .agents/skills/*.prompt.md, .agents/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.
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
# Translate Copilot to Claude
|
|
29
|
+
|
|
30
|
+
Deterministic translation workflow that ports GitHub Copilot native files into the `.claude/` runtime without duplicating content, overwriting user edits, or breaking existing agents.
|
|
31
|
+
|
|
32
|
+
## When to Use This Skill
|
|
33
|
+
|
|
34
|
+
Use this skill when:
|
|
35
|
+
|
|
36
|
+
- One or more `.github/` native files must be mirrored into `.claude/`.
|
|
37
|
+
- An agent persona needs to be split across Claude's four runtime surfaces.
|
|
38
|
+
- A batch of instructions files must be re-expressed as path-scoped Claude rules.
|
|
39
|
+
- A Copilot prompt or skill must be reshaped into a Claude skill.
|
|
40
|
+
- The user wants to know what is missing or out-of-date on the Claude side before making changes.
|
|
41
|
+
|
|
42
|
+
## Inputs
|
|
43
|
+
|
|
44
|
+
Required:
|
|
45
|
+
|
|
46
|
+
- One or more source paths under `.github/`. Accepted types:
|
|
47
|
+
- `AGENTS.md`
|
|
48
|
+
- `.agents/skills/<name>.instructions.md`
|
|
49
|
+
- `.codex/agents/<name>.agent.md`
|
|
50
|
+
- `.agents/skills/<name>.prompt.md`
|
|
51
|
+
- `.agents/skills/<name>/SKILL.md`
|
|
52
|
+
|
|
53
|
+
Optional:
|
|
54
|
+
|
|
55
|
+
- `mode=plan-only` — do not write anything; emit the translation plan and stop.
|
|
56
|
+
- `mode=apply` — apply the plan after it is produced and approved in the same turn.
|
|
57
|
+
- `target-scope=<agent|rule|skill|hook|all>` — restrict surfaces considered for this run.
|
|
58
|
+
- `timestamp-override=<ISO-8601>` — override the auto-generated evidence folder timestamp.
|
|
59
|
+
|
|
60
|
+
Default mode is `plan-only`. Apply requires explicit confirmation either via `mode=apply` or a plain-text approval in the same turn.
|
|
61
|
+
|
|
62
|
+
## Phase 1 — Intake and Section Extraction
|
|
63
|
+
|
|
64
|
+
For each input file:
|
|
65
|
+
|
|
66
|
+
1. Read the full file with `Read`.
|
|
67
|
+
2. Parse YAML frontmatter (name, description, tools, applyTo, agent, handoffs, model, other keys).
|
|
68
|
+
3. Split the body into top-level sections delimited by `#`, `##`, `###` headings.
|
|
69
|
+
4. Classify each section as declarative, procedural, enforceable, identity, or handoff per the taxonomy in Phase 2.
|
|
70
|
+
5. Record each section as `{source_path, heading, classification, raw_content}` in an in-memory list.
|
|
71
|
+
|
|
72
|
+
Never modify or delete source files. Translation is a copy-forward operation.
|
|
73
|
+
|
|
74
|
+
## Phase 2 — Classification Taxonomy
|
|
75
|
+
|
|
76
|
+
Apply these decision rules in order. Use the first rule that matches.
|
|
77
|
+
|
|
78
|
+
### 2.1 Enforceable (hard gate / hard stop) -> `.codex/hooks/`
|
|
79
|
+
|
|
80
|
+
A section is enforceable when it contains:
|
|
81
|
+
|
|
82
|
+
- phrases such as "hard gate", "hard stop", "must not", "blocked", "forbidden", "zero-regression", "non-negotiable",
|
|
83
|
+
- command or path blacklists that should be rejected regardless of model intent,
|
|
84
|
+
- per-batch counting or budget limits,
|
|
85
|
+
- toolchain-execution verification ("must run", "no unverified work"),
|
|
86
|
+
- test-purity forbiddens (tempfile, network, subprocess in tests).
|
|
87
|
+
|
|
88
|
+
Target:
|
|
89
|
+
|
|
90
|
+
- A new or updated script under `.codex/hooks/<name>.ps1`.
|
|
91
|
+
- Registration in `.codex/config.toml` under `hooks.PreToolUse` or `hooks.SubagentStop` with a `matcher` that targets the affected tools (`Bash`, `Write|Edit`, specific agent names).
|
|
92
|
+
|
|
93
|
+
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.
|
|
94
|
+
|
|
95
|
+
### 2.2 Declarative standards (always-on for matching files) -> `.agents/skills/`
|
|
96
|
+
|
|
97
|
+
A section is declarative when it contains:
|
|
98
|
+
|
|
99
|
+
- coding conventions (naming, typing, imports, error handling),
|
|
100
|
+
- test structure requirements,
|
|
101
|
+
- toolchain ordering statements,
|
|
102
|
+
- file-size limits,
|
|
103
|
+
- language-specific style rules.
|
|
104
|
+
|
|
105
|
+
Target:
|
|
106
|
+
|
|
107
|
+
- An existing rule file under `.agents/skills/` that already covers the same path scope, merged into place.
|
|
108
|
+
- A new rule file under `.agents/skills/<language-or-topic>.md` with frontmatter:
|
|
109
|
+
|
|
110
|
+
```yaml
|
|
111
|
+
---
|
|
112
|
+
paths:
|
|
113
|
+
- "<glob>"
|
|
114
|
+
description: "<one line>"
|
|
115
|
+
---
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
- If the source frontmatter used `applyTo: "<glob>"`, convert to `paths: [<glob>]`.
|
|
119
|
+
|
|
120
|
+
### 2.3 Reusable procedures -> `.agents/skills/<name>/SKILL.md`
|
|
121
|
+
|
|
122
|
+
A section is procedural when it contains:
|
|
123
|
+
|
|
124
|
+
- multi-step workflows ("Phase A", "Phase B", "Workflow", numbered steps),
|
|
125
|
+
- reporting templates,
|
|
126
|
+
- routing decision tables,
|
|
127
|
+
- delegation contracts.
|
|
128
|
+
|
|
129
|
+
Target:
|
|
130
|
+
|
|
131
|
+
- An existing skill under `.agents/skills/` when one already covers the same concept (check `.agents/skills/<name>/SKILL.md` by name and description).
|
|
132
|
+
- A new skill at `.agents/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`.
|
|
133
|
+
|
|
134
|
+
Copilot `.agents/skills/*.prompt.md` and `.agents/skills/<name>/SKILL.md` default to this target. Preserve the original name when it does not collide with an existing Claude skill.
|
|
135
|
+
|
|
136
|
+
### 2.4 Identity and preload manifest -> `.codex/agents/<name>.md`
|
|
137
|
+
|
|
138
|
+
A section belongs on the persona when it contains:
|
|
139
|
+
|
|
140
|
+
- agent name, description, role summary,
|
|
141
|
+
- tool allowlist,
|
|
142
|
+
- model selection,
|
|
143
|
+
- skill preloads,
|
|
144
|
+
- memory scope,
|
|
145
|
+
- a short workflow index pointing to preloaded skills,
|
|
146
|
+
- stop conditions.
|
|
147
|
+
|
|
148
|
+
Target:
|
|
149
|
+
|
|
150
|
+
- An existing agent file under `.codex/agents/<name>.md`. Update only the preload list, tools, description, and stop conditions. Keep the body thin.
|
|
151
|
+
- A new agent file when the Copilot persona has no Claude counterpart. Do not duplicate rule, skill, or hook content into the persona body.
|
|
152
|
+
|
|
153
|
+
### 2.5 Handoffs and delegation -> reference existing skills
|
|
154
|
+
|
|
155
|
+
Sections describing handoffs to other agents ("delegate to atomic_planner", "handoffs:" frontmatter) should not be duplicated. Reference the canonical skill:
|
|
156
|
+
|
|
157
|
+
- plan authoring -> `atomic-plan-contract`
|
|
158
|
+
- remediation -> `remediation-handoff-atomic-planner`
|
|
159
|
+
- promotion lifecycle -> `feature-promotion-lifecycle`
|
|
160
|
+
- PR context -> `pr-context-artifacts`
|
|
161
|
+
- evidence storage -> `evidence-and-timestamp-conventions`
|
|
162
|
+
|
|
163
|
+
### 2.6 Repo-wide tone / policy precedence -> `AGENTS.md`
|
|
164
|
+
|
|
165
|
+
Sections that state cross-cutting repository defaults (tone, policy reading order, architectural overview) belong in `AGENTS.md` and should be cross-referenced from `.agents/skills/` rather than restated.
|
|
166
|
+
|
|
167
|
+
### 2.7 Out-of-scope content
|
|
168
|
+
|
|
169
|
+
The following content is **not** translated:
|
|
170
|
+
|
|
171
|
+
- GitHub Actions workflow YAML under `.github/workflows/`.
|
|
172
|
+
- Codex or other non-Copilot customizations under `.github/codex/` unless explicitly requested.
|
|
173
|
+
- Copilot `chatmodes` unless the user specifies a target Claude surface.
|
|
174
|
+
|
|
175
|
+
## Phase 3 — Target Resolution
|
|
176
|
+
|
|
177
|
+
For each classified section, compute a concrete target path:
|
|
178
|
+
|
|
179
|
+
1. **Hook**: `.codex/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`).
|
|
180
|
+
2. **Rule**: `.agents/skills/<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`).
|
|
181
|
+
3. **Skill**: `.agents/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`).
|
|
182
|
+
4. **Agent**: `.codex/agents/<kebab-case-name>.md`. Normalize underscores to hyphens (`python_typed_engineer` -> `python-typed-engineer`).
|
|
183
|
+
5. **AGENTS.md**: single repo-wide file at the workspace root.
|
|
184
|
+
6. **settings.json**: `.codex/config.toml` sections `hooks` and `permissions`.
|
|
185
|
+
|
|
186
|
+
Record target paths in the plan. Do not write anything yet.
|
|
187
|
+
|
|
188
|
+
## Phase 4 — Existing State Diff
|
|
189
|
+
|
|
190
|
+
For every target path:
|
|
191
|
+
|
|
192
|
+
1. `Read` the existing file when it exists.
|
|
193
|
+
2. Compute a per-section delta:
|
|
194
|
+
- **add** — the section does not exist in the target.
|
|
195
|
+
- **replace** — the section exists but the source content supersedes it (explicit user intent).
|
|
196
|
+
- **merge** — the section exists and source content must be appended or integrated without removing existing text.
|
|
197
|
+
- **skip** — the section is already present verbatim or has a newer canonical form in the target.
|
|
198
|
+
- **conflict** — the source and target disagree on substantive content; requires user decision.
|
|
199
|
+
3. For `.codex/config.toml`, compute add-only updates to `hooks.*` arrays and `permissions.allow`. Never remove existing permissions without explicit instruction.
|
|
200
|
+
4. For agent personas already present, prefer **merge** over **replace** to preserve hand-authored guidance.
|
|
201
|
+
|
|
202
|
+
Flag every `conflict` row in the plan. Conflicts stop Phase 6 for that row until resolved.
|
|
203
|
+
|
|
204
|
+
## Phase 5 — Translation Plan Artifact
|
|
205
|
+
|
|
206
|
+
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`.
|
|
207
|
+
|
|
208
|
+
Plan structure:
|
|
209
|
+
|
|
210
|
+
```markdown
|
|
211
|
+
# Translation Plan: <source file basename(s)>
|
|
212
|
+
|
|
213
|
+
Generated: <timestamp>
|
|
214
|
+
Mode: <plan-only | apply>
|
|
215
|
+
|
|
216
|
+
## Inputs
|
|
217
|
+
- <source path 1>
|
|
218
|
+
- <source path 2>
|
|
219
|
+
|
|
220
|
+
## Mapping Table
|
|
221
|
+
| Source Section | Classification | Target Path | Action |
|
|
222
|
+
|---|---|---|---|
|
|
223
|
+
| <source#section-anchor> | rule | .agents/skills/python/SKILL.md#pytest-rules | merge |
|
|
224
|
+
| <source#section-anchor> | hook | .codex/hooks/check-python-test-purity.ps1 | add |
|
|
225
|
+
| <source#section-anchor> | skill | .agents/skills/python-qa-gate/SKILL.md | add |
|
|
226
|
+
| <source#section-anchor> | agent | .codex/agents/python-typed-engineer.toml | merge |
|
|
227
|
+
| <source#section-anchor> | settings | .codex/config.toml | add |
|
|
228
|
+
|
|
229
|
+
## Conflicts (require user decision)
|
|
230
|
+
<one row per conflict, or "none">
|
|
231
|
+
|
|
232
|
+
## New Files
|
|
233
|
+
<list of new file paths>
|
|
234
|
+
|
|
235
|
+
## Updated Files
|
|
236
|
+
<list of modified file paths>
|
|
237
|
+
|
|
238
|
+
## Settings Delta
|
|
239
|
+
- Hooks added: <list>
|
|
240
|
+
- Permissions added: <list>
|
|
241
|
+
- Matchers extended: <list>
|
|
242
|
+
|
|
243
|
+
## Evidence Paths
|
|
244
|
+
- artifacts/translation/<timestamp>/plan.md
|
|
245
|
+
- artifacts/translation/<timestamp>/diff.md (populated after apply)
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
Always produce the plan artifact, even in `mode=apply` runs, for auditability.
|
|
249
|
+
|
|
250
|
+
## Phase 6 — Apply (only after explicit approval)
|
|
251
|
+
|
|
252
|
+
Only execute when one of the following holds:
|
|
253
|
+
|
|
254
|
+
- The user invoked the skill with `mode=apply`.
|
|
255
|
+
- The user sent a plain-text approval ("proceed", "apply", "execute the plan") in the same turn after the plan was shown.
|
|
256
|
+
|
|
257
|
+
Apply order (to minimize breakage):
|
|
258
|
+
|
|
259
|
+
1. **Rules** — add or merge rule files under `.agents/skills/`.
|
|
260
|
+
2. **Skills** — add or merge skill files under `.agents/skills/<name>/SKILL.md`.
|
|
261
|
+
3. **Hooks** — add hook scripts under `.codex/hooks/` and parse-check them with `pwsh -NoProfile -Command "[System.Management.Automation.Language.Parser]::ParseFile(..., [ref]$null, [ref]$errors)"`.
|
|
262
|
+
4. **Agent personas** — update `.codex/agents/<name>.md` frontmatter (tools, skills, memory) and trim the body to identity + workflow index.
|
|
263
|
+
5. **settings.json** — append hook registrations and `Skill(...)` permissions. Never rewrite the file; use targeted edits.
|
|
264
|
+
6. **AGENTS.md** — append cross-references only; never overwrite existing sections.
|
|
265
|
+
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/`.
|
|
266
|
+
|
|
267
|
+
After apply, run a verification sweep:
|
|
268
|
+
|
|
269
|
+
- Parse-check every new or changed `.ps1` under `.codex/hooks/`.
|
|
270
|
+
- JSON-parse `.codex/config.toml` to confirm validity.
|
|
271
|
+
- Confirm every new skill appears in the skills catalog by reading back the first five lines of each target file.
|
|
272
|
+
- Report the final mapping table with `done` / `skipped` / `conflict-unresolved` statuses.
|
|
273
|
+
|
|
274
|
+
## Phase 7 — Reporting
|
|
275
|
+
|
|
276
|
+
Every completion response must include:
|
|
277
|
+
|
|
278
|
+
1. **Inputs** — list of source files.
|
|
279
|
+
2. **Mapping summary** — counts by classification (rule, skill, hook, agent, settings).
|
|
280
|
+
3. **Action summary** — counts by action (add, replace, merge, skip, conflict).
|
|
281
|
+
4. **Files changed** — explicit list of created and modified paths.
|
|
282
|
+
5. **Settings delta** — hooks and permissions added.
|
|
283
|
+
6. **Evidence paths** — artifact locations.
|
|
284
|
+
7. **Conflicts** — unresolved conflict rows, or "none".
|
|
285
|
+
|
|
286
|
+
## Guarantees and Prohibitions
|
|
287
|
+
|
|
288
|
+
- **Idempotency**: running the skill twice on the same input produces no new changes beyond the regenerated plan artifact.
|
|
289
|
+
- **No source deletion**: `.github/` files are never modified or removed.
|
|
290
|
+
- **No silent overwrites**: existing `.claude/` content is merged by default. Replace requires either user instruction or a `conflict` row resolved explicitly.
|
|
291
|
+
- **No hook-based state mutation**: hooks generated by this skill are validation-only unless the user authorizes otherwise.
|
|
292
|
+
- **No settings.json rewrites**: only targeted edits that append permissions or matchers.
|
|
293
|
+
- **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.
|
|
294
|
+
|
|
295
|
+
## Classification Quick Reference
|
|
296
|
+
|
|
297
|
+
| Copilot source pattern | Default Claude target | Notes |
|
|
298
|
+
|---|---|---|
|
|
299
|
+
| `AGENTS.md` | `AGENTS.md` + `AGENTS.md` | Tone and precedence only. |
|
|
300
|
+
| `.agents/skills/*.instructions.md` (applyTo) | `.agents/skills/<topic>.md` (paths) | Direct frontmatter rewrite. |
|
|
301
|
+
| `.codex/agents/*.agent.md` identity frontmatter | `.codex/agents/<name>.md` frontmatter | Convert `tools:` to Claude tool names. |
|
|
302
|
+
| `.codex/agents/*.agent.md` "Absolute guardrails / hard gate" | `.codex/hooks/*.ps1` + `settings.json` | Hooks enforce; rules merely document. |
|
|
303
|
+
| `.codex/agents/*.agent.md` "Workflow / Phase X" | `.agents/skills/<workflow>/SKILL.md` | Split per phase when phases are independent. |
|
|
304
|
+
| `.codex/agents/*.agent.md` "Design rules / Testing rules" | `.agents/skills/<language>.md` | Merge under Design Rules / Pytest Rules subheadings. |
|
|
305
|
+
| `.codex/agents/*.agent.md` "Handoffs" | Reference existing routing skills | Do not duplicate. |
|
|
306
|
+
| `.codex/agents/*.agent.md` "Reporting requirements" | `.agents/skills/<name>-qa-gate/SKILL.md` or the QA gate skill | Procedure, not identity. |
|
|
307
|
+
| `.agents/skills/*.prompt.md` | `.agents/skills/<action-name>/SKILL.md` | One skill per prompt. |
|
|
308
|
+
| `.agents/skills/<name>/SKILL.md` | `.agents/skills/<name>/SKILL.md` | Near-1:1; reconcile frontmatter schema. |
|
|
309
|
+
|
|
310
|
+
## Invocation Examples
|
|
311
|
+
|
|
312
|
+
- Translate a single agent persona, plan only:
|
|
313
|
+
`translate-copilot-to-claude .codex/agents/python-typed-engineer.toml`
|
|
314
|
+
- Translate a set of instruction files and apply:
|
|
315
|
+
`translate-copilot-to-claude .agents/skills/python-code-change/SKILL.md .agents/skills/python-unit-test/SKILL.md mode=apply`
|
|
316
|
+
- Translate an entire agent bundle (persona + its referenced instructions):
|
|
317
|
+
`translate-copilot-to-claude .codex/agents/csharp-typed-engineer.toml .agents/skills/csharp-code-change/SKILL.md .agents/skills/csharp-unit-test/SKILL.md target-scope=all`
|