murmur8 4.7.1 → 4.7.2
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 +1 -1
- package/package.json +1 -1
- package/src/init.js +8 -0
- package/src/update.js +19 -6
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Every refinement is linked to the run it came from, so the history of a feature
|
|
|
30
30
|
|
|
31
31
|
### Turning it up to 11
|
|
32
32
|
|
|
33
|
-
If you using the skill with Claude Code or Github Copilot, or via an npx command, you can run multiple of these pipelines at the same time, working independantly on features in parallel. The pipeline
|
|
33
|
+
If you using the skill with Claude Code or Github Copilot, or via an npx command, you can run multiple of these pipelines at the same time, working independantly on features in parallel. The pipeline looks at whats required and works out how multiple fetaures can be delivered at the same time withough Nigel 1, 2, and 3 treading on each others toes in the code base. The pipeline runs EXACTLY the same way... just mutiple of them at the same time!
|
|
34
34
|
|
|
35
35
|
## Quick Start
|
|
36
36
|
|
package/package.json
CHANGED
package/src/init.js
CHANGED
|
@@ -94,8 +94,10 @@ async function init() {
|
|
|
94
94
|
const businessContextSrc = path.join(PACKAGE_ROOT, '.business_context');
|
|
95
95
|
const businessContextDest = path.join(TARGET_DIR, '.business_context');
|
|
96
96
|
const skillSrc = path.join(PACKAGE_ROOT, 'SKILL.md');
|
|
97
|
+
const refineSkillSrc = path.join(PACKAGE_ROOT, 'REFINE_SKILL.md');
|
|
97
98
|
const claudeCommandsDir = path.join(TARGET_DIR, '.claude', 'commands');
|
|
98
99
|
const skillCommandDest = path.join(claudeCommandsDir, 'implement-feature.md');
|
|
100
|
+
const refineSkillCommandDest = path.join(claudeCommandsDir, 'refine-feature.md');
|
|
99
101
|
|
|
100
102
|
// Check if .blueprint already exists
|
|
101
103
|
if (fs.existsSync(blueprintDest)) {
|
|
@@ -130,6 +132,12 @@ async function init() {
|
|
|
130
132
|
createCopilotSymlink();
|
|
131
133
|
}
|
|
132
134
|
|
|
135
|
+
// Copy refine-feature skill to .claude/commands/
|
|
136
|
+
if (fs.existsSync(refineSkillSrc)) {
|
|
137
|
+
fs.copyFileSync(refineSkillSrc, refineSkillCommandDest);
|
|
138
|
+
console.log('Copied skill to .claude/commands/refine-feature.md');
|
|
139
|
+
}
|
|
140
|
+
|
|
133
141
|
// Copy framework directories only (not user content directories)
|
|
134
142
|
console.log('Copying .blueprint directory...');
|
|
135
143
|
fs.mkdirSync(blueprintDest, { recursive: true });
|
package/src/update.js
CHANGED
|
@@ -42,6 +42,8 @@ async function update() {
|
|
|
42
42
|
const blueprintSrc = path.join(PACKAGE_ROOT, '.blueprint');
|
|
43
43
|
const skillSrc = path.join(PACKAGE_ROOT, 'SKILL.md');
|
|
44
44
|
const skillDest = path.join(TARGET_DIR, 'SKILL.md');
|
|
45
|
+
const refineSkillSrc = path.join(PACKAGE_ROOT, 'REFINE_SKILL.md');
|
|
46
|
+
const refineSkillDest = path.join(TARGET_DIR, 'REFINE_SKILL.md');
|
|
45
47
|
|
|
46
48
|
// Check if running in the package source directory (dev mode)
|
|
47
49
|
if (PACKAGE_ROOT === TARGET_DIR) {
|
|
@@ -73,17 +75,26 @@ async function update() {
|
|
|
73
75
|
}
|
|
74
76
|
}
|
|
75
77
|
|
|
76
|
-
// Update
|
|
77
|
-
const answer = await prompt('\nUpdate
|
|
78
|
+
// Update skill files and .claude/commands/
|
|
79
|
+
const answer = await prompt('\nUpdate skill files and .claude/commands/? (Y/n): ');
|
|
78
80
|
if (answer !== 'n' && answer !== 'no') {
|
|
79
81
|
fs.copyFileSync(skillSrc, skillDest);
|
|
80
82
|
console.log('Updated SKILL.md');
|
|
81
83
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
if (fs.existsSync(refineSkillSrc)) {
|
|
85
|
+
fs.copyFileSync(refineSkillSrc, refineSkillDest);
|
|
86
|
+
console.log('Updated REFINE_SKILL.md');
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
const claudeCommandsDir = path.join(TARGET_DIR, '.claude', 'commands');
|
|
90
|
+
if (fs.existsSync(claudeCommandsDir)) {
|
|
91
|
+
fs.copyFileSync(skillSrc, path.join(claudeCommandsDir, 'implement-feature.md'));
|
|
86
92
|
console.log('Updated .claude/commands/implement-feature.md');
|
|
93
|
+
|
|
94
|
+
if (fs.existsSync(refineSkillSrc)) {
|
|
95
|
+
fs.copyFileSync(refineSkillSrc, path.join(claudeCommandsDir, 'refine-feature.md'));
|
|
96
|
+
console.log('Updated .claude/commands/refine-feature.md');
|
|
97
|
+
}
|
|
87
98
|
}
|
|
88
99
|
}
|
|
89
100
|
|
|
@@ -96,7 +107,9 @@ Updated:
|
|
|
96
107
|
- .blueprint/templates/
|
|
97
108
|
- .blueprint/ways_of_working/
|
|
98
109
|
- SKILL.md
|
|
110
|
+
- REFINE_SKILL.md
|
|
99
111
|
- .claude/commands/implement-feature.md (if exists)
|
|
112
|
+
- .claude/commands/refine-feature.md (if exists)
|
|
100
113
|
|
|
101
114
|
Preserved:
|
|
102
115
|
- .blueprint/features/
|