@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,152 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- None
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
name: make-skill-template
|
|
8
|
+
description: 'Create new Agent Skills for GitHub Copilot from prompts or by duplicating this template. Use when asked to "create a skill", "make a new skill", "scaffold a skill", or when building specialized AI capabilities with bundled resources. Generates SKILL.md files with proper frontmatter, directory structure, and optional scripts/references/assets folders.'
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Make Skill Template
|
|
12
|
+
|
|
13
|
+
A meta-skill for creating new Agent Skills. Use this skill when you need to scaffold a new skill folder, generate a SKILL.md file, or help users understand the Agent Skills specification.
|
|
14
|
+
|
|
15
|
+
## When to Use This Skill
|
|
16
|
+
|
|
17
|
+
- User asks to "create a skill", "make a new skill", or "scaffold a skill"
|
|
18
|
+
- User wants to add a specialized capability to their GitHub Copilot setup
|
|
19
|
+
- User needs help structuring a skill with bundled resources
|
|
20
|
+
- User wants to duplicate this template as a starting point
|
|
21
|
+
|
|
22
|
+
## Prerequisites
|
|
23
|
+
|
|
24
|
+
- Understanding of what the skill should accomplish
|
|
25
|
+
- A clear, keyword-rich description of capabilities and triggers
|
|
26
|
+
- Knowledge of any bundled resources needed (scripts, references, assets, templates)
|
|
27
|
+
|
|
28
|
+
## Creating a New Skill
|
|
29
|
+
|
|
30
|
+
### Step 1: Create the Skill Directory
|
|
31
|
+
|
|
32
|
+
Create a new folder with a lowercase, hyphenated name:
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
skills/<skill-name>/
|
|
36
|
+
└── SKILL.md # Required
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Step 2: Generate SKILL.md with Frontmatter
|
|
40
|
+
|
|
41
|
+
Every skill requires YAML frontmatter with `name` and `description`:
|
|
42
|
+
|
|
43
|
+
```yaml
|
|
44
|
+
---
|
|
45
|
+
name: <skill-name>
|
|
46
|
+
description: '<What it does>. Use when <specific triggers, scenarios, keywords users might say>.'
|
|
47
|
+
---
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
#### Frontmatter Field Requirements
|
|
51
|
+
|
|
52
|
+
| Field | Required | Constraints |
|
|
53
|
+
|-------|----------|-------------|
|
|
54
|
+
| `name` | **Yes** | 1-64 chars, lowercase letters/numbers/hyphens only, must match folder name |
|
|
55
|
+
| `description` | **Yes** | 1-1024 chars, must describe WHAT it does AND WHEN to use it |
|
|
56
|
+
| `license` | No | License name or reference to bundled LICENSE.txt |
|
|
57
|
+
| `compatibility` | No | 1-500 chars, environment requirements if needed |
|
|
58
|
+
| `metadata` | No | Key-value pairs for additional properties |
|
|
59
|
+
| `allowed-tools` | No | Space-delimited list of pre-approved tools (experimental) |
|
|
60
|
+
|
|
61
|
+
#### Description Best Practices
|
|
62
|
+
|
|
63
|
+
**CRITICAL**: The `description` is the PRIMARY mechanism for automatic skill discovery. Include:
|
|
64
|
+
|
|
65
|
+
1. **WHAT** the skill does (capabilities)
|
|
66
|
+
2. **WHEN** to use it (triggers, scenarios, file types)
|
|
67
|
+
3. **Keywords** users might mention in prompts
|
|
68
|
+
|
|
69
|
+
**Good example:**
|
|
70
|
+
|
|
71
|
+
```yaml
|
|
72
|
+
description: 'Toolkit for testing local web applications using Playwright. Use when asked to verify frontend functionality, debug UI behavior, capture browser screenshots, or view browser console logs. Supports Chrome, Firefox, and WebKit.'
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
**Poor example:**
|
|
76
|
+
|
|
77
|
+
```yaml
|
|
78
|
+
description: 'Web testing helpers'
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Step 3: Write the Skill Body
|
|
82
|
+
|
|
83
|
+
After the frontmatter, add markdown instructions. Recommended sections:
|
|
84
|
+
|
|
85
|
+
| Section | Purpose |
|
|
86
|
+
|---------|---------|
|
|
87
|
+
| `# Title` | Brief overview |
|
|
88
|
+
| `## When to Use This Skill` | Reinforces description triggers |
|
|
89
|
+
| `## Prerequisites` | Required tools, dependencies |
|
|
90
|
+
| `## Step-by-Step Workflows` | Numbered steps for tasks |
|
|
91
|
+
| `## Troubleshooting` | Common issues and solutions |
|
|
92
|
+
| `## References` | Links to bundled docs |
|
|
93
|
+
|
|
94
|
+
### Step 4: Add Optional Directories (If Needed)
|
|
95
|
+
|
|
96
|
+
| Folder | Purpose | When to Use |
|
|
97
|
+
|--------|---------|-------------|
|
|
98
|
+
| `scripts/` | Executable code (Python, Bash, JS) | Automation that performs operations |
|
|
99
|
+
| `references/` | Documentation agent reads | API references, schemas, guides |
|
|
100
|
+
| `assets/` | Static files used AS-IS | Images, fonts, templates |
|
|
101
|
+
| `templates/` | Starter code agent modifies | Scaffolds to extend |
|
|
102
|
+
|
|
103
|
+
## Example: Complete Skill Structure
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
my-awesome-skill/
|
|
107
|
+
├── SKILL.md # Required instructions
|
|
108
|
+
├── LICENSE.txt # Optional license file
|
|
109
|
+
├── scripts/
|
|
110
|
+
│ └── helper.py # Executable automation
|
|
111
|
+
├── references/
|
|
112
|
+
│ ├── api-reference.md # Detailed docs
|
|
113
|
+
│ └── examples.md # Usage examples
|
|
114
|
+
├── assets/
|
|
115
|
+
│ └── diagram.png # Static resources
|
|
116
|
+
└── templates/
|
|
117
|
+
└── starter.ts # Code scaffold
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## Quick Start: Duplicate This Template
|
|
121
|
+
|
|
122
|
+
1. Copy the `make-skill-template/` folder
|
|
123
|
+
2. Rename to your skill name (lowercase, hyphens)
|
|
124
|
+
3. Update `SKILL.md`:
|
|
125
|
+
- Change `name:` to match folder name
|
|
126
|
+
- Write a keyword-rich `description:`
|
|
127
|
+
- Replace body content with your instructions
|
|
128
|
+
4. Add bundled resources as needed
|
|
129
|
+
5. Validate with `npm run skill:validate`
|
|
130
|
+
|
|
131
|
+
## Validation Checklist
|
|
132
|
+
|
|
133
|
+
- [ ] Folder name is lowercase with hyphens
|
|
134
|
+
- [ ] `name` field matches folder name exactly
|
|
135
|
+
- [ ] `description` is 10-1024 characters
|
|
136
|
+
- [ ] `description` explains WHAT and WHEN
|
|
137
|
+
- [ ] `description` is wrapped in single quotes
|
|
138
|
+
- [ ] Body content is under 500 lines
|
|
139
|
+
- [ ] Bundled assets are under 5MB each
|
|
140
|
+
|
|
141
|
+
## Troubleshooting
|
|
142
|
+
|
|
143
|
+
| Issue | Solution |
|
|
144
|
+
|-------|----------|
|
|
145
|
+
| Skill not discovered | Improve description with more keywords and triggers |
|
|
146
|
+
| Validation fails on name | Ensure lowercase, no consecutive hyphens, matches folder |
|
|
147
|
+
| Description too short | Add capabilities, triggers, and keywords |
|
|
148
|
+
| Assets not found | Use relative paths from skill root |
|
|
149
|
+
|
|
150
|
+
## References
|
|
151
|
+
|
|
152
|
+
- Agent Skills official spec: <https://agentskills.io/specification>
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- Rewrite merged standing-guidance source paths to the native AGENTS.md target.
|
|
5
|
+
- Rewrite Claude skill paths to shared skill paths.
|
|
6
|
+
- Rewrite Claude rules-directory references to the native skill root.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
name: orchestrate
|
|
10
|
+
description: Route a repository request through the deterministic orchestration workflow for feature, bug, research, planning, execution, and review handoffs.
|
|
11
|
+
argument-hint: "[objective]"
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# Orchestrate Skill
|
|
15
|
+
|
|
16
|
+
This skill frames work for the already-active main session, which serves as the orchestrator runtime for end-to-end feature or bug delivery.
|
|
17
|
+
|
|
18
|
+
## Prerequisites
|
|
19
|
+
|
|
20
|
+
Before proceeding, the orchestrator must:
|
|
21
|
+
|
|
22
|
+
1. Read `AGENTS.md` for repository tone policy and architectural context.
|
|
23
|
+
2. Read applicable `.agents/skills/` files for the languages in scope.
|
|
24
|
+
3. Read the policy files listed in the compliance reading order section of `AGENTS.md`.
|
|
25
|
+
|
|
26
|
+
## Checkpoint Handling
|
|
27
|
+
|
|
28
|
+
On every invocation, the main session must:
|
|
29
|
+
|
|
30
|
+
1. Read `artifacts/orchestration/orchestrator-state.json` to check for existing state.
|
|
31
|
+
2. If a valid checkpoint exists with a matching objective, resume from the recorded `next_step`.
|
|
32
|
+
3. If no checkpoint exists or the objective is new, begin the orchestration lifecycle from the start.
|
|
33
|
+
|
|
34
|
+
## Delegation Model
|
|
35
|
+
|
|
36
|
+
After reading `artifacts/orchestration/orchestrator-state.json`, the main session delegates work exclusively through configured workers:
|
|
37
|
+
|
|
38
|
+
- `atomic-planner` — generates phased implementation plans
|
|
39
|
+
- `atomic-executor` — executes approved plans task-by-task
|
|
40
|
+
- `feature-review` — produces policy, code, and feature audit artifacts
|
|
41
|
+
- `commit-steward` — writes commit messages from commit-context artifacts
|
|
42
|
+
- `task-researcher` — performs deep research and writes findings to `artifacts/research/`
|
|
43
|
+
|
|
44
|
+
The orchestrator does not perform deep implementation itself. It coordinates, tracks state, and enforces completion.
|
|
45
|
+
|
|
46
|
+
## Evidence Location Authority
|
|
47
|
+
|
|
48
|
+
All evidence artifacts produced during orchestration MUST comply with the canonical scheme defined in `.agents/skills/evidence-and-timestamp-conventions/SKILL.md`. Evidence MUST be written to `<FEATURE>/evidence/<kind>/` only.
|
|
49
|
+
|
|
50
|
+
Permitted `artifacts/`-rooted sub-paths (non-evidence orchestration use only):
|
|
51
|
+
- `artifacts/orchestration/` — orchestrator state and checkpoints
|
|
52
|
+
- `artifacts/research/` — research outputs from task-researcher
|
|
53
|
+
- `artifacts/pr_context` — PR context artifacts
|
|
54
|
+
- `artifacts/reviews/` — review staging artifacts
|
|
55
|
+
- `artifacts/status/` — status update artifacts
|
|
56
|
+
- `artifacts/python/` — Python coverage and lcov outputs
|
|
57
|
+
- `artifacts/pester/` — Pester coverage outputs
|
|
58
|
+
- `artifacts/csharp/` — C# coverage outputs
|
|
59
|
+
|
|
60
|
+
All other `artifacts/` sub-paths (e.g., `artifacts/baselines/`, `artifacts/qa/`, `artifacts/coverage/`, `artifacts/evidence/`) are FORBIDDEN for evidence output and will be blocked by the `enforce-evidence-locations.ps1` PreToolUse hook.
|
|
61
|
+
|
|
62
|
+
## Completion Requirements
|
|
63
|
+
|
|
64
|
+
The orchestrator must not report completion until:
|
|
65
|
+
|
|
66
|
+
1. All required artifacts for the selected workflow path are present on disk.
|
|
67
|
+
2. All validation gates (toolchain, acceptance criteria, audit artifacts) have passed.
|
|
68
|
+
3. The checkpoint file at `artifacts/orchestration/orchestrator-state.json` reflects the completed state.
|
|
69
|
+
|
|
70
|
+
## Pre-Feature-Review Commit
|
|
71
|
+
|
|
72
|
+
Before delegating to the `feature-review` subagent, the orchestrator must:
|
|
73
|
+
|
|
74
|
+
1. Stage all modified and new files: `git add -A`.
|
|
75
|
+
2. Run MCP tool `collect_commit_context` and capture the returned on-disk artifact path.
|
|
76
|
+
3. Delegate to `commit_steward` using that commit-context artifact as the authoritative staged-change input.
|
|
77
|
+
4. Commit using the generated message: `git commit -m "<generated message>"`.
|
|
78
|
+
5. Only after a successful commit may the orchestrator proceed to the `feature-review` delegation.
|
|
79
|
+
|
|
80
|
+
The review subagent compares against a base branch; uncommitted changes are invisible to the diff tool and cannot be audited.
|
|
81
|
+
|
|
82
|
+
## Post-Review Outcome Evaluation
|
|
83
|
+
|
|
84
|
+
After each `feature-review` delegation returns:
|
|
85
|
+
|
|
86
|
+
1. Read the exact terminal status lines from the review result.
|
|
87
|
+
2. If the result does not include `REVIEW_STATUS: PASS` or `REVIEW_STATUS: REMEDIATION_REQUIRED`, stop and record blocked state.
|
|
88
|
+
3. If the result is `REVIEW_STATUS: PASS`, advance to the PR creation gate.
|
|
89
|
+
4. If the result is `REVIEW_STATUS: REMEDIATION_REQUIRED`, require both `REMEDIATION_INPUTS: <path>` and `REMEDIATION_PLAN: <path>` and then enter the remediation loop.
|
|
90
|
+
|
|
91
|
+
## Remediation Loop (R1–R5)
|
|
92
|
+
|
|
93
|
+
A bounded loop consisting of five steps. The loop variable `remediation_pass` starts at 1 and increments at R5 before returning to R1.
|
|
94
|
+
|
|
95
|
+
- **R1 — Remediation plan of record:** Use the exact `REMEDIATION_PLAN: <path>` returned by the review as the starting plan of record for the loop.
|
|
96
|
+
- **R2 — Preflight clearance:** Delegate to `atomic-executor` for precondition validation only (no implementation). If the executor does not return `PREFLIGHT: ALL CLEAR`, return to R1 by re-delegating to `atomic-planner` against the same remediation-plan path with the required-changes output from the executor. Only after `PREFLIGHT: ALL CLEAR` may the orchestrator advance to R3.
|
|
97
|
+
- **R3 — Remediation execution:** Delegate to `atomic-executor` with full execution authorization. Each task's toolchain loop (format → lint → type-check → test) is mandatory; no skipping.
|
|
98
|
+
- **Pre-R4 commit:** Stage all changes (`git add -A`), run MCP tool `collect_commit_context`, delegate to `commit_steward` using the resulting artifact, and commit with the generated message. Advance to R4 only after a successful commit.
|
|
99
|
+
- **R4 — Re-audit:** Refresh PR context via MCP tool `collect_pr_context`, then delegate to `feature-review` with the same inputs as the original review (resolved base branch, feature folder, refreshed PR context artifacts, acceptance-criteria source). No scope narrowing. The canonical issue number line must be included.
|
|
100
|
+
- **R5 — Loop-exit decision:** If the re-audit returns `REVIEW_STATUS: PASS`, exit the loop and advance to the PR creation gate. Otherwise, record `remediation_pass` increment in the checkpoint and return to R1.
|
|
101
|
+
|
|
102
|
+
**Termination guard:** If `remediation_pass` reaches 3 without resolution, the orchestrator records `step6_status: "blocked_remediation_loop_limit"` in the checkpoint and halts. No further automation is attempted.
|
|
103
|
+
|
|
104
|
+
## Issue Number Consistency
|
|
105
|
+
|
|
106
|
+
The canonical issue number is derived once from the active feature folder name: extract the trailing integer from the folder base name (e.g., `2026-04-26-push-down-claude-customizations-162` yields `162`). Record as `issue_num` in the checkpoint.
|
|
107
|
+
|
|
108
|
+
Every delegation prompt to `atomic-planner`, `atomic-executor`, and `feature-review` must include the line:
|
|
109
|
+
|
|
110
|
+
> `Canonical issue number for this feature is <issue_num>. All artifact content, file paths, and cross-references must use this number.`
|
|
111
|
+
|
|
112
|
+
If a subagent artifact references a different issue number, the orchestrator rejects it, requests correction, and records the discrepancy under `artifact_errors` in the checkpoint.
|
|
113
|
+
|
|
114
|
+
## PR Creation Gate
|
|
115
|
+
|
|
116
|
+
The orchestrator must not create a PR, push a branch for PR purposes, or report work complete until all four conditions are simultaneously true:
|
|
117
|
+
|
|
118
|
+
1. `blocking_findings_resolved: true` — the most recent `feature-review` produced zero blocking findings.
|
|
119
|
+
Equivalent deterministic gate: the latest review returned `REVIEW_STATUS: PASS`.
|
|
120
|
+
2. The AC verification artifact (`p14-acceptance-criteria-checkoff.md` or equivalent) confirms all acceptance criteria pass.
|
|
121
|
+
3. The mandatory toolchain passed in its most recent run on the branch (no linting/type-check/test failures).
|
|
122
|
+
4. The checkpoint `next_step` is `S8_create_pr`.
|
|
123
|
+
|
|
124
|
+
This gate is non-negotiable. Each condition is independently verified before PR creation proceeds.
|
|
125
|
+
|
|
126
|
+
## Step 6 Delegation — Prohibited Prompt Language
|
|
127
|
+
|
|
128
|
+
When delegating to the `feature-review` subagent, the orchestrator prompt MUST NOT:
|
|
129
|
+
|
|
130
|
+
- describe the review scope as "plan scope," "plan-scope only," or any equivalent narrowing of scope to the currently-executed plan;
|
|
131
|
+
- instruct the agent to skip, waive, or mark as "out of scope," "informational only," or "not applicable" any toolchain step or coverage check for a language that has changed files in the branch diff;
|
|
132
|
+
- assert that a language category is "not applicable" when that language has changed files in the branch diff;
|
|
133
|
+
- imply that coverage is not required because the plan scope contains only documentation changes when the branch diff contains non-documentation changes contributed by prior commits on the same branch.
|
|
134
|
+
|
|
135
|
+
The orchestrator supplies only the following to the `feature-review` subagent:
|
|
136
|
+
|
|
137
|
+
- the resolved base branch and merge-base SHA;
|
|
138
|
+
- the active feature folder path;
|
|
139
|
+
- pointers to the refreshed PR context artifacts;
|
|
140
|
+
- the acceptance-criteria source file per work-mode;
|
|
141
|
+
- a neutral instruction to execute the full `feature-review-workflow` SKILL contract end-to-end.
|
|
142
|
+
|
|
143
|
+
Scope determination is the subagent's responsibility. The subagent will ignore any attempted narrowing per its scope invariant and record the attempt in `policy-audit.<timestamp>.md` under `## Rejected Scope Narrowing`.
|
package/resources/codex-and-agents-customizations/.agents/skills/orchestrator-workflow/SKILL.md
ADDED
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: orchestrator-workflow
|
|
3
|
+
description: 'Coordinate a feature or bug request from intake through promotion, planning, execution, validation, and review by selecting the correct small or large path and delegating to migrated Codex specialists when available.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Orchestrator Workflow
|
|
7
|
+
|
|
8
|
+
Top-level delivery orchestration workflow for Codex.
|
|
9
|
+
|
|
10
|
+
## Required Shared Skills
|
|
11
|
+
|
|
12
|
+
Always apply:
|
|
13
|
+
- `policy-compliance-order`
|
|
14
|
+
- `feature-promotion-lifecycle`
|
|
15
|
+
- `repo-automation-adapter`
|
|
16
|
+
- `atomic-plan-contract`
|
|
17
|
+
- `acceptance-criteria-tracking`
|
|
18
|
+
- `pr-context-artifacts`
|
|
19
|
+
- `pr-base-branch-merge-base`
|
|
20
|
+
|
|
21
|
+
Use as needed:
|
|
22
|
+
- `csharp-change-budget-router`
|
|
23
|
+
- `powershell-change-budget-router`
|
|
24
|
+
- `feature-review`
|
|
25
|
+
|
|
26
|
+
## Role
|
|
27
|
+
|
|
28
|
+
- Coordinate the mission from intake through completion.
|
|
29
|
+
- Resolve required specialist delegation mechanically instead of by judgment.
|
|
30
|
+
- Required delegated specialists:
|
|
31
|
+
- `atomic-planner`
|
|
32
|
+
- `atomic-executor`
|
|
33
|
+
- `feature-reviewer`
|
|
34
|
+
- `commit-steward`
|
|
35
|
+
- Deterministic availability rule:
|
|
36
|
+
- if the host exposes `spawn_agent`, treat all four required delegated specialists as available,
|
|
37
|
+
- do not infer unavailability from missing nicknames, missing prior agent instances, or lack of a dedicated launcher alias.
|
|
38
|
+
- Required delegated steps MUST delegate or stop execution.
|
|
39
|
+
- If a required delegated handoff cannot be started, resumed, or completed with a receipt, persist blocked state and stop. Do not perform that step directly.
|
|
40
|
+
- Direct local execution is allowed only for workflow steps that are not designated below as required delegated handoffs.
|
|
41
|
+
|
|
42
|
+
## Checkpoint Contract
|
|
43
|
+
|
|
44
|
+
Canonical checkpoint path:
|
|
45
|
+
- `artifacts/orchestration/orchestrator-state.json`
|
|
46
|
+
|
|
47
|
+
Persist and reuse these fields exactly:
|
|
48
|
+
- `objective`
|
|
49
|
+
- `change_budget_estimate`
|
|
50
|
+
- `path_selected`
|
|
51
|
+
- `promotion-type`
|
|
52
|
+
- `short-name`
|
|
53
|
+
- `relativeFile`
|
|
54
|
+
- `long-name`
|
|
55
|
+
- `issue-num`
|
|
56
|
+
- `feature-folder`
|
|
57
|
+
- `work-mode`
|
|
58
|
+
- `plan-path`
|
|
59
|
+
- `review-status`
|
|
60
|
+
- `remediation-inputs-path`
|
|
61
|
+
- `remediation-plan-path`
|
|
62
|
+
- `remediation-pass`
|
|
63
|
+
- `commit-context-path`
|
|
64
|
+
- `pr-context-base-branch`
|
|
65
|
+
- `completed_steps`
|
|
66
|
+
- `next_step`
|
|
67
|
+
- `last_updated`
|
|
68
|
+
- `step5_status`
|
|
69
|
+
- `step6_status`
|
|
70
|
+
- `step7_status`
|
|
71
|
+
- `step8_status`
|
|
72
|
+
- `step9_status`
|
|
73
|
+
- `step10_status`
|
|
74
|
+
- `delegation_receipts`
|
|
75
|
+
- `blocked_reason`
|
|
76
|
+
|
|
77
|
+
For small-path runs, also persist:
|
|
78
|
+
- `bootstrap_mode`
|
|
79
|
+
- `phase0_execution_summary`
|
|
80
|
+
- `small_path_qc_summary`
|
|
81
|
+
- `small_path_audit_artifacts`
|
|
82
|
+
- `resume_after_manual_bootstrap`
|
|
83
|
+
|
|
84
|
+
Status enums:
|
|
85
|
+
- `step5_status` / `step6_status` / `step7_status` / `step8_status` / `step9_status` / `step10_status` MUST use one of:
|
|
86
|
+
- `not-applicable`
|
|
87
|
+
- `pending`
|
|
88
|
+
- `delegated`
|
|
89
|
+
- `verified`
|
|
90
|
+
- `blocked`
|
|
91
|
+
|
|
92
|
+
Blocked-reason enum:
|
|
93
|
+
- `blocked_reason` MUST be one of:
|
|
94
|
+
- `none`
|
|
95
|
+
- `checkpoint_conflict`
|
|
96
|
+
- `lifecycle_preconditions_missing`
|
|
97
|
+
- `spawn_agent_unavailable`
|
|
98
|
+
- `delegation_launch_failed`
|
|
99
|
+
- `delegate_no_receipt`
|
|
100
|
+
- `delegate_contract_incomplete`
|
|
101
|
+
- `validator_failed`
|
|
102
|
+
- `user_requested_stop`
|
|
103
|
+
- `review_status_missing`
|
|
104
|
+
- `commit_context_missing`
|
|
105
|
+
- `no_staged_changes`
|
|
106
|
+
|
|
107
|
+
Delegation receipt schema:
|
|
108
|
+
- `delegation_receipts` MUST be a list of objects with:
|
|
109
|
+
- `step`
|
|
110
|
+
- `agent_name`
|
|
111
|
+
- `agent_id`
|
|
112
|
+
- `skill_source`
|
|
113
|
+
- `started_at`
|
|
114
|
+
- `completed_at`
|
|
115
|
+
- `result_signal`
|
|
116
|
+
- `artifact_paths`
|
|
117
|
+
|
|
118
|
+
Required-delegation step map:
|
|
119
|
+
- small path:
|
|
120
|
+
- Step 5 -> `atomic-planner`
|
|
121
|
+
- Step 6 -> `atomic-executor`
|
|
122
|
+
- Step 9 -> `atomic-executor`
|
|
123
|
+
- Step 10 -> `feature-reviewer`
|
|
124
|
+
- large path:
|
|
125
|
+
- Step 7 -> `atomic-planner`
|
|
126
|
+
- Step 8 -> `atomic-executor`
|
|
127
|
+
- Step 9 -> `feature-reviewer`
|
|
128
|
+
- remediation planning:
|
|
129
|
+
- review-triggered remediation planning -> `atomic-planner`
|
|
130
|
+
- remediation preflight clearance -> `atomic-executor`
|
|
131
|
+
- remediation execution -> `atomic-executor`
|
|
132
|
+
- remediation commit message -> `commit-steward`
|
|
133
|
+
- remediation re-review -> `feature-reviewer`
|
|
134
|
+
|
|
135
|
+
## Deterministic Handoff Result Contract
|
|
136
|
+
|
|
137
|
+
Do not advance on summaries alone when an exact result signal is required.
|
|
138
|
+
|
|
139
|
+
- feature review result:
|
|
140
|
+
- `REVIEW_STATUS: PASS`
|
|
141
|
+
- `REVIEW_STATUS: REMEDIATION_REQUIRED`
|
|
142
|
+
- `FEATURE_FOLDER: <path>`
|
|
143
|
+
- `POLICY_AUDIT: <path>`
|
|
144
|
+
- `CODE_REVIEW: <path>`
|
|
145
|
+
- `FEATURE_AUDIT: <path>`
|
|
146
|
+
- `REMEDIATION_INPUTS: <path-or-NONE>`
|
|
147
|
+
- `REMEDIATION_PLAN: <path-or-NONE>`
|
|
148
|
+
- remediation preflight result:
|
|
149
|
+
- `PREFLIGHT: ALL CLEAR`
|
|
150
|
+
- `PREFLIGHT: REVISIONS REQUIRED`
|
|
151
|
+
- commit-steward result:
|
|
152
|
+
- one fenced `text` code block only
|
|
153
|
+
|
|
154
|
+
If an exact signal or required path field is missing, set the relevant step to `blocked`, set `blocked_reason` to `delegate_contract_incomplete`, and stop.
|
|
155
|
+
|
|
156
|
+
## Resume Rules
|
|
157
|
+
|
|
158
|
+
1. Read the checkpoint first when it exists.
|
|
159
|
+
2. If the recorded mission is incomplete, resume from `next_step`.
|
|
160
|
+
3. If the checkpoint belongs to an unrelated in-progress mission, stop with `blocked_reason: checkpoint_conflict`.
|
|
161
|
+
4. Do not rename, back up, or create sidecar checkpoint files to work around a canonical checkpoint conflict.
|
|
162
|
+
5. Restart only when the user explicitly requests restart.
|
|
163
|
+
6. Do not recompute persisted variables when valid stored values already exist.
|
|
164
|
+
|
|
165
|
+
## Routing Rules
|
|
166
|
+
|
|
167
|
+
1. Estimate the likely touched production files and test files first.
|
|
168
|
+
2. Determine the dominant implementation language.
|
|
169
|
+
3. If the scope is primarily C#, use `csharp-change-budget-router`.
|
|
170
|
+
4. If the scope is primarily PowerShell, use `powershell-change-budget-router`.
|
|
171
|
+
5. If the scope is mixed-language, ambiguous, or unsupported by an existing change-budget router, fail closed to the large path.
|
|
172
|
+
6. Treat any request outside the applicable small-path budget as large path.
|
|
173
|
+
|
|
174
|
+
## Small Path
|
|
175
|
+
|
|
176
|
+
Use the small path only when the applicable language router clears it.
|
|
177
|
+
|
|
178
|
+
Required behavior:
|
|
179
|
+
|
|
180
|
+
1. Set `${work-mode}` to `minor-audit`.
|
|
181
|
+
2. Use `feature-promotion-lifecycle` as the source of truth for lifecycle variables, branch naming, and `${plan-path}` resolution.
|
|
182
|
+
3. Route all promotion, issue, and feature-folder automation through `repo-automation-adapter`.
|
|
183
|
+
4. Enforce lifecycle preconditions before any active-folder authoring:
|
|
184
|
+
- `${relativeFile}` must resolve to a real potential markdown path and must not be `NONE`, `TBD`, or empty
|
|
185
|
+
- issue promotion must complete before branch or folder creation
|
|
186
|
+
- `${issue-num}` must be numeric before `new_active_feature_folder` runs
|
|
187
|
+
- do not create or edit `${feature-folder}/issue.md`, `${feature-folder}/spec.md`, `${feature-folder}/user-story.md`, or `plan*.md` until promotion and folder creation both succeed
|
|
188
|
+
- if any lifecycle precondition fails, set the relevant step status to `blocked`, set `blocked_reason` to `lifecycle_preconditions_missing`, and stop
|
|
189
|
+
5. Enforce minor-audit folder integrity:
|
|
190
|
+
- `${feature-folder}/issue.md` must exist
|
|
191
|
+
- `${feature-folder}/spec.md` must be absent
|
|
192
|
+
- `${feature-folder}/user-story.md` must be absent
|
|
193
|
+
6. Spawn `atomic-planner` to create or revise the minimal plan at `${plan-path}`.
|
|
194
|
+
- Include the directive `DIRECTIVE: MINIMAL-AUDIT PLAN REQUIRED`
|
|
195
|
+
- Require the same `${plan-path}` to be updated in place
|
|
196
|
+
- Do not continue until the planner reports `PREFLIGHT: ALL CLEAR`
|
|
197
|
+
- Record a delegation receipt and set `step5_status` to `verified` before continuing
|
|
198
|
+
- If the handoff cannot be started or does not return a receipt, set `step5_status` to `blocked`, set `blocked_reason`, and stop
|
|
199
|
+
7. Spawn `atomic-executor` to execute Phase 0 only.
|
|
200
|
+
- Record a delegation receipt and set `step6_status` to `verified` before branching
|
|
201
|
+
- If the handoff cannot be started or does not return a receipt, set `step6_status` to `blocked`, set `blocked_reason`, and stop
|
|
202
|
+
8. If the request is manual bootstrap, persist the resume checkpoint and stop after Phase 0.
|
|
203
|
+
9. Otherwise continue with constrained implementation:
|
|
204
|
+
- steps that are not modeled as required delegated handoffs may execute directly while staying within the approved plan and applicable repo policy
|
|
205
|
+
10. Validate the delivered work against `${feature-folder}/issue.md` and persist plan or acceptance-criteria checkoffs before review.
|
|
206
|
+
- MUST delegate to `atomic-executor` for validation and checklist updates
|
|
207
|
+
- Record a delegation receipt and set `step9_status` to `verified` before continuing
|
|
208
|
+
- If the handoff cannot be started or does not return a receipt, set `step9_status` to `blocked`, set `blocked_reason`, and stop
|
|
209
|
+
11. Run reduced audit:
|
|
210
|
+
- MUST delegate to `feature-reviewer`
|
|
211
|
+
- require the exact `REVIEW_STATUS` and artifact-path fields from the review result
|
|
212
|
+
- Record a delegation receipt and set `step10_status` to `verified` before continuing
|
|
213
|
+
- If the handoff cannot be started or does not return a receipt, set `step10_status` to `blocked`, set `blocked_reason`, and stop
|
|
214
|
+
12. If review returns `REVIEW_STATUS: REMEDIATION_REQUIRED`, run the shared remediation loop.
|
|
215
|
+
- Treat the returned `REMEDIATION_INPUTS` and `REMEDIATION_PLAN` paths as mandatory inputs
|
|
216
|
+
- If any required remediation handoff cannot be started or does not return a receipt, set `blocked_reason` and stop
|
|
217
|
+
|
|
218
|
+
## Large Path
|
|
219
|
+
|
|
220
|
+
Use the large path for any request that exceeds or bypasses the small-path router.
|
|
221
|
+
|
|
222
|
+
Required behavior:
|
|
223
|
+
|
|
224
|
+
1. Set `${work-mode}` to:
|
|
225
|
+
- `full-feature` for feature work
|
|
226
|
+
- `full-bug` for bug work
|
|
227
|
+
2. Use `feature-promotion-lifecycle` as the source of truth for lifecycle variables, branch naming, and `${plan-path}` resolution.
|
|
228
|
+
3. Route all promotion, issue, and feature-folder automation through `repo-automation-adapter`.
|
|
229
|
+
4. Enforce lifecycle preconditions before any active-folder authoring:
|
|
230
|
+
- `${relativeFile}` must resolve to a real potential markdown path and must not be `NONE`, `TBD`, or empty
|
|
231
|
+
- issue promotion must complete before branch or folder creation
|
|
232
|
+
- `${issue-num}` must be numeric before `new_active_feature_folder` runs
|
|
233
|
+
- do not create or edit `${feature-folder}/issue.md`, `${feature-folder}/spec.md`, `${feature-folder}/user-story.md`, or `plan*.md` until promotion and folder creation both succeed
|
|
234
|
+
- if any lifecycle precondition fails, set the relevant step status to `blocked`, set `blocked_reason` to `lifecycle_preconditions_missing`, and stop
|
|
235
|
+
5. Complete the requirements-authoring steps before planning:
|
|
236
|
+
- fill the potential entry details
|
|
237
|
+
- create or refresh research artifacts
|
|
238
|
+
- complete `spec.md` and `user-story.md` when the selected work mode requires them
|
|
239
|
+
6. Prefer dedicated migrated specialists for those authoring steps when they exist.
|
|
240
|
+
7. When those specialists are not yet migrated, perform the authoring steps directly without changing template headings.
|
|
241
|
+
8. Spawn `atomic-planner` to finalize `${plan-path}` and require `PREFLIGHT: ALL CLEAR`.
|
|
242
|
+
Hard enforcement for Step 7:
|
|
243
|
+
- The planning route MUST be `atomic-planner -> atomic-executor` for preflight validation.
|
|
244
|
+
- The planner MUST update `${plan-path}` in place and MUST NOT create additional `plan.*.md` files for revisions.
|
|
245
|
+
- The approved plan MUST include explicit Phase 0 baseline evidence tasks and explicit final-QA evidence or coverage tasks for each language in scope where policy requires them.
|
|
246
|
+
- Do not mark Step 7 complete until delegate output includes both a concrete `plan-path` and final `PREFLIGHT: ALL CLEAR`.
|
|
247
|
+
- Do not perform planning locally when this delegation cannot be started; set `step7_status` to `blocked`, set `blocked_reason`, and stop.
|
|
248
|
+
- Record a delegation receipt and set `step7_status` to `verified` only after delegate output and validator checks pass.
|
|
249
|
+
9. Spawn `atomic-executor` to execute the approved plan.
|
|
250
|
+
Hard enforcement for Step 8:
|
|
251
|
+
- Do not mark Step 8 complete until execution output includes execution summary, QA summary, lint/type/test/coverage deltas, and numeric baseline/post/new-code coverage metrics where policy requires them.
|
|
252
|
+
- Do not accept PASS execution outcomes when required baseline or final-QA artifacts are missing, when checklist state is not backed by artifacts, or when coverage-bearing plan tasks remain unverified.
|
|
253
|
+
- Do not perform execution locally when this delegation cannot be started; set `step8_status` to `blocked`, set `blocked_reason`, and stop.
|
|
254
|
+
- Record a delegation receipt and set `step8_status` to `verified` only after delegate output and validator checks pass.
|
|
255
|
+
10. Spawn `feature-reviewer` for post-implementation review.
|
|
256
|
+
Hard enforcement for Step 9:
|
|
257
|
+
- Resolve the base branch through `pr-base-branch-merge-base` unless an explicit base was already supplied.
|
|
258
|
+
- Load canonical PR-context artifacts and refresh them through `repo-automation-adapter` when they are missing or stale relative to the current branch state.
|
|
259
|
+
- Require the exact `REVIEW_STATUS` and artifact-path fields from the review result.
|
|
260
|
+
- Do not mark Step 9 complete until expected review artifacts are present on disk in `${feature-folder}`.
|
|
261
|
+
- Do not accept PASS review outcomes when required coverage fields are left unverified, when PR-context artifacts are missing or stale relative to the current branch state, or when required remediation artifacts are missing.
|
|
262
|
+
- Do not perform review locally when this delegation cannot be started; set `step9_status` to `blocked`, set `blocked_reason`, and stop.
|
|
263
|
+
- Record a delegation receipt and set `step9_status` to `verified` only after delegate output and validator checks pass.
|
|
264
|
+
11. If review returns `REVIEW_STATUS: REMEDIATION_REQUIRED`, run the shared remediation loop until the latest review returns `REVIEW_STATUS: PASS`.
|
|
265
|
+
- remediation planning, preflight clearance, remediation execution, remediation commit-message generation, and re-review delegations are all mandatory; if any cannot be started, set `blocked_reason` and stop
|
|
266
|
+
|
|
267
|
+
## Shared Remediation Loop
|
|
268
|
+
|
|
269
|
+
Apply this loop after any required review returns `REVIEW_STATUS: REMEDIATION_REQUIRED`.
|
|
270
|
+
|
|
271
|
+
1. Persist `review-status`, `remediation-inputs-path`, `remediation-plan-path`, and `remediation-pass` in the checkpoint.
|
|
272
|
+
2. Delegate `atomic-executor` in validation-only mode against the exact `remediation-plan-path`.
|
|
273
|
+
3. If the executor returns `PREFLIGHT: REVISIONS REQUIRED`, delegate `atomic-planner` to update the same `remediation-plan-path` in place and then repeat preflight clearance.
|
|
274
|
+
4. Only after `PREFLIGHT: ALL CLEAR`, delegate `atomic-executor` to execute the remediation plan exactly as written.
|
|
275
|
+
5. Stage all files with `git add -A`.
|
|
276
|
+
6. If staging is empty after execution, set `blocked_reason` to `no_staged_changes` and stop.
|
|
277
|
+
7. Use `repo-automation-adapter` to run MCP tool `collect_commit_context`, capture the returned on-disk artifact path as `commit-context-path`, and stop with `blocked_reason: commit_context_missing` if that path is unavailable.
|
|
278
|
+
8. Delegate `commit-steward` using `commit-context-path` as the authoritative staged-change input.
|
|
279
|
+
9. Commit the staged work with the exact message returned by `commit-steward`.
|
|
280
|
+
10. Use `repo-automation-adapter` to refresh PR-context artifacts through MCP tool `collect_pr_context` with the resolved base branch.
|
|
281
|
+
11. Delegate `feature-reviewer` again with the refreshed PR context.
|
|
282
|
+
12. If the new review still returns `REVIEW_STATUS: REMEDIATION_REQUIRED`, increment `remediation-pass` and repeat the loop. Exit only when the latest review returns `REVIEW_STATUS: PASS`.
|
|
283
|
+
|
|
284
|
+
## Completion Gates
|
|
285
|
+
|
|
286
|
+
Do not claim mission completion until all of the following are true:
|
|
287
|
+
|
|
288
|
+
- the selected path completed end to end
|
|
289
|
+
- all required delegations completed with receipts
|
|
290
|
+
- the checkpoint is updated with the final state
|
|
291
|
+
- the canonical checkpoint path was used without sidecar replacement or backup substitution
|
|
292
|
+
- `${relativeFile}` is a real promoted-input path and `${issue-num}` is numeric when lifecycle setup was required
|
|
293
|
+
- `${feature-folder}` and `${plan-path}` are known when lifecycle setup was required
|
|
294
|
+
- the approved plan is executor-compliant and references the required baseline and final-QA evidence tasks
|
|
295
|
+
- required review artifacts exist on disk
|
|
296
|
+
- small path has Phase 0 evidence plus reduced audit artifacts
|
|
297
|
+
- large path has policy, code, and feature audit artifacts
|
|
298
|
+
- required baseline and final-QA evidence artifacts referenced by the approved plan exist on disk
|
|
299
|
+
- any required remediation artifacts exist on disk and the latest re-review is clean
|
|
300
|
+
- any required remediation loop run also includes a remediation execution receipt, a remediation commit receipt, and a final `REVIEW_STATUS: PASS`
|
|
301
|
+
- validator-backed checks for the approved plan, policy audit, code review, feature audit, and checkpoint state pass
|
|
302
|
+
|
|
303
|
+
## Hard Constraints
|
|
304
|
+
|
|
305
|
+
- Do not stop after one delegation when required downstream steps remain.
|
|
306
|
+
- Do not infer specialist unavailability from missing nicknames or absent prior subagent instances.
|
|
307
|
+
- Do not call `drmCopilotExtension.*` directly from this workflow.
|
|
308
|
+
- Do not bypass `repo-automation-adapter` for host-specific lifecycle steps.
|
|
309
|
+
- Do not rename, back up, or create sidecar checkpoint files to avoid using the canonical checkpoint path.
|
|
310
|
+
- Do not proceed when the canonical checkpoint belongs to another in-progress mission; stop and report the conflict.
|
|
311
|
+
- Do not create or edit active feature docs before potential-entry creation, issue promotion, and active-folder creation succeed.
|
|
312
|
+
- Do not call `new_active_feature_folder` before `${issue-num}` is numeric and backed by promotion output.
|
|
313
|
+
- Do not persist placeholder lifecycle values such as `NONE` or `TBD` for `${relativeFile}`, `${issue-num}`, `${feature-folder}`, or `${plan-path}` once lifecycle setup begins.
|
|
314
|
+
- Do not create replacement audit artifacts yourself for any required delegated review step.
|
|
315
|
+
- Do not execute required delegated steps locally as a fallback.
|
|
316
|
+
- Do not accept stale PR-context artifacts, unsupported checklist checkoffs, or missing required evidence as PASS outcomes.
|
|
317
|
+
- Do not claim completion without reporting the checkpoint path and the created or updated artifact paths.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Converted skill
|
|
2
|
+
|
|
3
|
+
Applied rewrites:
|
|
4
|
+
- None
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
name: policy-audit-template-usage
|
|
8
|
+
description: 'Policy audit template usage and output requirements. Use when creating policy-audit.<timestamp>.md artifacts from the repo templates.'
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Policy Audit Template Usage
|
|
12
|
+
|
|
13
|
+
Shared rules for creating policy audit artifacts from the MCP-exposed bundled template assets.
|
|
14
|
+
|
|
15
|
+
## When to Use This Skill
|
|
16
|
+
|
|
17
|
+
Use this skill when:
|
|
18
|
+
- An agent must create a `policy-audit.<timestamp>.md` file.
|
|
19
|
+
- The MCP-exposed policy-audit template asset is required.
|
|
20
|
+
|
|
21
|
+
## Template Source
|
|
22
|
+
|
|
23
|
+
- Required template source: the MCP server tool `mcp__drmCopilotExtension__resolve_policy_audit_template_asset` with asset selector `template`.
|
|
24
|
+
- The resolved MCP asset is authoritative even when a matching repo file also exists.
|
|
25
|
+
- If MCP asset resolution fails, create a minimal policy audit artifact marked BLOCKED and document the missing template resolution.
|
|
26
|
+
|
|
27
|
+
## Required Steps
|
|
28
|
+
|
|
29
|
+
1) Resolve the policy-audit template through the MCP server tool `mcp__drmCopilotExtension__resolve_policy_audit_template_asset` with asset `template`, then copy the resolved asset to the target location using an ISO-8601 timestamp.
|
|
30
|
+
2) Replace placeholders with actual values (component, date, files under test, commits).
|
|
31
|
+
3) Remove any template usage instructions per template guidance.
|
|
32
|
+
4) Mark each section PASS/FAIL/N/A using the template’s expected conventions.
|
|
33
|
+
5) Preserve the canonical major sections from the template:
|
|
34
|
+
- `## Executive Summary`
|
|
35
|
+
- `## 1. General Unit Test Policy Compliance`
|
|
36
|
+
- `## 2. General Code Change Policy Compliance`
|
|
37
|
+
- `## 3. Language-Specific Code Change Policy Compliance`
|
|
38
|
+
- `## 4. Language-Specific Unit Test Policy Compliance`
|
|
39
|
+
- `## 5. Test Coverage Detail`
|
|
40
|
+
- `## 6. Test Execution Metrics`
|
|
41
|
+
- `## 7. Code Quality Checks`
|
|
42
|
+
- `## 8. Gaps and Exceptions`
|
|
43
|
+
- `## 9. Summary of Changes`
|
|
44
|
+
- `## 10. Compliance Verdict`
|
|
45
|
+
- `## Appendix A: Test Inventory`
|
|
46
|
+
- `## Appendix B: Toolchain Commands Reference`
|
|
47
|
+
6) Run the `mcp__drmCopilotExtension__validate_orchestration_artifacts` MCP tool with `artifact_type: "policy-audit"` and `artifact_path: <path>` and fail closed on any non-zero result.
|
|
48
|
+
|
|
49
|
+
## Invalid Outputs
|
|
50
|
+
|
|
51
|
+
- A freeform summary note is invalid.
|
|
52
|
+
- A policy audit that retains the template instruction block is invalid.
|
|
53
|
+
- A policy audit that omits the canonical major headings is invalid.
|