murmur8 4.3.3 → 4.3.4

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.
@@ -0,0 +1,91 @@
1
+ # Feature Backlog
2
+
3
+ ## Definitions
4
+
5
+ | Priority | Meaning |
6
+ |----------|---------|
7
+ | P0 | Critical — blocker |
8
+ | P1 | High — do soon |
9
+ | P2 | Medium — planned |
10
+ | P3 | Low — future |
11
+
12
+ | Effort | Meaning |
13
+ |--------|---------|
14
+ | S | Small — <1 hour |
15
+ | M | Medium — 1-3 hours |
16
+ | L | Large — 3-8 hours |
17
+ | XL | Extra Large — 1+ days |
18
+
19
+ | Status | Meaning |
20
+ |--------|---------|
21
+ | ⏳ | Ready to implement |
22
+ | 🚧 | In progress |
23
+ | ❓ | Needs clarification |
24
+
25
+ ---
26
+
27
+ ## Backlog
28
+
29
+ | Status | P | E | Slug | Description |
30
+ |--------|---|---|------|-------------|
31
+ | ❓ | P1 | M | murm-subagent | Use Task tool sub-agents instead of spawning CLI processes |
32
+ | ⏳ | P2 | M | agent-timeouts | Configurable timeouts per agent stage |
33
+ | ⏳ | P2 | M | rollback | Revert a feature's commits |
34
+ | ⏳ | P2 | M | agent-overrides | Per-project agent customization |
35
+ | ⏳ | P2 | M | resume-from-stage | Resume pipeline from specific stage |
36
+ | ⏳ | P3 | M | dry-run-mode | Validate inputs without running agents |
37
+ | ⏳ | P3 | M | feature-dependencies | Define execution order for related features |
38
+ | ⏳ | P3 | L | webhook-notifications | Slack/email on completion |
39
+ | ⏳ | P3 | XL | mcp-integration | Expose murmur8 as MCP tools |
40
+ | ⏳ | P3 | XL | mcp-repos-server | Cross-repo context for distributed monoliths |
41
+ | ⏳ | P3 | S | cli-doctor | Diagnose CLI setup issues |
42
+ | ⏳ | P3 | M | cross-cli-insights | Track which CLI used per run |
43
+ | ⏳ | P3 | S | skill-lint | Validate skill YAML frontmatter |
44
+ | ⏳ | P3 | M | aider-adapter | Support for Aider CLI |
45
+ | ⏳ | P3 | M | cursor-adapter | Support for Cursor Composer |
46
+ | ⏳ | P3 | L | docey-agent | Fifth agent to update docs after implementation |
47
+ | ⏳ | P3 | M | backlog-tooling | CLI commands for backlog management |
48
+ | ⏳ | P3 | L | skill-modularize | Split SKILL.md into composable sections |
49
+
50
+ ---
51
+
52
+ ## Details
53
+
54
+ ### murm-subagent
55
+
56
+ Murmuration currently spawns separate CLI processes. This doesn't work inside an existing Claude Code session. Should use Task tool sub-agents instead for parallel features.
57
+
58
+ ### agent-timeouts
59
+
60
+ Configurable timeout per stage (default: 5 min). Support `--timeout=10m` flag. Graceful termination with status recording.
61
+
62
+ ### rollback
63
+
64
+ `murmur8 rollback <feature-slug>` to revert commits. Uses git history to find commits by feature. Supports `--dry-run`.
65
+
66
+ ### agent-overrides
67
+
68
+ Per-project agent customization via `.blueprint/agents/overrides/AGENT_*.md`. Override content appended to base specs.
69
+
70
+ ### resume-from-stage
71
+
72
+ More granular than queue-based resume. `--resume-from=nigel` to skip earlier stages. Validates artifacts exist first.
73
+
74
+ ### docey-agent
75
+
76
+ Fifth agent to update README/CLAUDE.md after Codey implements. Identifies user-facing changes and updates docs automatically.
77
+
78
+ ### mcp-repos-server
79
+
80
+ MCP server for cross-repository context in distributed architectures. See FEATURE_IDEAS.md for full specification.
81
+
82
+ ### backlog-tooling
83
+
84
+ CLI commands: `npx murmur8 backlog`, `backlog add`, `backlog next`, `backlog murm P1`.
85
+
86
+ ---
87
+
88
+ ## Notes
89
+
90
+ - Items removed automatically when pipeline completes successfully
91
+ - Run with: `/implement-feature "slug"` or `npx murmur8 murm slug-a slug-b`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "murmur8",
3
- "version": "4.3.3",
3
+ "version": "4.3.4",
4
4
  "description": "Multi-agent workflow framework for automated feature development",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/init.js CHANGED
@@ -81,6 +81,12 @@ function createCopilotSymlink() {
81
81
  }
82
82
  }
83
83
 
84
+ // Framework directories to copy (these are part of the murmur8 framework)
85
+ const FRAMEWORK_DIRS = ['agents', 'prompts', 'templates', 'ways_of_working'];
86
+
87
+ // User content directories to create empty (these are for the target project's own content)
88
+ const USER_CONTENT_DIRS = ['features', 'system_specification'];
89
+
84
90
  async function init() {
85
91
  const blueprintSrc = path.join(PACKAGE_ROOT, '.blueprint');
86
92
  const blueprintDest = path.join(TARGET_DIR, '.blueprint');
@@ -97,7 +103,13 @@ async function init() {
97
103
  console.log('Aborted. Use "murmur8 update" to update existing installation.');
98
104
  return;
99
105
  }
100
- fs.rmSync(blueprintDest, { recursive: true });
106
+ // Only remove framework directories, preserve user content
107
+ for (const dir of FRAMEWORK_DIRS) {
108
+ const dirPath = path.join(blueprintDest, dir);
109
+ if (fs.existsSync(dirPath)) {
110
+ fs.rmSync(dirPath, { recursive: true });
111
+ }
112
+ }
101
113
  }
102
114
 
103
115
  // Copy skill to .claude/commands/ (master location)
@@ -117,9 +129,25 @@ async function init() {
117
129
  createCopilotSymlink();
118
130
  }
119
131
 
120
- // Copy .blueprint directory
132
+ // Copy framework directories only (not user content directories)
121
133
  console.log('Copying .blueprint directory...');
122
- copyDir(blueprintSrc, blueprintDest);
134
+ fs.mkdirSync(blueprintDest, { recursive: true });
135
+ for (const dir of FRAMEWORK_DIRS) {
136
+ const src = path.join(blueprintSrc, dir);
137
+ const dest = path.join(blueprintDest, dir);
138
+ if (fs.existsSync(src)) {
139
+ copyDir(src, dest);
140
+ }
141
+ }
142
+
143
+ // Create empty user content directories with .gitkeep
144
+ for (const dir of USER_CONTENT_DIRS) {
145
+ const dest = path.join(blueprintDest, dir);
146
+ if (!fs.existsSync(dest)) {
147
+ fs.mkdirSync(dest, { recursive: true });
148
+ fs.writeFileSync(path.join(dest, '.gitkeep'), '');
149
+ }
150
+ }
123
151
  console.log('Copied .blueprint directory');
124
152
 
125
153
  // Copy .business_context directory
package/src/update.js CHANGED
@@ -15,6 +15,7 @@ const USER_CONTENT_DIRS = [
15
15
  // Directories/files that should be updated
16
16
  const UPDATABLE = [
17
17
  'agents',
18
+ 'prompts',
18
19
  'templates',
19
20
  'ways_of_working'
20
21
  ];
@@ -91,6 +92,7 @@ Update complete!
91
92
 
92
93
  Updated:
93
94
  - .blueprint/agents/
95
+ - .blueprint/prompts/
94
96
  - .blueprint/templates/
95
97
  - .blueprint/ways_of_working/
96
98
  - SKILL.md