@danmoisan/drm-copilot-mcp 1.0.27 → 1.1.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.
Files changed (42) hide show
  1. package/out/mcp-server.js +0 -1
  2. package/package.json +1 -1
  3. package/resources/claude-customizations/.claude/hooks/check-powershell-test-purity.ps1 +17 -21
  4. package/resources/claude-customizations/.claude/hooks/check-python-test-purity.ps1 +17 -19
  5. package/resources/claude-customizations/.claude/hooks/enforce-checkpoint-monotonic.ps1 +17 -19
  6. package/resources/claude-customizations/.claude/hooks/enforce-completion-consistency.ps1 +18 -19
  7. package/resources/claude-customizations/.claude/hooks/enforce-discovery-artifact-gate.ps1 +18 -19
  8. package/resources/claude-customizations/.claude/hooks/enforce-epic-invocation-origin.ps1 +54 -32
  9. package/resources/claude-customizations/.claude/hooks/enforce-epic-merge-gate.ps1 +64 -20
  10. package/resources/claude-customizations/.claude/hooks/enforce-epic-wave-barrier.ps1 +51 -22
  11. package/resources/claude-customizations/.claude/hooks/enforce-epic-worktree-removal-gate.ps1 +56 -19
  12. package/resources/claude-customizations/.claude/hooks/enforce-evidence-locations.ps1 +71 -28
  13. package/resources/claude-customizations/.claude/hooks/enforce-feature-folder-order.ps1 +68 -23
  14. package/resources/claude-customizations/.claude/hooks/enforce-mermaid-validation.ps1 +36 -24
  15. package/resources/claude-customizations/.claude/hooks/enforce-model-routing-receipt.ps1 +20 -22
  16. package/resources/claude-customizations/.claude/hooks/enforce-orchestration-preimplementation-gate-helpers.ps1 +349 -0
  17. package/resources/claude-customizations/.claude/hooks/enforce-orchestration-preimplementation-gate.ps1 +177 -20
  18. package/resources/claude-customizations/.claude/hooks/enforce-parallel-abandon-gate.ps1 +17 -20
  19. package/resources/claude-customizations/.claude/hooks/enforce-parallel-cohort-barrier-helpers.ps1 +278 -0
  20. package/resources/claude-customizations/.claude/hooks/enforce-parallel-cohort-barrier.ps1 +55 -271
  21. package/resources/claude-customizations/.claude/hooks/enforce-parallel-drift-gate.ps1 +57 -22
  22. package/resources/claude-customizations/.claude/hooks/enforce-parallel-worktree-removal-gate.ps1 +56 -19
  23. package/resources/claude-customizations/.claude/hooks/enforce-powershell-batch-budget.ps1 +70 -27
  24. package/resources/claude-customizations/.claude/hooks/enforce-pr-author-skill-helpers.ps1 +228 -0
  25. package/resources/claude-customizations/.claude/hooks/enforce-pr-author-skill.ps1 +68 -225
  26. package/resources/claude-customizations/.claude/hooks/enforce-prd-feature-before-planner.ps1 +161 -34
  27. package/resources/claude-customizations/.claude/hooks/enforce-promotion-mcp-only.ps1 +59 -22
  28. package/resources/claude-customizations/.claude/hooks/enforce-python-batch-budget.ps1 +70 -27
  29. package/resources/claude-customizations/.claude/hooks/validate-bash.ps1 +32 -18
  30. package/resources/claude-customizations/.claude/lib/blast-radius/BlastRadiusExtraction.psm1 +34 -60
  31. package/resources/claude-customizations/.claude/lib/blast-radius/BlastRadiusTokenShape.psm1 +187 -0
  32. package/resources/claude-customizations/.claude/lib/hook-payload/HookPayload.psm1 +494 -0
  33. package/resources/claude-customizations/.claude/rules/parallel-orchestration.md +125 -4
  34. package/resources/claude-customizations/.claude/skills/epic-plan/SKILL.md +27 -0
  35. package/resources/claude-customizations/.claude/skills/parallel-plan/SKILL.md +28 -0
  36. package/resources/claude-customizations/config/blast-radius.json +9 -3
  37. package/resources/claude-customizations/pack-manifests/core.json +5 -0
  38. package/resources/codex-and-agents-customizations/.codex/config.toml +1 -1
  39. package/resources/codex-and-agents-customizations/.codex/hooks/enforce-orchestration-preimplementation-gate-helpers.ps1 +349 -0
  40. package/resources/codex-and-agents-customizations/.codex/hooks/enforce-orchestration-preimplementation-gate.ps1 +123 -6
  41. package/resources/codex-and-agents-customizations/pack-manifests/core.json +1 -0
  42. package/resources/powershell/PoshQC/settings/pester.runsettings.psd1 +32 -1
@@ -129,6 +129,10 @@
129
129
  '.codex/hooks/enforce-evidence-locations.ps1'
130
130
  '.codex/hooks/enforce-checkpoint-monotonic.ps1'
131
131
  '.codex/hooks/enforce-orchestration-preimplementation-gate.ps1'
132
+ # Issue #539 extracted the command-branch pathspec classifier into this
133
+ # dot-sourced sibling for headroom; registered so the new production file stays
134
+ # in the coverage denominator per the Coverage Exclusion Policy.
135
+ '.codex/hooks/enforce-orchestration-preimplementation-gate-helpers.ps1'
132
136
  # Issue #415 remediation cycle 2 (R-COV): the detached-HEAD null-guard fix changed
133
137
  # these two Codex PreToolUse hooks. Both were absent from this list, so the changed
134
138
  # production surface was outside the coverage denominator. Measured here so the
@@ -137,7 +141,7 @@
137
141
  '.codex/hooks/enforce-epic-planning-only.ps1'
138
142
  # Issue #447 added the .claude-resident PowerShell blast-radius library, the
139
143
  # two-language mirror of scripts/dev_tools/compute_blast_radius.py and its
140
- # helper modules. The set is split across six files only to satisfy the
144
+ # helper modules. The set is split across seven files only to satisfy the
141
145
  # 500-line limit; measured here so no new production module is excluded from
142
146
  # coverage.
143
147
  # Issue #489 added BlastRadiusNormalization.psm1, which holds the
@@ -145,12 +149,20 @@
145
149
  # Resolve-BlastRadiusModule relocated out of the two modules that had run
146
150
  # out of headroom. The relocation moves already-measured lines, so the new
147
151
  # file is registered here to keep them in the coverage denominator.
152
+ # Issue #502 added BlastRadiusTokenShape.psm1, the seventh file. It holds the
153
+ # new placeholder-marker predicate plus Test-MultipleFeatureFolderSpan
154
+ # relocated out of BlastRadiusExtraction.psm1, which had two lines of
155
+ # headroom left. CodeCoverage.Path is an explicit per-file allow-list, so
156
+ # without this entry the new production module and the relocated
157
+ # already-measured lines would both sit outside the coverage denominator,
158
+ # which the Coverage Exclusion Policy forbids.
148
159
  '.claude/lib/blast-radius/BlastRadiusExtraction.psm1'
149
160
  '.claude/lib/blast-radius/BlastRadiusGlob.psm1'
150
161
  '.claude/lib/blast-radius/BlastRadiusConfig.psm1'
151
162
  '.claude/lib/blast-radius/BlastRadiusValidation.psm1'
152
163
  '.claude/lib/blast-radius/BlastRadius.psm1'
153
164
  '.claude/lib/blast-radius/BlastRadiusNormalization.psm1'
165
+ '.claude/lib/blast-radius/BlastRadiusTokenShape.psm1'
154
166
  # Issue #440 added the two parallel enforcement hooks (the Layer 1 cohort
155
167
  # barrier and the worktree removal gate) and extended the invocation-origin
156
168
  # hook with the parallel-agent family; measured here so no new or changed
@@ -179,6 +191,25 @@
179
191
  '.claude/lib/mermaid/MermaidLineScanner.psm1'
180
192
  '.claude/lib/mermaid/MermaidMarkdownFences.psm1'
181
193
  '.claude/lib/mermaid/MermaidValidation.psm1'
194
+ # Issue #501 fixed the PreToolUse payload transport and shape across the whole
195
+ # hook surface. CodeCoverage.Path is an explicit per-file allow-list, so the new
196
+ # shared payload module, the six hooks that were changed but never registered,
197
+ # and the two dot-sourced helper siblings extracted for headroom are registered
198
+ # here. Without them the changed production surface would sit outside the
199
+ # coverage denominator, which the Coverage Exclusion Policy forbids.
200
+ '.claude/lib/hook-payload/HookPayload.psm1'
201
+ '.claude/hooks/enforce-promotion-mcp-only.ps1'
202
+ '.claude/hooks/enforce-orchestration-preimplementation-gate.ps1'
203
+ # Issue #539 extracted the command-branch pathspec classifier into this
204
+ # dot-sourced sibling for headroom; registered so the new production file stays
205
+ # in the coverage denominator per the Coverage Exclusion Policy.
206
+ '.claude/hooks/enforce-orchestration-preimplementation-gate-helpers.ps1'
207
+ '.claude/hooks/enforce-evidence-locations.ps1'
208
+ '.claude/hooks/enforce-feature-folder-order.ps1'
209
+ '.claude/hooks/enforce-checkpoint-monotonic.ps1'
210
+ '.claude/hooks/enforce-prd-feature-before-planner.ps1'
211
+ '.claude/hooks/enforce-parallel-cohort-barrier-helpers.ps1'
212
+ '.claude/hooks/enforce-pr-author-skill-helpers.ps1'
182
213
  )
183
214
  # Optional: don't fail the run on coverage percentage
184
215
  CoveragePercentTarget = 0