@danmoisan/drm-copilot-mcp 1.0.21 → 1.0.22
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/out/mcp-server.js +1624 -190
- package/package.json +1 -1
- package/resources/claude-customizations/.claude/agent-memory/epic-orchestrator/MEMORY.md +5 -1
- package/resources/claude-customizations/.claude/agent-memory/epic-orchestrator/feedback_commit_push_memory_before_pr.md +48 -2
- package/resources/claude-customizations/.claude/agent-memory/epic-orchestrator/feedback_no_sendmessage_tool.md +35 -0
- package/resources/claude-customizations/.claude/agent-memory/epic-orchestrator/feedback_worktree_isolation_branches_from_main.md +45 -0
- package/resources/claude-customizations/.claude/agents/parallel-orchestrator.md +238 -0
- package/resources/claude-customizations/.claude/agents/parallel-planner.md +149 -0
- package/resources/claude-customizations/.claude/hooks/enforce-epic-invocation-origin.ps1 +23 -11
- package/resources/claude-customizations/.claude/hooks/enforce-parallel-abandon-gate.ps1 +259 -0
- package/resources/claude-customizations/.claude/hooks/enforce-parallel-cohort-barrier.ps1 +499 -0
- package/resources/claude-customizations/.claude/hooks/enforce-parallel-drift-gate-helpers.ps1 +302 -0
- package/resources/claude-customizations/.claude/hooks/enforce-parallel-drift-gate.ps1 +359 -0
- package/resources/claude-customizations/.claude/hooks/enforce-parallel-worktree-removal-gate.ps1 +244 -0
- package/resources/claude-customizations/.claude/lib/blast-radius/BlastRadius.psm1 +379 -0
- package/resources/claude-customizations/.claude/lib/blast-radius/BlastRadiusConfig.psm1 +491 -0
- package/resources/claude-customizations/.claude/lib/blast-radius/BlastRadiusExtraction.psm1 +490 -0
- package/resources/claude-customizations/.claude/lib/blast-radius/BlastRadiusGlob.psm1 +429 -0
- package/resources/claude-customizations/.claude/lib/blast-radius/BlastRadiusValidation.psm1 +366 -0
- package/resources/claude-customizations/.claude/rules/parallel-orchestration.md +184 -0
- package/resources/claude-customizations/.claude/settings.json +25 -0
- package/resources/claude-customizations/.claude/skills/parallel-add/SKILL.md +148 -0
- package/resources/claude-customizations/.claude/skills/parallel-close/SKILL.md +93 -0
- package/resources/claude-customizations/.claude/skills/parallel-orchestrate/SKILL.md +960 -0
- package/resources/claude-customizations/.claude/skills/parallel-plan/SKILL.md +420 -0
- package/resources/claude-customizations/.claude/skills/parallel-remove/SKILL.md +176 -0
- package/resources/claude-customizations/.claude/skills/parallel-run/SKILL.md +56 -0
- package/resources/claude-customizations/pack-manifests/core.json +19 -1
- package/resources/codex-and-agents-customizations/.codex/config.toml +1 -1
- package/resources/config/orchestration-routing.json +22 -0
- package/resources/powershell/PoshQC/settings/pester.runsettings.psd1 +29 -0
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
".claude/agents/legacy-parity-analyst.md",
|
|
15
15
|
".claude/agents/migration-coverage-reviewer.md",
|
|
16
16
|
".claude/agents/orchestrator.md",
|
|
17
|
+
".claude/agents/parallel-orchestrator.md",
|
|
18
|
+
".claude/agents/parallel-planner.md",
|
|
17
19
|
".claude/agents/prd-feature.md",
|
|
18
20
|
".claude/agents/requirements-reconciler.md",
|
|
19
21
|
".claude/agents/runtime-characterization-analyst.md",
|
|
@@ -31,6 +33,11 @@
|
|
|
31
33
|
".claude/hooks/enforce-feature-folder-order.ps1",
|
|
32
34
|
".claude/hooks/enforce-model-routing-receipt.ps1",
|
|
33
35
|
".claude/hooks/enforce-orchestration-preimplementation-gate.ps1",
|
|
36
|
+
".claude/hooks/enforce-parallel-abandon-gate.ps1",
|
|
37
|
+
".claude/hooks/enforce-parallel-cohort-barrier.ps1",
|
|
38
|
+
".claude/hooks/enforce-parallel-drift-gate.ps1",
|
|
39
|
+
".claude/hooks/enforce-parallel-drift-gate-helpers.ps1",
|
|
40
|
+
".claude/hooks/enforce-parallel-worktree-removal-gate.ps1",
|
|
34
41
|
".claude/hooks/enforce-pr-author-skill.epic-base-branch.ps1",
|
|
35
42
|
".claude/hooks/enforce-pr-author-skill.ps1",
|
|
36
43
|
".claude/hooks/enforce-prd-feature-before-planner.ps1",
|
|
@@ -77,6 +84,12 @@
|
|
|
77
84
|
".claude/skills/identify-session-id/SKILL.md",
|
|
78
85
|
".claude/skills/make-skill-template/SKILL.md",
|
|
79
86
|
".claude/skills/orchestrate/SKILL.md",
|
|
87
|
+
".claude/skills/parallel-add/SKILL.md",
|
|
88
|
+
".claude/skills/parallel-close/SKILL.md",
|
|
89
|
+
".claude/skills/parallel-orchestrate/SKILL.md",
|
|
90
|
+
".claude/skills/parallel-plan/SKILL.md",
|
|
91
|
+
".claude/skills/parallel-remove/SKILL.md",
|
|
92
|
+
".claude/skills/parallel-run/SKILL.md",
|
|
80
93
|
".claude/skills/policy-audit-template-usage/SKILL.md",
|
|
81
94
|
".claude/skills/policy-compliance-order/SKILL.md",
|
|
82
95
|
".claude/skills/pr-author/SKILL.md",
|
|
@@ -93,6 +106,11 @@
|
|
|
93
106
|
".claude/skills/update-status/SKILL.md",
|
|
94
107
|
".claude/lib/model-routing/ModelRouting.psm1",
|
|
95
108
|
".claude/lib/orchestrator-state/OrchestratorState.psm1",
|
|
96
|
-
".claude/lib/orchestrator-state/OrchestratorStateCompletion.psm1"
|
|
109
|
+
".claude/lib/orchestrator-state/OrchestratorStateCompletion.psm1",
|
|
110
|
+
".claude/lib/blast-radius/BlastRadiusExtraction.psm1",
|
|
111
|
+
".claude/lib/blast-radius/BlastRadiusGlob.psm1",
|
|
112
|
+
".claude/lib/blast-radius/BlastRadiusConfig.psm1",
|
|
113
|
+
".claude/lib/blast-radius/BlastRadiusValidation.psm1",
|
|
114
|
+
".claude/lib/blast-radius/BlastRadius.psm1"
|
|
97
115
|
]
|
|
98
116
|
}
|
|
@@ -97,6 +97,28 @@
|
|
|
97
97
|
"validate_orchestration_artifacts"
|
|
98
98
|
]
|
|
99
99
|
},
|
|
100
|
+
"parallel": {
|
|
101
|
+
"description": "Parallel path for scheduling independent items into blast-radius cohorts across parallel worktrees; each item PRs to main independently with no integration branch.",
|
|
102
|
+
"requires_pr_gate": false,
|
|
103
|
+
"required_agents": [
|
|
104
|
+
"orchestrator",
|
|
105
|
+
"pr-author"
|
|
106
|
+
],
|
|
107
|
+
"required_skills": [
|
|
108
|
+
"parallel-orchestrate",
|
|
109
|
+
"orchestrate",
|
|
110
|
+
"feature-promotion-lifecycle",
|
|
111
|
+
"atomic-plan-contract",
|
|
112
|
+
"acceptance-criteria-tracking",
|
|
113
|
+
"evidence-and-timestamp-conventions",
|
|
114
|
+
"pr-context-artifacts",
|
|
115
|
+
"pr-base-branch-merge-base"
|
|
116
|
+
],
|
|
117
|
+
"required_mcp_tools": [
|
|
118
|
+
"collect_pr_context",
|
|
119
|
+
"validate_orchestration_artifacts"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
100
122
|
"epic": {
|
|
101
123
|
"description": "Epic path for scheduling a dependency graph of child features across parallel worktrees with fan-in via a shared integration branch.",
|
|
102
124
|
"requires_pr_gate": true,
|
|
@@ -114,6 +114,35 @@
|
|
|
114
114
|
# changed production surface is not excluded from coverage.
|
|
115
115
|
'.codex/hooks/enforce-epic-child-worktree-binding.ps1'
|
|
116
116
|
'.codex/hooks/enforce-epic-planning-only.ps1'
|
|
117
|
+
# Issue #447 added the .claude-resident PowerShell blast-radius library, the
|
|
118
|
+
# two-language mirror of scripts/dev_tools/compute_blast_radius.py and its
|
|
119
|
+
# helper modules. The set is split across five files only to satisfy the
|
|
120
|
+
# 500-line limit; measured here so no new production module is excluded from
|
|
121
|
+
# coverage.
|
|
122
|
+
'.claude/lib/blast-radius/BlastRadiusExtraction.psm1'
|
|
123
|
+
'.claude/lib/blast-radius/BlastRadiusGlob.psm1'
|
|
124
|
+
'.claude/lib/blast-radius/BlastRadiusConfig.psm1'
|
|
125
|
+
'.claude/lib/blast-radius/BlastRadiusValidation.psm1'
|
|
126
|
+
'.claude/lib/blast-radius/BlastRadius.psm1'
|
|
127
|
+
# Issue #440 added the two parallel enforcement hooks (the Layer 1 cohort
|
|
128
|
+
# barrier and the worktree removal gate) and extended the invocation-origin
|
|
129
|
+
# hook with the parallel-agent family; measured here so no new or changed
|
|
130
|
+
# production hook is excluded from coverage.
|
|
131
|
+
'.claude/hooks/enforce-parallel-cohort-barrier.ps1'
|
|
132
|
+
'.claude/hooks/enforce-parallel-worktree-removal-gate.ps1'
|
|
133
|
+
'.claude/hooks/enforce-epic-invocation-origin.ps1'
|
|
134
|
+
# Issue #446 added this Layer-1 parallel drift-gate PreToolUse hook; measured here so
|
|
135
|
+
# the new production hook is not excluded from coverage.
|
|
136
|
+
'.claude/hooks/enforce-parallel-drift-gate.ps1'
|
|
137
|
+
# Issue #446 remediation cycle 1 split the seven shape-and-derivation helpers out of
|
|
138
|
+
# that hook into this dot-sourced sibling module; measured here so the Coverage
|
|
139
|
+
# Exclusion Policy's no-production-file-excluded rule still holds after the split.
|
|
140
|
+
'.claude/hooks/enforce-parallel-drift-gate-helpers.ps1'
|
|
141
|
+
# Issue #442 added this PreToolUse abandon-gate hook, which guards the destructive
|
|
142
|
+
# parallel abandon disposition; measured here so the new production hook is not
|
|
143
|
+
# excluded from coverage. The test suite dot-sources the file (guarded body) so
|
|
144
|
+
# line attribution is valid.
|
|
145
|
+
'.claude/hooks/enforce-parallel-abandon-gate.ps1'
|
|
117
146
|
)
|
|
118
147
|
# Optional: don't fail the run on coverage percentage
|
|
119
148
|
CoveragePercentTarget = 0
|