@houseofwolvesllc/claude-scrum-skill 1.5.1 ā 1.7.0
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 +331 -230
- package/bin/install.js +31 -0
- package/package.json +4 -1
- package/skills/project-cleanup/SKILL.md +2 -2
- package/skills/project-emulate/SKILL.md +1 -1
- package/skills/project-orchestrate/SKILL.md +317 -60
- package/skills/project-scaffold/SKILL.md +711 -5
- package/skills/project-spec/SKILL.md +60 -0
- package/skills/project-spec/templates/spec-template.md +63 -0
- package/skills/shared/config.json +19 -0
- package/skills/{project-scaffold ā shared}/references/CONVENTIONS.md +60 -0
- package/skills/shared/references/PERSONAS.md +270 -0
- package/skills/shared/references/PROVIDERS.md +471 -0
- package/skills/shared/templates/ADR-template.md +36 -0
- package/skills/shared/templates/CONTEXT-template.md +96 -0
- package/skills/sprint-plan/SKILL.md +124 -6
- package/skills/sprint-release/SKILL.md +118 -6
- package/skills/sprint-status/SKILL.md +60 -6
package/bin/install.js
CHANGED
|
@@ -27,6 +27,7 @@ if (IS_GLOBAL) {
|
|
|
27
27
|
|
|
28
28
|
const skills = [
|
|
29
29
|
'project-scaffold',
|
|
30
|
+
'project-spec',
|
|
30
31
|
'sprint-plan',
|
|
31
32
|
'sprint-status',
|
|
32
33
|
'sprint-release',
|
|
@@ -53,6 +54,14 @@ console.log(`\nš Installing claude-scrum-skill (${location})...\n`);
|
|
|
53
54
|
|
|
54
55
|
fs.mkdirSync(skillsDir, { recursive: true });
|
|
55
56
|
|
|
57
|
+
// Copy shared references (not a skill, but needed by skills at ../shared/)
|
|
58
|
+
const sharedSrc = path.join(SOURCE_DIR, 'shared');
|
|
59
|
+
const sharedDest = path.join(skillsDir, 'shared');
|
|
60
|
+
if (fs.existsSync(sharedSrc)) {
|
|
61
|
+
copyRecursive(sharedSrc, sharedDest);
|
|
62
|
+
console.log(' š shared references');
|
|
63
|
+
}
|
|
64
|
+
|
|
56
65
|
let installed = 0;
|
|
57
66
|
for (const skill of skills) {
|
|
58
67
|
const src = path.join(SOURCE_DIR, skill);
|
|
@@ -67,6 +76,28 @@ for (const skill of skills) {
|
|
|
67
76
|
}
|
|
68
77
|
}
|
|
69
78
|
|
|
79
|
+
// Add .claude-scrum-skill to .gitignore if not already present (local install only)
|
|
80
|
+
if (!IS_GLOBAL) {
|
|
81
|
+
const projectRoot = path.resolve(skillsDir, '..', '..');
|
|
82
|
+
const gitignorePath = path.join(projectRoot, '.gitignore');
|
|
83
|
+
const entry = '.claude-scrum-skill';
|
|
84
|
+
|
|
85
|
+
let needsAppend = true;
|
|
86
|
+
if (fs.existsSync(gitignorePath)) {
|
|
87
|
+
const contents = fs.readFileSync(gitignorePath, 'utf8');
|
|
88
|
+
needsAppend = !contents.split('\n').some(line => line.trim() === entry);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
if (needsAppend) {
|
|
92
|
+
const prefix = fs.existsSync(gitignorePath)
|
|
93
|
+
&& fs.readFileSync(gitignorePath, 'utf8').length > 0
|
|
94
|
+
&& !fs.readFileSync(gitignorePath, 'utf8').endsWith('\n')
|
|
95
|
+
? '\n' : '';
|
|
96
|
+
fs.appendFileSync(gitignorePath, `${prefix}${entry}\n`);
|
|
97
|
+
console.log(`\n š Added ${entry} to .gitignore`);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
70
101
|
console.log(`\n⨠Installed ${installed} skills to ${skillsDir}`);
|
|
71
102
|
console.log(' Restart Claude Code for the skills to become available.\n');
|
|
72
103
|
console.log(' Run /project-scaffold <prd-path> to get started.\n');
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@houseofwolvesllc/claude-scrum-skill",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
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
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
6
9
|
"scripts": {
|
|
7
10
|
"postinstall": "node bin/install.js"
|
|
8
11
|
},
|
|
@@ -12,7 +12,7 @@ Ensure the codebase is production-clean: builds without errors or warnings, pass
|
|
|
12
12
|
## Before You Start
|
|
13
13
|
|
|
14
14
|
1. Read the project's `CLAUDE.md` (if it exists) for project-specific rules. **CLAUDE.md overrides are authoritative** ā if a project rule conflicts with a best practice listed here, the project rule wins. Record any overrides you find so you can reference them when making decisions.
|
|
15
|
-
2. Read `../
|
|
15
|
+
2. Read `../shared/references/CONVENTIONS.md` for project management standards (if applicable).
|
|
16
16
|
3. **Terminology:** Always refer to milestones as **"epics"** in all user-facing text, summaries, and conversational output. The word "milestone" should only appear in GitHub API commands and code ā never in communication with the user.
|
|
17
17
|
4. Identify the project's language(s), framework(s), build system, linter, test runner, and coverage tool by reading `package.json`, `tsconfig.json`, `pyproject.toml`, `Cargo.toml`, `go.mod`, `Makefile`, or equivalent config files.
|
|
18
18
|
5. Confirm all required tooling is installed and runnable (`npm`, `npx`, `tsc`, `eslint`, `jest`/`vitest`/`pytest`/`go test`, etc.).
|
|
@@ -328,7 +328,7 @@ If `--fix` was active, verify that fixes didn't introduce new problems:
|
|
|
328
328
|
|
|
329
329
|
## Output
|
|
330
330
|
|
|
331
|
-
Save the cleanup report to `.claude/reports/cleanup-report/`. Create the directory if it doesn't exist.
|
|
331
|
+
Save the cleanup report to `.claude-scrum-skill/reports/cleanup-report/`. Create the directory if it doesn't exist.
|
|
332
332
|
|
|
333
333
|
### Report Structure
|
|
334
334
|
|
|
@@ -563,7 +563,7 @@ A clean table: Roles as rows, Actions as columns, cells showing ā
allowed /
|
|
|
563
563
|
|
|
564
564
|
## Output
|
|
565
565
|
|
|
566
|
-
Save the walkthrough results to the project .claude/reports. The output structure:
|
|
566
|
+
Save the walkthrough results to the project .claude-scrum-skill/reports. The output structure:
|
|
567
567
|
|
|
568
568
|
```
|
|
569
569
|
emulation-report/
|