@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,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'prd_creator'
|
|
3
|
+
description: 'Prompt for creating Product Requirements Documents (PRDs) for new features, based on an Epic.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Feature PRD Prompt
|
|
7
|
+
|
|
8
|
+
## Goal
|
|
9
|
+
|
|
10
|
+
Act as an expert Product Manager for a large-scale SaaS platform. Your primary responsibility is to take a high-level feature or enabler from an Epic and create a detailed Product Requirements Document (PRD). This PRD will serve as the single source of truth for the engineering team and will be used to generate a comprehensive technical specification.
|
|
11
|
+
|
|
12
|
+
Review the user's request for a new feature and the parent Epic, and generate a thorough PRD. If you don't have enough information, ask clarifying questions to ensure all aspects of the feature are well-defined.
|
|
13
|
+
|
|
14
|
+
## Output Format
|
|
15
|
+
|
|
16
|
+
The output should be a complete PRD in Markdown format, saved to `/docs/ways-of-work/plan/{epic-name}/{feature-name}/prd.md`.
|
|
17
|
+
|
|
18
|
+
### PRD Structure
|
|
19
|
+
|
|
20
|
+
#### 1. Feature Name
|
|
21
|
+
|
|
22
|
+
- A clear, concise, and descriptive name for the feature.
|
|
23
|
+
|
|
24
|
+
#### 2. Epic
|
|
25
|
+
|
|
26
|
+
- Link to the parent Epic PRD and Architecture documents.
|
|
27
|
+
|
|
28
|
+
#### 3. Goal
|
|
29
|
+
|
|
30
|
+
- **Problem:** Describe the user problem or business need this feature addresses (3-5 sentences).
|
|
31
|
+
- **Solution:** Explain how this feature solves the problem.
|
|
32
|
+
- **Impact:** What are the expected outcomes or metrics to be improved (e.g., user engagement, conversion rate, etc.)?
|
|
33
|
+
|
|
34
|
+
#### 4. User Personas
|
|
35
|
+
|
|
36
|
+
- Describe the target user(s) for this feature.
|
|
37
|
+
|
|
38
|
+
#### 5. User Stories
|
|
39
|
+
|
|
40
|
+
- Write user stories in the format: "As a `<user persona>`, I want to `<perform an action>` so that I can `<achieve a benefit>`."
|
|
41
|
+
- Cover the primary paths and edge cases.
|
|
42
|
+
|
|
43
|
+
#### 6. Requirements
|
|
44
|
+
|
|
45
|
+
- **Functional Requirements:** A detailed, bulleted list of what the system must do. Be specific and unambiguous.
|
|
46
|
+
- **Non-Functional Requirements:** A bulleted list of constraints and quality attributes (e.g., performance, security, accessibility, data privacy).
|
|
47
|
+
|
|
48
|
+
#### 7. Acceptance Criteria
|
|
49
|
+
|
|
50
|
+
- For each user story or major requirement, provide a set of acceptance criteria.
|
|
51
|
+
- Use a clear format, such as a checklist or Given/When/Then. This will be used to validate that the feature is complete and correct.
|
|
52
|
+
|
|
53
|
+
#### 8. Out of Scope
|
|
54
|
+
|
|
55
|
+
- Clearly list what is _not_ included in this feature to avoid scope creep.
|
|
56
|
+
|
|
57
|
+
## Context Template
|
|
58
|
+
|
|
59
|
+
- **Epic:** [Link to the parent Epic documents]
|
|
60
|
+
- **Feature Idea:** [A high-level description of the feature request from the user]
|
|
61
|
+
- **Target Users:** [Optional: Any initial thoughts on who this is for]
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: 'Technology-agnostic prompt generator that creates customizable AI prompts for scanning codebases and identifying high-quality code exemplars. Supports multiple programming languages (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with configurable analysis depth, categorization methods, and documentation formats to establish coding standards and maintain consistency across development teams.'
|
|
3
|
+
agent: 'agent'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Code Exemplars Blueprint Generator
|
|
7
|
+
|
|
8
|
+
## Configuration Variables
|
|
9
|
+
${PROJECT_TYPE="Auto-detect|.NET|Java|JavaScript|TypeScript|React|Angular|Python|Other"} <!-- Primary technology -->
|
|
10
|
+
${SCAN_DEPTH="Basic|Standard|Comprehensive"} <!-- How deeply to analyze the codebase -->
|
|
11
|
+
${INCLUDE_CODE_SNIPPETS=true|false} <!-- Include actual code snippets in addition to file references -->
|
|
12
|
+
${CATEGORIZATION="Pattern Type|Architecture Layer|File Type"} <!-- How to organize exemplars -->
|
|
13
|
+
${MAX_EXAMPLES_PER_CATEGORY=3} <!-- Maximum number of examples per category -->
|
|
14
|
+
${INCLUDE_COMMENTS=true|false} <!-- Include explanatory comments for each exemplar -->
|
|
15
|
+
|
|
16
|
+
## Generated Prompt
|
|
17
|
+
|
|
18
|
+
"Scan this codebase and generate an exemplars.md file that identifies high-quality, representative code examples. The exemplars should demonstrate our coding standards and patterns to help maintain consistency. Use the following approach:
|
|
19
|
+
|
|
20
|
+
### 1. Codebase Analysis Phase
|
|
21
|
+
- ${PROJECT_TYPE == "Auto-detect" ? "Automatically detect primary programming languages and frameworks by scanning file extensions and configuration files" : `Focus on ${PROJECT_TYPE} code files`}
|
|
22
|
+
- Identify files with high-quality implementation, good documentation, and clear structure
|
|
23
|
+
- Look for commonly used patterns, architecture components, and well-structured implementations
|
|
24
|
+
- Prioritize files that demonstrate best practices for our technology stack
|
|
25
|
+
- Only reference actual files that exist in the codebase - no hypothetical examples
|
|
26
|
+
|
|
27
|
+
### 2. Exemplar Identification Criteria
|
|
28
|
+
- Well-structured, readable code with clear naming conventions
|
|
29
|
+
- Comprehensive comments and documentation
|
|
30
|
+
- Proper error handling and validation
|
|
31
|
+
- Adherence to design patterns and architectural principles
|
|
32
|
+
- Separation of concerns and single responsibility principle
|
|
33
|
+
- Efficient implementation without code smells
|
|
34
|
+
- Representative of our standard approaches
|
|
35
|
+
|
|
36
|
+
### 3. Core Pattern Categories
|
|
37
|
+
|
|
38
|
+
${PROJECT_TYPE == ".NET" || PROJECT_TYPE == "Auto-detect" ? `#### .NET Exemplars (if detected)
|
|
39
|
+
- **Domain Models**: Find entities that properly implement encapsulation and domain logic
|
|
40
|
+
- **Repository Implementations**: Examples of our data access approach
|
|
41
|
+
- **Service Layer Components**: Well-structured business logic implementations
|
|
42
|
+
- **Controller Patterns**: Clean API controllers with proper validation and responses
|
|
43
|
+
- **Dependency Injection Usage**: Good examples of DI configuration and usage
|
|
44
|
+
- **Middleware Components**: Custom middleware implementations
|
|
45
|
+
- **Unit Test Patterns**: Well-structured tests with proper arrangement and assertions` : ""}
|
|
46
|
+
|
|
47
|
+
${(PROJECT_TYPE == "JavaScript" || PROJECT_TYPE == "TypeScript" || PROJECT_TYPE == "React" || PROJECT_TYPE == "Angular" || PROJECT_TYPE == "Auto-detect") ? `#### Frontend Exemplars (if detected)
|
|
48
|
+
- **Component Structure**: Clean, well-structured components
|
|
49
|
+
- **State Management**: Good examples of state handling
|
|
50
|
+
- **API Integration**: Well-implemented service calls and data handling
|
|
51
|
+
- **Form Handling**: Validation and submission patterns
|
|
52
|
+
- **Routing Implementation**: Navigation and route configuration
|
|
53
|
+
- **UI Components**: Reusable, well-structured UI elements
|
|
54
|
+
- **Unit Test Examples**: Component and service tests` : ""}
|
|
55
|
+
|
|
56
|
+
${PROJECT_TYPE == "Java" || PROJECT_TYPE == "Auto-detect" ? `#### Java Exemplars (if detected)
|
|
57
|
+
- **Entity Classes**: Well-designed JPA entities or domain models
|
|
58
|
+
- **Service Implementations**: Clean service layer components
|
|
59
|
+
- **Repository Patterns**: Data access implementations
|
|
60
|
+
- **Controller/Resource Classes**: API endpoint implementations
|
|
61
|
+
- **Configuration Classes**: Application configuration
|
|
62
|
+
- **Unit Tests**: Well-structured JUnit tests` : ""}
|
|
63
|
+
|
|
64
|
+
${PROJECT_TYPE == "Python" || PROJECT_TYPE == "Auto-detect" ? `#### Python Exemplars (if detected)
|
|
65
|
+
- **Class Definitions**: Well-structured classes with proper documentation
|
|
66
|
+
- **API Routes/Views**: Clean API implementations
|
|
67
|
+
- **Data Models**: ORM model definitions
|
|
68
|
+
- **Service Functions**: Business logic implementations
|
|
69
|
+
- **Utility Modules**: Helper and utility functions
|
|
70
|
+
- **Test Cases**: Well-structured unit tests` : ""}
|
|
71
|
+
|
|
72
|
+
### 4. Architecture Layer Exemplars
|
|
73
|
+
|
|
74
|
+
- **Presentation Layer**:
|
|
75
|
+
- User interface components
|
|
76
|
+
- Controllers/API endpoints
|
|
77
|
+
- View models/DTOs
|
|
78
|
+
|
|
79
|
+
- **Business Logic Layer**:
|
|
80
|
+
- Service implementations
|
|
81
|
+
- Business logic components
|
|
82
|
+
- Workflow orchestration
|
|
83
|
+
|
|
84
|
+
- **Data Access Layer**:
|
|
85
|
+
- Repository implementations
|
|
86
|
+
- Data models
|
|
87
|
+
- Query patterns
|
|
88
|
+
|
|
89
|
+
- **Cross-Cutting Concerns**:
|
|
90
|
+
- Logging implementations
|
|
91
|
+
- Error handling
|
|
92
|
+
- Authentication/authorization
|
|
93
|
+
- Validation
|
|
94
|
+
|
|
95
|
+
### 5. Exemplar Documentation Format
|
|
96
|
+
|
|
97
|
+
For each identified exemplar, document:
|
|
98
|
+
- File path (relative to repository root)
|
|
99
|
+
- Brief description of what makes it exemplary
|
|
100
|
+
- Pattern or component type it represents
|
|
101
|
+
${INCLUDE_COMMENTS ? "- Key implementation details and coding principles demonstrated" : ""}
|
|
102
|
+
${INCLUDE_CODE_SNIPPETS ? "- Small, representative code snippet (if applicable)" : ""}
|
|
103
|
+
|
|
104
|
+
${SCAN_DEPTH == "Comprehensive" ? `### 6. Additional Documentation
|
|
105
|
+
|
|
106
|
+
- **Consistency Patterns**: Note consistent patterns observed across the codebase
|
|
107
|
+
- **Architecture Observations**: Document architectural patterns evident in the code
|
|
108
|
+
- **Implementation Conventions**: Identify naming and structural conventions
|
|
109
|
+
- **Anti-patterns to Avoid**: Note any areas where the codebase deviates from best practices` : ""}
|
|
110
|
+
|
|
111
|
+
### ${SCAN_DEPTH == "Comprehensive" ? "7" : "6"}. Output Format
|
|
112
|
+
|
|
113
|
+
Create exemplars.md with:
|
|
114
|
+
1. Introduction explaining the purpose of the document
|
|
115
|
+
2. Table of contents with links to categories
|
|
116
|
+
3. Organized sections based on ${CATEGORIZATION}
|
|
117
|
+
4. Up to ${MAX_EXAMPLES_PER_CATEGORY} exemplars per category
|
|
118
|
+
5. Conclusion with recommendations for maintaining code quality
|
|
119
|
+
|
|
120
|
+
The document should be actionable for developers needing guidance on implementing new features consistent with existing patterns.
|
|
121
|
+
|
|
122
|
+
Important: Only include actual files from the codebase. Verify all file paths exist. Do not include placeholder or hypothetical examples.
|
|
123
|
+
"
|
|
124
|
+
|
|
125
|
+
## Expected Output
|
|
126
|
+
Upon running this prompt, GitHub Copilot will scan your codebase and generate an exemplars.md file containing real references to high-quality code examples in your repository, organized according to your selected parameters.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'agent'
|
|
3
|
+
description: 'Create GitHub Issues from implementation plan phases using feature_request.yml or chore_request.yml templates.'
|
|
4
|
+
tools: ['search/codebase', 'search', 'github', 'create_issue', 'search_issues', 'update_issue']
|
|
5
|
+
---
|
|
6
|
+
# Create GitHub Issue from Implementation Plan
|
|
7
|
+
|
|
8
|
+
Create GitHub Issues for the implementation plan at `${file}`.
|
|
9
|
+
|
|
10
|
+
## Process
|
|
11
|
+
|
|
12
|
+
1. Analyze plan file to identify phases
|
|
13
|
+
2. Check existing issues using `search_issues`
|
|
14
|
+
3. Create new issue per phase using `create_issue` or update existing with `update_issue`
|
|
15
|
+
4. Use `feature_request.yml` or `chore_request.yml` templates (fallback to default)
|
|
16
|
+
|
|
17
|
+
## Requirements
|
|
18
|
+
|
|
19
|
+
- One issue per implementation phase
|
|
20
|
+
- Clear, structured titles and descriptions
|
|
21
|
+
- Include only changes required by the plan
|
|
22
|
+
- Verify against existing issues before creation
|
|
23
|
+
|
|
24
|
+
## Issue Content
|
|
25
|
+
|
|
26
|
+
- Title: Phase name from implementation plan
|
|
27
|
+
- Description: Phase details, requirements, and context
|
|
28
|
+
- Labels: Appropriate for issue type (feature/chore)
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'prd_creator'
|
|
3
|
+
description: 'Create a new implementation plan file for new features, refactoring existing code or upgrading packages, design, architecture or infrastructure.'
|
|
4
|
+
tools: ['search/changes', 'search/codebase', 'edit/editFiles', 'vscode/extensions', 'web/fetch', 'web/githubRepo', 'vscode/openSimpleBrowser', 'read/problems', 'execute/createAndRunTask', 'execute/getTaskOutput', 'execute/runTask', 'search', 'search/searchResults', 'read/terminalLastCommand', 'read/terminalSelection', 'execute/testFailure', 'search/usages', 'vscode/vscodeAPI']
|
|
5
|
+
---
|
|
6
|
+
# Create Implementation Plan
|
|
7
|
+
|
|
8
|
+
## Primary Directive
|
|
9
|
+
|
|
10
|
+
Your goal is to create a new implementation plan file for `${input:PlanPurpose}`. Your output must be machine-readable, deterministic, and structured for autonomous execution by other AI systems or humans.
|
|
11
|
+
|
|
12
|
+
## Execution Context
|
|
13
|
+
|
|
14
|
+
This prompt is designed for AI-to-AI communication and automated processing. All instructions must be interpreted literally and executed systematically without human interpretation or clarification.
|
|
15
|
+
|
|
16
|
+
## Core Requirements
|
|
17
|
+
|
|
18
|
+
- Generate implementation plans that are fully executable by AI agents or humans
|
|
19
|
+
- Use deterministic language with zero ambiguity
|
|
20
|
+
- Structure all content for automated parsing and execution
|
|
21
|
+
- Ensure complete self-containment with no external dependencies for understanding
|
|
22
|
+
|
|
23
|
+
## Plan Structure Requirements
|
|
24
|
+
|
|
25
|
+
Plans must consist of discrete, atomic phases containing executable tasks. Each phase must be independently processable by AI agents or humans without cross-phase dependencies unless explicitly declared.
|
|
26
|
+
|
|
27
|
+
## Phase Architecture
|
|
28
|
+
|
|
29
|
+
- Each phase must have measurable completion criteria
|
|
30
|
+
- Tasks within phases must be executable in parallel unless dependencies are specified
|
|
31
|
+
- All task descriptions must include specific file paths, function names, and exact implementation details
|
|
32
|
+
- No task should require human interpretation or decision-making
|
|
33
|
+
|
|
34
|
+
## AI-Optimized Implementation Standards
|
|
35
|
+
|
|
36
|
+
- Use explicit, unambiguous language with zero interpretation required
|
|
37
|
+
- Structure all content as machine-parseable formats (tables, lists, structured data)
|
|
38
|
+
- Include specific file paths, line numbers, and exact code references where applicable
|
|
39
|
+
- Define all variables, constants, and configuration values explicitly
|
|
40
|
+
- Provide complete context within each task description
|
|
41
|
+
- Use standardized prefixes for requirements and constraints (e.g., REQ-, SEC-, CON-)
|
|
42
|
+
- Use `[P#-T#]` identifiers for tasks (canonical)
|
|
43
|
+
- Include validation criteria that can be automatically verified
|
|
44
|
+
|
|
45
|
+
## Output File Specifications
|
|
46
|
+
|
|
47
|
+
- Save implementation plan files in `/plan/` directory
|
|
48
|
+
- Use naming convention: `[purpose]-[component]-[version].md`
|
|
49
|
+
- Purpose prefixes: `upgrade|refactor|feature|data|infrastructure|process|architecture|design`
|
|
50
|
+
- Example: `upgrade-system-command-4.md`, `feature-auth-module-1.md`
|
|
51
|
+
- File must be valid Markdown with proper front matter structure
|
|
52
|
+
|
|
53
|
+
## Mandatory Template Structure
|
|
54
|
+
|
|
55
|
+
All implementation plans must strictly adhere to the following template. Each section is required and must be populated with specific, actionable content. AI agents must validate template compliance before execution.
|
|
56
|
+
|
|
57
|
+
## Template Validation Rules
|
|
58
|
+
|
|
59
|
+
- All front matter fields must be present and properly formatted
|
|
60
|
+
- All section headers must match exactly (case-sensitive)
|
|
61
|
+
- All identifier prefixes must follow the specified format
|
|
62
|
+
- Tables must include all required columns
|
|
63
|
+
- No placeholder text may remain in the final output
|
|
64
|
+
|
|
65
|
+
## Status
|
|
66
|
+
|
|
67
|
+
The status of the implementation plan must be clearly defined in the front matter and must reflect the current state of the plan. The status can be one of the following (status_color in brackets): `Completed` (bright green badge), `In progress` (yellow badge), `Planned` (blue badge), `Deprecated` (red badge), or `On Hold` (orange badge). It should also be displayed as a badge in the introduction section.
|
|
68
|
+
|
|
69
|
+
```md
|
|
70
|
+
---
|
|
71
|
+
goal: [Concise Title Describing the Package Implementation Plan's Goal]
|
|
72
|
+
version: [Optional: e.g., 1.0, Date]
|
|
73
|
+
date_created: [YYYY-MM-DD]
|
|
74
|
+
last_updated: [Optional: YYYY-MM-DD]
|
|
75
|
+
owner: [Optional: Team/Individual responsible for this spec]
|
|
76
|
+
status: 'Completed'|'In progress'|'Planned'|'Deprecated'|'On Hold'
|
|
77
|
+
tags: [Optional: List of relevant tags or categories, e.g., `feature`, `upgrade`, `chore`, `architecture`, `migration`, `bug` etc]
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
# Introduction
|
|
81
|
+
|
|
82
|
+

|
|
83
|
+
|
|
84
|
+
[A short concise introduction to the plan and the goal it is intended to achieve.]
|
|
85
|
+
|
|
86
|
+
## 1. Requirements & Constraints
|
|
87
|
+
|
|
88
|
+
[Explicitly list all requirements & constraints that affect the plan and constrain how it is implemented. Use bullet points or tables for clarity.]
|
|
89
|
+
|
|
90
|
+
- **REQ-001**: Requirement 1
|
|
91
|
+
- **SEC-001**: Security Requirement 1
|
|
92
|
+
- **[3 LETTERS]-001**: Other Requirement 1
|
|
93
|
+
- **CON-001**: Constraint 1
|
|
94
|
+
- **GUD-001**: Guideline 1
|
|
95
|
+
- **PAT-001**: Pattern to follow 1
|
|
96
|
+
|
|
97
|
+
## 2. Implementation Steps
|
|
98
|
+
|
|
99
|
+
### Implementation Phase 1
|
|
100
|
+
|
|
101
|
+
- GOAL-001: [Describe the goal of this phase, e.g., "Implement feature X", "Refactor module Y", etc.]
|
|
102
|
+
|
|
103
|
+
| Task ID | Description | Completed | Date |
|
|
104
|
+
|------|-------------|-----------|------|
|
|
105
|
+
| [P1-T1] | Description of task 1 | ✅ | 2025-04-25 |
|
|
106
|
+
| [P1-T2] | Description of task 2 | | |
|
|
107
|
+
| [P1-T3] | Description of task 3 | | |
|
|
108
|
+
|
|
109
|
+
### Implementation Phase 2
|
|
110
|
+
|
|
111
|
+
- GOAL-002: [Describe the goal of this phase, e.g., "Implement feature X", "Refactor module Y", etc.]
|
|
112
|
+
|
|
113
|
+
| Task ID | Description | Completed | Date |
|
|
114
|
+
|------|-------------|-----------|------|
|
|
115
|
+
| [P2-T1] | Description of task 4 | | |
|
|
116
|
+
| [P2-T2] | Description of task 5 | | |
|
|
117
|
+
| [P2-T3] | Description of task 6 | | |
|
|
118
|
+
|
|
119
|
+
## 3. Alternatives
|
|
120
|
+
|
|
121
|
+
[A bullet point list of any alternative approaches that were considered and why they were not chosen. This helps to provide context and rationale for the chosen approach.]
|
|
122
|
+
|
|
123
|
+
- **ALT-001**: Alternative approach 1
|
|
124
|
+
- **ALT-002**: Alternative approach 2
|
|
125
|
+
|
|
126
|
+
## 4. Dependencies
|
|
127
|
+
|
|
128
|
+
[List any dependencies that need to be addressed, such as libraries, frameworks, or other components that the plan relies on.]
|
|
129
|
+
|
|
130
|
+
- **DEP-001**: Dependency 1
|
|
131
|
+
- **DEP-002**: Dependency 2
|
|
132
|
+
|
|
133
|
+
## 5. Files
|
|
134
|
+
|
|
135
|
+
[List the files that will be affected by the feature or refactoring task.]
|
|
136
|
+
|
|
137
|
+
- **FILE-001**: Description of file 1
|
|
138
|
+
- **FILE-002**: Description of file 2
|
|
139
|
+
|
|
140
|
+
## 6. Testing
|
|
141
|
+
|
|
142
|
+
[List the tests that need to be implemented to verify the feature or refactoring task.]
|
|
143
|
+
|
|
144
|
+
- **TEST-001**: Description of test 1
|
|
145
|
+
- **TEST-002**: Description of test 2
|
|
146
|
+
|
|
147
|
+
## 7. Risks & Assumptions
|
|
148
|
+
|
|
149
|
+
[List any risks or assumptions related to the implementation of the plan.]
|
|
150
|
+
|
|
151
|
+
- **RISK-001**: Risk 1
|
|
152
|
+
- **ASSUMPTION-001**: Assumption 1
|
|
153
|
+
|
|
154
|
+
## 8. Related Specifications / Further Reading
|
|
155
|
+
|
|
156
|
+
[Link to related spec 1]
|
|
157
|
+
[Link to relevant external documentation]
|
|
158
|
+
```
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
---
|
|
2
|
+
agent: 'agent'
|
|
3
|
+
description: 'Create time-boxed technical spike documents for researching and resolving critical development decisions before implementation.'
|
|
4
|
+
tools: ['execute/getTerminalOutput', 'execute/runInTerminal', 'read/terminalLastCommand', 'read/terminalSelection', 'execute/createAndRunTask', 'execute/getTaskOutput', 'execute/runTask', 'edit', 'search', 'vscode/extensions', 'search/usages', 'vscode/vscodeAPI', 'read/problems', 'search/changes', 'execute/testFailure', 'vscode/openSimpleBrowser', 'web/fetch', 'web/githubRepo', 'todo', 'search']
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Create Technical Spike Document
|
|
8
|
+
|
|
9
|
+
Create time-boxed technical spike documents for researching critical questions that must be answered before development can proceed. Each spike focuses on a specific technical decision with clear deliverables and timelines.
|
|
10
|
+
|
|
11
|
+
## Document Structure
|
|
12
|
+
|
|
13
|
+
Create individual files in `${input:FolderPath|docs/spikes}` directory. Name each file using the pattern: `[category]-[short-description]-spike.md` (e.g., `api-copilot-integration-spike.md`, `performance-realtime-audio-spike.md`).
|
|
14
|
+
|
|
15
|
+
```md
|
|
16
|
+
---
|
|
17
|
+
title: "${input:SpikeTitle}"
|
|
18
|
+
category: "${input:Category|Technical}"
|
|
19
|
+
status: "🔴 Not Started"
|
|
20
|
+
priority: "${input:Priority|High}"
|
|
21
|
+
timebox: "${input:Timebox|1 week}"
|
|
22
|
+
created: [YYYY-MM-DD]
|
|
23
|
+
updated: [YYYY-MM-DD]
|
|
24
|
+
owner: "${input:Owner}"
|
|
25
|
+
tags: ["technical-spike", "${input:Category|technical}", "research"]
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
# ${input:SpikeTitle}
|
|
29
|
+
|
|
30
|
+
## Summary
|
|
31
|
+
|
|
32
|
+
**Spike Objective:** [Clear, specific question or decision that needs resolution]
|
|
33
|
+
|
|
34
|
+
**Why This Matters:** [Impact on development/architecture decisions]
|
|
35
|
+
|
|
36
|
+
**Timebox:** [How much time allocated to this spike]
|
|
37
|
+
|
|
38
|
+
**Decision Deadline:** [When this must be resolved to avoid blocking development]
|
|
39
|
+
|
|
40
|
+
## Research Question(s)
|
|
41
|
+
|
|
42
|
+
**Primary Question:** [Main technical question that needs answering]
|
|
43
|
+
|
|
44
|
+
**Secondary Questions:**
|
|
45
|
+
|
|
46
|
+
- [Related question 1]
|
|
47
|
+
- [Related question 2]
|
|
48
|
+
- [Related question 3]
|
|
49
|
+
|
|
50
|
+
## Investigation Plan
|
|
51
|
+
|
|
52
|
+
### Research Tasks
|
|
53
|
+
|
|
54
|
+
- [ ] [Specific research task 1]
|
|
55
|
+
- [ ] [Specific research task 2]
|
|
56
|
+
- [ ] [Specific research task 3]
|
|
57
|
+
- [ ] [Create proof of concept/prototype]
|
|
58
|
+
- [ ] [Document findings and recommendations]
|
|
59
|
+
|
|
60
|
+
### Success Criteria
|
|
61
|
+
|
|
62
|
+
**This spike is complete when:**
|
|
63
|
+
|
|
64
|
+
- [ ] [Specific criteria 1]
|
|
65
|
+
- [ ] [Specific criteria 2]
|
|
66
|
+
- [ ] [Clear recommendation documented]
|
|
67
|
+
- [ ] [Proof of concept completed (if applicable)]
|
|
68
|
+
|
|
69
|
+
## Technical Context
|
|
70
|
+
|
|
71
|
+
**Related Components:** [List system components affected by this decision]
|
|
72
|
+
|
|
73
|
+
**Dependencies:** [What other spikes or decisions depend on resolving this]
|
|
74
|
+
|
|
75
|
+
**Constraints:** [Known limitations or requirements that affect the solution]
|
|
76
|
+
|
|
77
|
+
## Research Findings
|
|
78
|
+
|
|
79
|
+
### Investigation Results
|
|
80
|
+
|
|
81
|
+
[Document research findings, test results, and evidence gathered]
|
|
82
|
+
|
|
83
|
+
### Prototype/Testing Notes
|
|
84
|
+
|
|
85
|
+
[Results from any prototypes, spikes, or technical experiments]
|
|
86
|
+
|
|
87
|
+
### External Resources
|
|
88
|
+
|
|
89
|
+
- [Link to relevant documentation]
|
|
90
|
+
- [Link to API references]
|
|
91
|
+
- [Link to community discussions]
|
|
92
|
+
- [Link to examples/tutorials]
|
|
93
|
+
|
|
94
|
+
## Decision
|
|
95
|
+
|
|
96
|
+
### Recommendation
|
|
97
|
+
|
|
98
|
+
[Clear recommendation based on research findings]
|
|
99
|
+
|
|
100
|
+
### Rationale
|
|
101
|
+
|
|
102
|
+
[Why this approach was chosen over alternatives]
|
|
103
|
+
|
|
104
|
+
### Implementation Notes
|
|
105
|
+
|
|
106
|
+
[Key considerations for implementation]
|
|
107
|
+
|
|
108
|
+
### Follow-up Actions
|
|
109
|
+
|
|
110
|
+
- [ ] [Action item 1]
|
|
111
|
+
- [ ] [Action item 2]
|
|
112
|
+
- [ ] [Update architecture documents]
|
|
113
|
+
- [ ] [Create implementation tasks]
|
|
114
|
+
|
|
115
|
+
## Status History
|
|
116
|
+
|
|
117
|
+
| Date | Status | Notes |
|
|
118
|
+
| ------ | -------------- | -------------------------- |
|
|
119
|
+
| [Date] | 🔴 Not Started | Spike created and scoped |
|
|
120
|
+
| [Date] | 🟡 In Progress | Research commenced |
|
|
121
|
+
| [Date] | 🟢 Complete | [Resolution summary] |
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
_Last updated: [Date] by [Name]_
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Categories for Technical Spikes
|
|
129
|
+
|
|
130
|
+
### API Integration
|
|
131
|
+
|
|
132
|
+
- Third-party API capabilities and limitations
|
|
133
|
+
- Integration patterns and authentication
|
|
134
|
+
- Rate limits and performance characteristics
|
|
135
|
+
|
|
136
|
+
### Architecture & Design
|
|
137
|
+
|
|
138
|
+
- System architecture decisions
|
|
139
|
+
- Design pattern applicability
|
|
140
|
+
- Component interaction models
|
|
141
|
+
|
|
142
|
+
### Performance & Scalability
|
|
143
|
+
|
|
144
|
+
- Performance requirements and constraints
|
|
145
|
+
- Scalability bottlenecks and solutions
|
|
146
|
+
- Resource utilization patterns
|
|
147
|
+
|
|
148
|
+
### Platform & Infrastructure
|
|
149
|
+
|
|
150
|
+
- Platform capabilities and limitations
|
|
151
|
+
- Infrastructure requirements
|
|
152
|
+
- Deployment and hosting considerations
|
|
153
|
+
|
|
154
|
+
### Security & Compliance
|
|
155
|
+
|
|
156
|
+
- Security requirements and implementations
|
|
157
|
+
- Compliance constraints
|
|
158
|
+
- Authentication and authorization approaches
|
|
159
|
+
|
|
160
|
+
### User Experience
|
|
161
|
+
|
|
162
|
+
- User interaction patterns
|
|
163
|
+
- Accessibility requirements
|
|
164
|
+
- Interface design decisions
|
|
165
|
+
|
|
166
|
+
## File Naming Conventions
|
|
167
|
+
|
|
168
|
+
Use descriptive, kebab-case names that indicate the category and specific unknown:
|
|
169
|
+
|
|
170
|
+
**API/Integration Examples:**
|
|
171
|
+
|
|
172
|
+
- `api-copilot-chat-integration-spike.md`
|
|
173
|
+
- `api-azure-speech-realtime-spike.md`
|
|
174
|
+
- `api-vscode-extension-capabilities-spike.md`
|
|
175
|
+
|
|
176
|
+
**Performance Examples:**
|
|
177
|
+
|
|
178
|
+
- `performance-audio-processing-latency-spike.md`
|
|
179
|
+
- `performance-extension-host-limitations-spike.md`
|
|
180
|
+
- `performance-webrtc-reliability-spike.md`
|
|
181
|
+
|
|
182
|
+
**Architecture Examples:**
|
|
183
|
+
|
|
184
|
+
- `architecture-voice-pipeline-design-spike.md`
|
|
185
|
+
- `architecture-state-management-spike.md`
|
|
186
|
+
- `architecture-error-handling-strategy-spike.md`
|
|
187
|
+
|
|
188
|
+
## Best Practices for AI Agents
|
|
189
|
+
|
|
190
|
+
1. **One Question Per Spike:** Each document focuses on a single technical decision or research question
|
|
191
|
+
|
|
192
|
+
2. **Time-Boxed Research:** Define specific time limits and deliverables for each spike
|
|
193
|
+
|
|
194
|
+
3. **Evidence-Based Decisions:** Require concrete evidence (tests, prototypes, documentation) before marking as complete
|
|
195
|
+
|
|
196
|
+
4. **Clear Recommendations:** Document specific recommendations and rationale for implementation
|
|
197
|
+
|
|
198
|
+
5. **Dependency Tracking:** Identify how spikes relate to each other and impact project decisions
|
|
199
|
+
|
|
200
|
+
6. **Outcome-Focused:** Every spike must result in an actionable decision or recommendation
|
|
201
|
+
|
|
202
|
+
## Research Strategy
|
|
203
|
+
|
|
204
|
+
### Phase 1: Information Gathering
|
|
205
|
+
|
|
206
|
+
1. **Search existing documentation** using search/fetch tools
|
|
207
|
+
2. **Analyze codebase** for existing patterns and constraints
|
|
208
|
+
3. **Research external resources** (APIs, libraries, examples)
|
|
209
|
+
|
|
210
|
+
### Phase 2: Validation & Testing
|
|
211
|
+
|
|
212
|
+
1. **Create focused prototypes** to test specific hypotheses
|
|
213
|
+
2. **Run targeted experiments** to validate assumptions
|
|
214
|
+
3. **Document test results** with supporting evidence
|
|
215
|
+
|
|
216
|
+
### Phase 3: Decision & Documentation
|
|
217
|
+
|
|
218
|
+
1. **Synthesize findings** into clear recommendations
|
|
219
|
+
2. **Document implementation guidance** for development team
|
|
220
|
+
3. **Create follow-up tasks** for implementation
|
|
221
|
+
|
|
222
|
+
## Tools Usage
|
|
223
|
+
|
|
224
|
+
- **search/searchResults:** Research existing solutions and documentation
|
|
225
|
+
- **fetch/githubRepo:** Analyze external APIs, libraries, and examples
|
|
226
|
+
- **codebase:** Understand existing system constraints and patterns
|
|
227
|
+
- **runTasks:** Execute prototypes and validation tests
|
|
228
|
+
- **editFiles:** Update research progress and findings
|
|
229
|
+
- **vscodeAPI:** Test VS Code extension capabilities and limitations
|
|
230
|
+
|
|
231
|
+
Focus on time-boxed research that resolves critical technical decisions and unblocks development progress.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: 'Prompt for creating Potential Feature Document ("PFD") for new features.'
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Potential Feature Prompt
|
|
6
|
+
|
|
7
|
+
## Goal
|
|
8
|
+
|
|
9
|
+
Act as an expert Product Manager for a large-scale SaaS platform. Your primary responsibility is to take a high-level idea and create a detailed potential feature document ("PFD"). This preliminary document will serve as the single source of truth which will later be used to develop detailed user stories, technical specifications, and implementation plans.
|
|
10
|
+
|
|
11
|
+
Review the user's request for a new feature and the parent Epic, and generate a thorough PFD. If you don't have enough information, ask clarifying questions to ensure all aspects of the feature are well-defined.
|
|
12
|
+
|
|
13
|
+
## Output Format
|
|
14
|
+
|
|
15
|
+
The output should be a complete PFD in Markdown format, saved to ${file}. There is a template already created.
|
|
16
|
+
|
|
17
|
+
### PFD Structure
|
|
18
|
+
|
|
19
|
+
You can find a complete template at `docs/features/potential/template.md`
|