@polymorphism-tech/morph-spec 4.7.1 → 4.8.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.
Files changed (138) hide show
  1. package/.morph/analytics/threads-log.jsonl +54 -0
  2. package/.morph/state.json +198 -0
  3. package/LICENSE +1 -2
  4. package/README.md +379 -414
  5. package/bin/morph-spec.js +57 -403
  6. package/bin/validate.js +2 -26
  7. package/claude-plugin.json +2 -2
  8. package/docs/ARCHITECTURE.md +43 -46
  9. package/docs/CHEATSHEET.md +203 -221
  10. package/docs/COMMAND-FLOWS.md +319 -289
  11. package/docs/QUICKSTART.md +2 -8
  12. package/docs/plans/2026-02-22-claude-docs-morph-alignment-analysis.md +2 -0
  13. package/docs/plans/2026-02-22-claude-settings.md +2 -0
  14. package/docs/plans/2026-02-22-morph-cc-alignment-impl.md +2 -0
  15. package/docs/plans/2026-02-22-morph-spec-next.md +2 -0
  16. package/docs/plans/2026-02-22-native-alignment-design.md +2 -0
  17. package/docs/plans/2026-02-22-native-alignment-impl.md +2 -0
  18. package/docs/plans/2026-02-22-native-enrichment-design.md +2 -0
  19. package/docs/plans/2026-02-22-native-enrichment.md +2 -0
  20. package/docs/plans/2026-02-23-ddd-architecture-refactor.md +2 -0
  21. package/docs/plans/2026-02-23-ddd-nextsteps.md +2 -0
  22. package/docs/plans/2026-02-23-infra-architect-refactor.md +2 -0
  23. package/docs/plans/2026-02-23-nextjs-code-review-design.md +2 -1
  24. package/docs/plans/2026-02-23-nextjs-code-review-impl.md +2 -0
  25. package/docs/plans/2026-02-23-nextjs-standards-design.md +2 -1
  26. package/docs/plans/2026-02-23-nextjs-standards-impl.md +2 -0
  27. package/docs/plans/2026-02-24-cli-radical-simplification.md +592 -0
  28. package/docs/plans/2026-02-24-framework-failure-points.md +125 -0
  29. package/docs/plans/2026-02-24-morph-init-design.md +337 -0
  30. package/docs/plans/2026-02-24-morph-init-impl.md +1269 -0
  31. package/docs/plans/2026-02-24-tutorial-command-design.md +71 -0
  32. package/docs/plans/2026-02-24-tutorial-command.md +298 -0
  33. package/framework/CLAUDE.md +2 -2
  34. package/framework/commands/morph-proposal.md +3 -3
  35. package/framework/hooks/README.md +11 -10
  36. package/framework/hooks/claude-code/notification/approval-reminder.js +2 -0
  37. package/framework/hooks/claude-code/post-tool-use/dispatch.js +1 -1
  38. package/framework/hooks/claude-code/pre-tool-use/protect-readonly-files.js +4 -55
  39. package/framework/hooks/claude-code/session-start/inject-morph-context.js +20 -5
  40. package/framework/hooks/claude-code/statusline.py +6 -1
  41. package/framework/hooks/claude-code/stop/validate-completion.js +1 -1
  42. package/framework/hooks/claude-code/user-prompt/enrich-prompt.js +1 -1
  43. package/framework/hooks/dev/check-sync-health.js +117 -0
  44. package/framework/hooks/dev/guard-version-numbers.js +57 -0
  45. package/framework/hooks/dev/sync-standards-registry.js +60 -0
  46. package/framework/hooks/dev/sync-template-registry.js +60 -0
  47. package/framework/hooks/dev/validate-skill-format.js +70 -0
  48. package/framework/hooks/dev/validate-standard-format.js +73 -0
  49. package/framework/hooks/shared/payload-utils.js +39 -0
  50. package/framework/hooks/shared/state-reader.js +25 -1
  51. package/framework/rules/morph-workflow.md +1 -1
  52. package/framework/skills/level-0-meta/morph-init/SKILL.md +216 -0
  53. package/framework/skills/level-0-meta/morph-replicate/SKILL.md +4 -4
  54. package/framework/skills/level-0-meta/tool-usage-guide/SKILL.md +4 -4
  55. package/framework/skills/level-0-meta/verification-before-completion/SKILL.md +1 -1
  56. package/framework/skills/level-1-workflows/phase-clarify/SKILL.md +192 -191
  57. package/framework/skills/level-1-workflows/phase-codebase-analysis/SKILL.md +181 -180
  58. package/framework/skills/level-1-workflows/phase-design/SKILL.md +339 -338
  59. package/framework/skills/level-1-workflows/phase-implement/SKILL.md +254 -253
  60. package/framework/skills/level-1-workflows/phase-setup/SKILL.md +168 -170
  61. package/framework/skills/level-1-workflows/phase-tasks/SKILL.md +284 -283
  62. package/framework/skills/level-1-workflows/phase-uiux/SKILL.md +246 -245
  63. package/framework/templates/examples/design-system-examples.md +1 -1
  64. package/framework/templates/ui/FluentDesignTheme.cs +1 -1
  65. package/framework/templates/ui/MudTheme.cs +1 -1
  66. package/framework/templates/ui/design-system.css +1 -1
  67. package/package.json +4 -2
  68. package/scripts/bump-version.js +248 -0
  69. package/scripts/install-dev-hooks.js +138 -0
  70. package/src/commands/agents/index.js +1 -2
  71. package/src/commands/index.js +13 -16
  72. package/src/commands/project/doctor.js +100 -14
  73. package/src/commands/project/index.js +7 -10
  74. package/src/commands/project/init.js +398 -555
  75. package/src/commands/project/install-plugin-cmd.js +28 -0
  76. package/src/commands/project/setup-infra-cmd.js +12 -0
  77. package/src/commands/project/tutorial.js +115 -0
  78. package/src/commands/project/update.js +22 -37
  79. package/src/commands/state/approve.js +213 -221
  80. package/src/commands/state/index.js +0 -1
  81. package/src/commands/state/state.js +337 -365
  82. package/src/commands/templates/index.js +0 -4
  83. package/src/commands/trust/trust.js +1 -93
  84. package/src/commands/utils/index.js +1 -5
  85. package/src/commands/validation/index.js +1 -5
  86. package/src/core/registry/command-registry.js +11 -285
  87. package/src/core/state/state-manager.js +5 -2
  88. package/src/lib/detectors/index.js +81 -87
  89. package/src/lib/detectors/structure-detector.js +275 -273
  90. package/src/lib/generators/recap-generator.js +232 -225
  91. package/src/lib/installers/mcp-installer.js +18 -3
  92. package/src/scripts/global-install.js +34 -0
  93. package/src/scripts/install-plugin.js +126 -0
  94. package/src/scripts/setup-infra.js +203 -0
  95. package/src/utils/agents-installer.js +10 -1
  96. package/src/utils/hooks-installer.js +70 -17
  97. package/CLAUDE.md +0 -77
  98. package/docs/claude-alignment-report.md +0 -137
  99. package/docs/examples/order-management/contracts.cs +0 -84
  100. package/docs/examples/order-management/proposal.md +0 -24
  101. package/docs/examples/order-management/spec.md +0 -162
  102. package/src/commands/feature/create-story.js +0 -362
  103. package/src/commands/feature/index.js +0 -6
  104. package/src/commands/feature/shard-spec.js +0 -225
  105. package/src/commands/feature/sprint-status.js +0 -250
  106. package/src/commands/generation/generate-onboarding.js +0 -169
  107. package/src/commands/generation/generate.js +0 -276
  108. package/src/commands/generation/index.js +0 -5
  109. package/src/commands/learning/capture-pattern.js +0 -121
  110. package/src/commands/learning/index.js +0 -5
  111. package/src/commands/learning/search-patterns.js +0 -126
  112. package/src/commands/mcp/mcp.js +0 -102
  113. package/src/commands/project/changes.js +0 -66
  114. package/src/commands/project/cost.js +0 -179
  115. package/src/commands/project/detect.js +0 -114
  116. package/src/commands/project/diff.js +0 -278
  117. package/src/commands/project/revert.js +0 -173
  118. package/src/commands/project/standards.js +0 -80
  119. package/src/commands/project/sync.js +0 -167
  120. package/src/commands/project/update-agents.js +0 -23
  121. package/src/commands/state/rollback-phase.js +0 -185
  122. package/src/commands/templates/template-customize.js +0 -87
  123. package/src/commands/templates/template-list.js +0 -114
  124. package/src/commands/templates/template-show.js +0 -129
  125. package/src/commands/templates/template-validate.js +0 -91
  126. package/src/commands/utils/troubleshoot.js +0 -222
  127. package/src/commands/validation/analyze-blazor-concurrency.js +0 -193
  128. package/src/commands/validation/lint-fluent.js +0 -352
  129. package/src/commands/validation/validate-blazor-state.js +0 -210
  130. package/src/commands/validation/validate-blazor.js +0 -156
  131. package/src/commands/validation/validate-css.js +0 -84
  132. package/src/lib/detectors/conversation-analyzer.js +0 -163
  133. package/src/lib/learning/index.js +0 -7
  134. package/src/lib/learning/learning-system.js +0 -520
  135. package/src/lib/troubleshooting/index.js +0 -8
  136. package/src/lib/troubleshooting/troubleshoot-grep.js +0 -198
  137. package/src/lib/troubleshooting/troubleshoot-index.js +0 -144
  138. package/src/llm/environment-detector.js +0 -43
@@ -1,362 +0,0 @@
1
- /**
2
- * MORPH-SPEC Story Creator
3
- * Creates self-contained story files with auto-injected Dev Notes
4
- * Inspired by BMAD Method story-driven development
5
- */
6
-
7
- import fs from 'fs';
8
- import path from 'path';
9
- import yaml from 'yaml';
10
- import ora from 'ora';
11
- import chalk from 'chalk';
12
- import { logger } from '../../utils/logger.js';
13
- import { ensureDir, writeFile } from '../../utils/file-copier.js';
14
- import { getAbsoluteOutputPath } from '../../core/paths/output-schema.js';
15
-
16
- // ============================================================================
17
- // Helper Functions
18
- // ============================================================================
19
-
20
- function resolveTemplatesDir(basePath) {
21
- return path.join(basePath, '.morph', 'framework', 'templates');
22
- }
23
-
24
- function readTemplate(templateName) {
25
- // Try npm-installed package path first (framework templates)
26
- const pkgFrameworkDir = path.join(process.cwd(), 'node_modules/@polymorphism-tech/morph-spec', 'framework', 'templates');
27
- const templatePath = path.join(pkgFrameworkDir, templateName);
28
-
29
- // Fallback to local if in development
30
- if (!fs.existsSync(templatePath)) {
31
- // Check project-local override first, then framework
32
- const localMorphPath = path.join(resolveTemplatesDir(process.cwd()), templateName);
33
- if (fs.existsSync(localMorphPath)) {
34
- return fs.readFileSync(localMorphPath, 'utf-8');
35
- }
36
- throw new Error(`Template not found: ${templateName}`);
37
- }
38
-
39
- return fs.readFileSync(templatePath, 'utf-8');
40
- }
41
-
42
- function readSpec(featureName) {
43
- const specPath = getAbsoluteOutputPath(process.cwd(), featureName, 'spec');
44
- const shardedIndexPath = path.join(process.cwd(), `.morph/features/${featureName}/1-design/spec/index.md`);
45
-
46
- // Try sharded spec first (BMAD pattern)
47
- if (fs.existsSync(shardedIndexPath)) {
48
- return { isSharded: true, indexPath: shardedIndexPath };
49
- }
50
-
51
- // Fallback to monolithic spec
52
- if (fs.existsSync(specPath)) {
53
- return { isSharded: false, content: fs.readFileSync(specPath, 'utf-8') };
54
- }
55
-
56
- throw new Error(`Spec not found for feature: ${featureName}`);
57
- }
58
-
59
- function extractContextFromSpec(specContent, sectionHeading) {
60
- // Extract section content between ## heading and next ##
61
- const regex = new RegExp(`## ${sectionHeading}\\s*([\\s\\S]*?)(?=\\n## |$)`, 'i');
62
- const match = specContent.match(regex);
63
- return match ? match[1].trim() : 'See spec.md for complete context';
64
- }
65
-
66
- function detectPatterns(tasks, specContent) {
67
- const patterns = {
68
- hasEntity: tasks.some(t => /entity|model|domain/i.test(t)),
69
- hasService: tasks.some(t => /service|business|logic/i.test(t)),
70
- hasComponent: tasks.some(t => /component|razor|blazor|ui/i.test(t)),
71
- hasRepository: tasks.some(t => /repository|data|persistence/i.test(t)),
72
- hasJob: tasks.some(t => /job|background|hangfire|scheduled/i.test(t)),
73
- hasAI: tasks.some(t => /agent|ai|llm|semantic|rag/i.test(t)),
74
- hasAzure: tasks.some(t => /bicep|azure|infra|deploy/i.test(t)),
75
- };
76
-
77
- return patterns;
78
- }
79
-
80
- function injectDevNotes(patterns, storyData) {
81
- const notes = [];
82
-
83
- // Entity pattern
84
- if (patterns.hasEntity) {
85
- notes.push('Use Primary Constructor (.NET 10 feature)');
86
- notes.push('Follow entity pattern: .morph/context/coding.md#entity-pattern');
87
- notes.push('Navigation properties: configure in DbContext with Fluent API');
88
- }
89
-
90
- // Service pattern
91
- if (patterns.hasService) {
92
- notes.push('Service layer: implement interface-first (IXService → XService)');
93
- notes.push('Dependency injection: register in Program.cs as Scoped');
94
- notes.push('Error handling: use Result<T> pattern from standards/architecture.md');
95
- }
96
-
97
- // Blazor component
98
- if (patterns.hasComponent) {
99
- notes.push('UI Library: Fluent UI Blazor (see .morph/context/ui.md)');
100
- notes.push('Design System: use CSS variables from wwwroot/css/design-system.css');
101
- notes.push('State management: @inject for services, [Parameter] for props');
102
- }
103
-
104
- // Repository pattern
105
- if (patterns.hasRepository) {
106
- notes.push('Repository pattern: IRepository<T> generic base');
107
- notes.push('EF Core: use AsNoTracking() for read-only queries');
108
- notes.push('Transactions: wrap in DbContext.Database.BeginTransactionAsync()');
109
- }
110
-
111
- // Background job
112
- if (patterns.hasJob) {
113
- notes.push('Hangfire: implement IJob interface, register in HangfireConfig.cs');
114
- notes.push('Retry policy: use [AutomaticRetry(Attempts = 3)]');
115
- notes.push('Logging: inject ILogger<TJob> for monitoring');
116
- }
117
-
118
- // AI/Agent
119
- if (patterns.hasAI) {
120
- notes.push('Microsoft Agent Framework: use AgentBuilder (not Semantic Kernel)');
121
- notes.push('Prompts: store in /prompts/{agent-name}.md');
122
- notes.push('Vector search: use EF Core 10 Vector Search (see standards/backend/database/vector-search-rag.md)');
123
- }
124
-
125
- // Azure/IaC
126
- if (patterns.hasAzure) {
127
- notes.push('Infrastructure as Code: ALWAYS use Bicep (never portal)');
128
- notes.push('Cost validation: run morph-spec cost before commit');
129
- notes.push('Deployment: Azure Container Apps (not App Service)');
130
- }
131
-
132
- // Add spec reference
133
- if (storyData.specShard) {
134
- notes.push(`Spec reference: .morph/features/${storyData.featureName}/1-design/spec/${storyData.specShard}.md`);
135
- } else {
136
- notes.push(`Spec reference: .morph/features/${storyData.featureName}/1-design/spec.md`);
137
- }
138
-
139
- return notes;
140
- }
141
-
142
- function renderStory(template, data) {
143
- // Use Handlebars for rendering instead of manual replacement
144
- // Note: Handlebars helpers like {{titleCase FEATURE_NAME}} are automatically available
145
- // Pre-computed variables like {{FEATURE_NAME_TITLE}} are deprecated
146
- const templateData = {
147
- STORY_ID: data.storyId || 'STORY-XXX',
148
- STORY_TITLE: data.storyTitle || 'Story Title',
149
- FEATURE_NAME: data.featureName || 'feature-name',
150
- EPIC_NAME: data.epicName || 'Epic Name',
151
- DATE: new Date().toISOString().split('T')[0],
152
- STORY_CONTEXT: data.context || 'Context not provided',
153
- SPEC_SHARD: data.specShard || 'spec',
154
- EFFORT: data.effort || '1 day',
155
- CODING_PATTERN: data.codingPattern || 'general',
156
- ARCH_PATTERN: data.archPattern || 'clean-architecture',
157
- STATUS: 'Ready',
158
- CREATED_DATE: new Date().toISOString().split('T')[0],
159
- ADDITIONAL_NOTES: data.additionalNotes || '',
160
- };
161
-
162
- // Import Handlebars at runtime if needed
163
- // For now, use simple replacement but template should use {{titleCase FEATURE_NAME}}
164
- let rendered = template;
165
-
166
- for (const [key, value] of Object.entries(templateData)) {
167
- rendered = rendered.replaceAll(`{{${key}}}`, value);
168
- }
169
-
170
- // Handle arrays (tasks, dev notes, acceptance criteria)
171
- if (data.tasks && data.tasks.length > 0) {
172
- const tasksSection = data.tasks.map(t => `- [ ] ${t}`).join('\n');
173
- rendered = rendered.replace(/{{#TASKS}}[\s\S]*?{{\/TASKS}}/g, tasksSection);
174
- } else {
175
- rendered = rendered.replace(/{{#TASKS}}[\s\S]*?{{\/TASKS}}/g, '- [ ] Task 1\n- [ ] Task 2');
176
- }
177
-
178
- if (data.devNotes && data.devNotes.length > 0) {
179
- const devNotesSection = data.devNotes.map(n => `- ${n}`).join('\n');
180
- rendered = rendered.replace(/{{#DEV_NOTES}}[\s\S]*?{{\/DEV_NOTES}}/g, devNotesSection);
181
- } else {
182
- rendered = rendered.replace(/{{#DEV_NOTES}}[\s\S]*?{{\/DEV_NOTES}}/g, '- Follow standards in .morph/context/');
183
- }
184
-
185
- if (data.acceptanceCriteria && data.acceptanceCriteria.length > 0) {
186
- const acSection = data.acceptanceCriteria.map(ac =>
187
- `- [ ] **GIVEN** ${ac.given} **WHEN** ${ac.when} **THEN** ${ac.then}`
188
- ).join('\n');
189
- rendered = rendered.replace(/{{#ACCEPTANCE_CRITERIA}}[\s\S]*?{{\/ACCEPTANCE_CRITERIA}}/g, acSection);
190
- } else {
191
- rendered = rendered.replace(/{{#ACCEPTANCE_CRITERIA}}[\s\S]*?{{\/ACCEPTANCE_CRITERIA}}/g,
192
- '- [ ] **GIVEN** [condition] **WHEN** [action] **THEN** [result]');
193
- }
194
-
195
- // Clean up remaining Mustache sections (empty arrays)
196
- rendered = rendered.replace(/{{#\w+}}[\s\S]*?{{\/\w+}}/g, '');
197
-
198
- return rendered;
199
- }
200
-
201
- function toTitleCase(str) {
202
- return str
203
- .split('-')
204
- .map(word => word.charAt(0).toUpperCase() + word.slice(1))
205
- .join(' ');
206
- }
207
-
208
- // ============================================================================
209
- // Command Function
210
- // ============================================================================
211
-
212
- export async function createStoryCommand(feature, storyId, options) {
213
- logger.header('MORPH-SPEC Story Creator');
214
- logger.dim(`Feature: ${feature}`);
215
- logger.dim(`Story ID: ${storyId}`);
216
- logger.blank();
217
-
218
- const spinner = ora('Creating story...').start();
219
-
220
- try {
221
- // Read template
222
- const template = readTemplate('story.md');
223
-
224
- // Read spec (detect if sharded)
225
- const spec = readSpec(feature);
226
-
227
- // Build story data
228
- const storyData = {
229
- featureName: feature,
230
- featureNameTitle: toTitleCase(feature),
231
- storyId,
232
- storyTitle: options.title || 'Story Title',
233
- epicName: options.epic || toTitleCase(feature),
234
- context: options.context || (spec.isSharded
235
- ? 'See sharded spec for complete context'
236
- : extractContextFromSpec(spec.content, 'Overview')),
237
- specShard: spec.isSharded ? 'index' : null,
238
- tasks: options.tasks ? options.tasks.split(',').map(t => t.trim()) : ['Task 1', 'Task 2'],
239
- effort: '1 day',
240
- additionalNotes: '',
241
- };
242
-
243
- // Detect patterns and inject Dev Notes
244
- const patterns = detectPatterns(storyData.tasks, spec.content || '');
245
- storyData.devNotes = injectDevNotes(patterns, storyData);
246
-
247
- // Default acceptance criteria
248
- storyData.acceptanceCriteria = [
249
- { given: '[condition]', when: '[action]', then: '[expected result]' },
250
- ];
251
-
252
- // Render story
253
- const renderedStory = renderStory(template, storyData);
254
-
255
- // Output
256
- const outputDir = path.join(process.cwd(), `.morph/features/${feature}/stories`);
257
- const outputPath = path.join(outputDir, `${storyId}.md`);
258
-
259
- if (options.dryRun) {
260
- spinner.info('Dry run - preview only');
261
- logger.blank();
262
- console.log(renderedStory);
263
- logger.blank();
264
- logger.dim(`Would be written to: ${outputPath}`);
265
- } else {
266
- // Ensure directory exists
267
- await ensureDir(outputDir);
268
-
269
- // Write file
270
- await writeFile(outputPath, renderedStory);
271
-
272
- // ============================================================================
273
- // Update sprint-status.yaml (create if doesn't exist)
274
- // ============================================================================
275
- const sprintStatusPath = path.join(process.cwd(), `.morph/features/${feature}/sprint-status.yaml`);
276
- let sprintStatus;
277
-
278
- if (fs.existsSync(sprintStatusPath)) {
279
- // Load existing
280
- const content = fs.readFileSync(sprintStatusPath, 'utf-8');
281
- sprintStatus = yaml.parse(content);
282
- } else {
283
- // Create new
284
- sprintStatus = {
285
- feature: feature,
286
- epic: options.epic || toTitleCase(feature),
287
- created: new Date().toISOString().split('T')[0],
288
- updated: new Date().toISOString().split('T')[0],
289
- stories: [],
290
- metrics: {
291
- total_stories: 0,
292
- ready: 0,
293
- in_progress: 0,
294
- ready_for_qa: 0,
295
- done: 0,
296
- completion_percent: 0
297
- },
298
- current: null,
299
- next: null
300
- };
301
- }
302
-
303
- // Add new story to sprint-status
304
- sprintStatus.stories.push({
305
- id: storyId,
306
- title: storyData.storyTitle,
307
- file: `stories/${storyId}.md`,
308
- status: 'ready',
309
- created: new Date().toISOString().split('T')[0],
310
- assigned: null,
311
- started: null,
312
- completed: null
313
- });
314
-
315
- // Update metrics
316
- sprintStatus.metrics.total_stories = sprintStatus.stories.length;
317
- sprintStatus.metrics.ready = sprintStatus.stories.filter(s => s.status === 'ready').length;
318
- sprintStatus.metrics.in_progress = sprintStatus.stories.filter(s => s.status === 'in_progress').length;
319
- sprintStatus.metrics.ready_for_qa = sprintStatus.stories.filter(s => s.status === 'ready_for_qa').length;
320
- sprintStatus.metrics.done = sprintStatus.stories.filter(s => s.status === 'done').length;
321
- sprintStatus.metrics.completion_percent = sprintStatus.stories.length > 0
322
- ? Math.round((sprintStatus.metrics.done / sprintStatus.stories.length) * 100)
323
- : 0;
324
- sprintStatus.updated = new Date().toISOString().split('T')[0];
325
-
326
- // Set next story if null
327
- if (!sprintStatus.next) {
328
- sprintStatus.next = {
329
- story_id: storyId,
330
- recommendation: `Story ${storyId} is ready for development`
331
- };
332
- }
333
-
334
- // Write sprint-status.yaml
335
- const yamlContent = yaml.stringify(sprintStatus);
336
- fs.writeFileSync(sprintStatusPath, yamlContent);
337
-
338
- spinner.succeed('Story created!');
339
- logger.blank();
340
-
341
- logger.success(`Story file: ${chalk.cyan(outputPath)}`);
342
- logger.success(`Updated: ${chalk.cyan('sprint-status.yaml')}`);
343
- logger.blank();
344
-
345
- logger.header('Dev Notes Auto-Injected:');
346
- storyData.devNotes.forEach(note => logger.dim(` - ${note}`));
347
- logger.blank();
348
-
349
- logger.header('Next Steps:');
350
- logger.dim(' 1. Review and customize story file');
351
- logger.dim(' 2. Run in fresh Claude session: /dev → implement story');
352
- logger.dim(' 3. Dev adds implementation notes');
353
- logger.dim(' 4. QA reviews and adds QA notes');
354
- logger.blank();
355
- }
356
-
357
- } catch (error) {
358
- spinner.fail('Failed to create story');
359
- logger.error(error.message);
360
- process.exit(1);
361
- }
362
- }
@@ -1,6 +0,0 @@
1
- /**
2
- * Feature Management Commands
3
- */
4
- export { createStoryCommand } from './create-story.js';
5
- export { shardSpecCommand } from './shard-spec.js';
6
- export { sprintStatusCommand } from './sprint-status.js';
@@ -1,225 +0,0 @@
1
- /**
2
- * MORPH-SPEC Document Sharding
3
- * Splits large spec.md files into manageable shards (BMAD-inspired)
4
- * Achieves 90% token savings by loading only relevant sections
5
- */
6
-
7
- import fs from 'fs';
8
- import path from 'path';
9
- import ora from 'ora';
10
- import chalk from 'chalk';
11
- import { getAbsoluteOutputPath } from '../../core/paths/output-schema.js';
12
- import { logger } from '../../utils/logger.js';
13
- import { ensureDir, writeFile } from '../../utils/file-copier.js';
14
-
15
- // ============================================================================
16
- // Helper Functions
17
- // ============================================================================
18
-
19
- function parseSpec(specContent) {
20
- const sections = [];
21
- const lines = specContent.split('\n');
22
-
23
- let currentSection = null;
24
- let currentContent = [];
25
-
26
- for (const line of lines) {
27
- // Detect level 2 heading (## Heading)
28
- if (line.match(/^## /)) {
29
- // Save previous section
30
- if (currentSection) {
31
- sections.push({
32
- title: currentSection,
33
- slug: toSlug(currentSection),
34
- content: currentContent.join('\n').trim(),
35
- });
36
- }
37
-
38
- // Start new section
39
- currentSection = line.replace(/^## /, '').trim();
40
- currentContent = [line]; // Include heading in content
41
- } else {
42
- currentContent.push(line);
43
- }
44
- }
45
-
46
- // Save last section
47
- if (currentSection) {
48
- sections.push({
49
- title: currentSection,
50
- slug: toSlug(currentSection),
51
- content: currentContent.join('\n').trim(),
52
- });
53
- }
54
-
55
- return sections;
56
- }
57
-
58
- function toSlug(title) {
59
- return title
60
- .toLowerCase()
61
- .replace(/[^a-z0-9]+/g, '-')
62
- .replace(/^-|-$/g, '');
63
- }
64
-
65
- function generateIndex(sections, featureName) {
66
- let index = `# ${toTitleCase(featureName)} - Technical Specification\n\n`;
67
- index += `> **Sharded Spec:** This spec has been split into sections for optimal token usage\n`;
68
- index += `> **BMAD Pattern:** Load only the section you need during implementation\n\n`;
69
- index += `---\n\n`;
70
- index += `## 📋 Table of Contents\n\n`;
71
-
72
- sections.forEach((section, i) => {
73
- index += `${i + 1}. **[${section.title}](${section.slug}.md)**\n`;
74
-
75
- // Add first 100 chars as description
76
- const firstLine = section.content.split('\n').find(l => l.trim() && !l.startsWith('#'));
77
- const description = firstLine ? firstLine.substring(0, 100) + '...' : 'See section for details';
78
- index += ` > ${description}\n\n`;
79
- });
80
-
81
- index += `---\n\n`;
82
- index += `## 💡 How to Use Sharded Specs\n\n`;
83
- index += `### In Planning Phases (1-3)\n`;
84
- index += `Load **all sections** to get complete context:\n`;
85
- index += `\`\`\`bash\n`;
86
- index += `# Read index.md + all section files\n`;
87
- index += `\`\`\`\n\n`;
88
-
89
- index += `### In Implementation Phase (4)\n`;
90
- index += `Load **only the relevant section** for your current story:\n`;
91
- index += `\`\`\`bash\n`;
92
- index += `# Example: Working on entity design story\n`;
93
- index += `# Read: spec/index.md + spec/entity-design.md (not the other 10 sections!)\n`;
94
- index += `\`\`\`\n\n`;
95
-
96
- index += `**Token Savings:** For a 10-section spec (30k tokens), selective loading = **90% savings**\n\n`;
97
- index += `---\n\n`;
98
- index += `*Generated by MORPH-SPEC Framework - Document Sharding*\n`;
99
- index += `*Inspired by BMAD Method: 90% token reduction for large specs*\n`;
100
-
101
- return index;
102
- }
103
-
104
- function toTitleCase(str) {
105
- return str
106
- .split('-')
107
- .map(word => word.charAt(0).toUpperCase() + word.slice(1))
108
- .join(' ');
109
- }
110
-
111
- function estimateTokens(text) {
112
- // Rough estimate: 1 token ≈ 4 characters
113
- return Math.ceil(text.length / 4);
114
- }
115
-
116
- // ============================================================================
117
- // Command Function
118
- // ============================================================================
119
-
120
- export async function shardSpecCommand(feature, options) {
121
- logger.header('MORPH-SPEC Document Sharding');
122
- logger.dim(`Feature: ${feature}`);
123
- logger.blank();
124
-
125
- const spinner = ora('Analyzing spec.md...').start();
126
-
127
- try {
128
- // Find spec.md
129
- const specPath = getAbsoluteOutputPath(process.cwd(), feature, 'spec');
130
- if (!fs.existsSync(specPath)) {
131
- throw new Error(`Spec not found: ${specPath}`);
132
- }
133
-
134
- // Read spec content
135
- const specContent = fs.readFileSync(specPath, 'utf-8');
136
- const totalTokens = estimateTokens(specContent);
137
-
138
- spinner.info(`Original spec.md: ~${totalTokens.toLocaleString()} tokens`);
139
- logger.blank();
140
-
141
- // Parse into sections
142
- const sections = parseSpec(specContent);
143
-
144
- if (sections.length < 3) {
145
- spinner.warn(`Spec has only ${sections.length} sections - sharding not recommended`);
146
- logger.dim(' Sharding is most beneficial for specs with 5+ sections');
147
- return;
148
- }
149
-
150
- spinner.succeed(`Detected ${sections.length} sections`);
151
- logger.blank();
152
-
153
- // Generate index
154
- const indexContent = generateIndex(sections, feature);
155
-
156
- // Calculate savings
157
- const avgShardTokens = sections.reduce((sum, s) => sum + estimateTokens(s.content), 0) / sections.length;
158
- const savingsPercent = Math.round(((totalTokens - avgShardTokens) / totalTokens) * 100);
159
-
160
- logger.header('Token Savings (selective load):');
161
- logger.info(` ${chalk.green(`~${savingsPercent}%`)} reduction`);
162
- logger.dim(` - Full load: ~${totalTokens.toLocaleString()} tokens`);
163
- logger.dim(` - Selective load: ~${Math.round(avgShardTokens).toLocaleString()} tokens (index + 1 shard)`);
164
- logger.blank();
165
-
166
- if (options.verbose) {
167
- logger.header('Shard Details:');
168
- logger.blank();
169
- sections.forEach((section, i) => {
170
- const tokens = estimateTokens(section.content);
171
- logger.dim(` ${i + 1}. ${section.title}`);
172
- logger.dim(` File: ${section.slug}.md`);
173
- logger.dim(` Tokens: ~${tokens.toLocaleString()}`);
174
- logger.blank();
175
- });
176
- }
177
-
178
- // Output
179
- const outputDir = path.join(process.cwd(), `.morph/features/${feature}/1-design/spec`);
180
-
181
- if (options.dryRun) {
182
- logger.header('DRY RUN - Would create:');
183
- logger.dim(` ${outputDir}/index.md`);
184
- sections.forEach(s => logger.dim(` ${outputDir}/${s.slug}.md`));
185
- logger.blank();
186
- logger.success('Run without --dry-run to create files');
187
- } else {
188
- const createSpinner = ora('Creating sharded spec files...').start();
189
-
190
- // Create directory
191
- await ensureDir(outputDir);
192
-
193
- // Write index
194
- await writeFile(path.join(outputDir, 'index.md'), indexContent);
195
- createSpinner.text = 'Created index.md';
196
-
197
- // Write shards
198
- for (const section of sections) {
199
- const shardPath = path.join(outputDir, `${section.slug}.md`);
200
- await writeFile(shardPath, section.content);
201
- createSpinner.text = `Created ${section.slug}.md`;
202
- }
203
-
204
- createSpinner.succeed('Sharded spec created!');
205
- logger.blank();
206
-
207
- // Archive original spec.md
208
- const archivePath = specPath.replace('.md', '.original.md');
209
- fs.renameSync(specPath, archivePath);
210
- logger.dim(' Archived original: spec.original.md');
211
- logger.blank();
212
-
213
- logger.header('Next steps:');
214
- logger.dim(` 1. Review sharded spec in .morph/features/${feature}/1-design/spec/`);
215
- logger.dim(` 2. Create stories: morph-spec story create ${feature} SR-001`);
216
- logger.dim(' 3. Stories will auto-load only relevant shards (90% token savings)');
217
- logger.blank();
218
- }
219
-
220
- } catch (error) {
221
- spinner.fail('Sharding failed');
222
- logger.error(error.message);
223
- process.exit(1);
224
- }
225
- }