@houseofwolvesllc/claude-scrum-skill 1.7.0 → 1.7.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/README.md +20 -12
- package/package.json +1 -1
- package/skills/project-orchestrate/SKILL.md +7 -21
package/README.md
CHANGED
|
@@ -60,7 +60,23 @@ PRD (optional) --> /project-orchestrate
|
|
|
60
60
|
|
|
61
61
|
## Installation
|
|
62
62
|
|
|
63
|
-
###
|
|
63
|
+
### npm (recommended)
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
# Global install — available in all projects
|
|
67
|
+
npm install -g @houseofwolvesllc/claude-scrum-skill
|
|
68
|
+
|
|
69
|
+
# Local install — this project only
|
|
70
|
+
npm install @houseofwolvesllc/claude-scrum-skill
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Global install copies skills to `~/.claude/skills/`. Local install copies them to `<project>/.claude/skills/` and adds `.claude-scrum-skill` to your `.gitignore`.
|
|
74
|
+
|
|
75
|
+
Skills surface in Claude Code with their plain names: `/project-scaffold`, `/project-orchestrate`, `/sprint-plan`, etc.
|
|
76
|
+
|
|
77
|
+
> **Heads-up on re-installs:** the postinstall script overwrites every file under `<install-dir>/skills/` with the package's shipped version. If you've customized `<install-dir>/skills/shared/config.json` (e.g., changed `paths.specs` or `paths.adr`), back it up before re-running `npm install` and restore your values afterward. Skill files outside the shipped set are left alone — only files that exist in the package are overwritten.
|
|
78
|
+
|
|
79
|
+
### Claude Code Plugin (alternative)
|
|
64
80
|
|
|
65
81
|
```
|
|
66
82
|
/plugin marketplace add houseofwolvesllc/claudescrumskill
|
|
@@ -73,22 +89,14 @@ This installs all skills as a native Claude Code plugin with automatic updates.
|
|
|
73
89
|
/plugin marketplace update
|
|
74
90
|
```
|
|
75
91
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
```bash
|
|
79
|
-
# Global install — available in all projects
|
|
80
|
-
npm install -g @houseofwolvesllc/claude-scrum-skill
|
|
81
|
-
|
|
82
|
-
# Local install — this project only
|
|
83
|
-
npm install @houseofwolvesllc/claude-scrum-skill
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
Global install copies skills to `~/.claude/skills/`. Local install copies them to `<project>/.claude/skills/` and adds `.claude-scrum-skill` to your `.gitignore`.
|
|
92
|
+
> **Important difference from npm install:** Claude Code namespaces plugin-installed skills with the marketplace identifier to prevent collisions between plugins. Skills surface as `/@houseofwolvesllc/project-scaffold`, `/@houseofwolvesllc/project-orchestrate`, etc. — **not** as `/project-scaffold` and `/project-orchestrate`. If you prefer the plain names, use the npm install path above; if you prefer the marketplace UI for discovery and updates, use this path and live with the namespace.
|
|
87
93
|
|
|
88
94
|
### Manual
|
|
89
95
|
|
|
90
96
|
Clone the repo and copy the `skills/` contents into `~/.claude/skills/` (global) or `<project>/.claude/skills/` (per-project). All skill directories must be siblings under the same parent, with `shared/` alongside them — skills reference `../shared/references/` via relative paths.
|
|
91
97
|
|
|
98
|
+
The manual path produces the same plain-name UX as npm install (both bypass the plugin layer's namespacing), but you forfeit automatic updates.
|
|
99
|
+
|
|
92
100
|
> **Note:** After installing, restart Claude Code for the skills to become available.
|
|
93
101
|
|
|
94
102
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@houseofwolvesllc/claude-scrum-skill",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "Claude Code skills for scrum project management — PRD to production release pipeline with project scaffolding, sprint planning, status tracking, sprint releases, full-project emulation testing, autonomous orchestration, and project cleanup.",
|
|
5
5
|
"bin": {},
|
|
6
6
|
"publishConfig": {
|
|
@@ -42,33 +42,19 @@ The following actions are NEVER authorized:
|
|
|
42
42
|
|
|
43
43
|
## Default Operating Mode
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
Run autonomously on invocation. Standing Authorizations cover the normal lifecycle — proceed under them without asking.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
**No pre-flight audits.** Don't list concerns and present a menu of options before starting. Pick the spec's literal intent and go. Surface defects in execution output as you encounter them, not as pre-execution gates. Asking "which option do you want?" before executing is itself a violation of autonomous mode.
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
- **All phases run.** Phase 2 (Emulation Hardening) and Phase 3 (Project Cleanup) are **mandatory** quality gates — they execute even when Phase 1 produces a small or clean change set. Skipping them defeats the orchestration's quality model.
|
|
51
|
-
- **State file handling is automatic — never prompt the user.**
|
|
52
|
-
- `Status: running` → resume from the recorded position.
|
|
53
|
-
- `Status: paused` → resume from the recorded position. The original pause cause should already be addressed before the user re-invokes; if it isn't, the run will pause again on the same issue and surface it fresh.
|
|
54
|
-
- `Status: completed` → rename the prior file to `orchestration-state.previous.md` and start a fresh run.
|
|
55
|
-
- No file → initialize a new state file.
|
|
56
|
-
- **Scaffolding decisions fire per their own trigger logic.** Two-pass mode and design-spike epic injection are governed by `project-scaffold/SKILL.md` → Mode Detection and Design-Spike Epic. The orchestrator does NOT add a separate confirmation prompt on top of those triggers — if the scaffold spec says inject, the orchestrator lets it inject.
|
|
49
|
+
**Phase 2 (Emulation) and Phase 3 (Cleanup) always run.** Mandatory on every orchestration regardless of how small or clean the Phase 1 change set looks. For projects with no traditional toolchain (e.g., a markdown-only repo), Phase 3 reports SKIP/PASS — that is the correct outcome, not a reason to omit the phase.
|
|
57
50
|
|
|
58
|
-
|
|
51
|
+
**State file is automatic.** `Status: running` or `paused` → resume from the recorded position. `Status: completed` → rename to `orchestration-state.previous.md` and start a fresh run. Missing → initialize a new file. Never prompt.
|
|
59
52
|
|
|
60
|
-
|
|
53
|
+
**Scaffolding decisions fire per their own trigger logic.** Two-pass mode and design-spike epic injection live in `project-scaffold/SKILL.md` (Mode Detection, Design-Spike Epic). The orchestrator does NOT add a separate confirmation prompt on top of those triggers.
|
|
61
54
|
|
|
62
|
-
|
|
63
|
-
2. **Critical findings in the review gate.** The `review` persona's recommendation of `block` / `revert` pauses orchestration so the user can decide how to proceed (per Step 5b).
|
|
64
|
-
3. **3rd consecutive hardening run still produces critical/warning findings.** The safety valve at Step 13 — three rounds of automated hardening without convergence suggests the remaining issues need human triage.
|
|
65
|
-
4. **Rate-limit exhaustion.** After exponential-backoff retries fail (per Error Handling → Rate Limiting), pause rather than burn through quota.
|
|
55
|
+
**Pause only on four real safety issues:** unresolvable merge conflict (Step 5c, Error Handling → Merge Conflicts); critical review/emulation finding (Step 5b, `block`/`revert` recommendation); 3rd consecutive hardening run still dirty (Step 13 safety valve); rate-limit exhaustion (Error Handling → Rate Limiting). Nothing else.
|
|
66
56
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
### Overriding the default
|
|
70
|
-
|
|
71
|
-
If the user explicitly requests interactive mode for the current run (e.g., "let me approve each sprint plan", "pause between phases", "stop after Phase 1"), honor that for the current invocation. The skill's default remains autonomous; the override is per-invocation and does not change the default.
|
|
57
|
+
**Per-invocation overrides are honored** when the user explicitly asks for interactive mode for the current run ("pause between phases", "let me approve each sprint", etc.). The default remains autonomous.
|
|
72
58
|
|
|
73
59
|
---
|
|
74
60
|
|