@polymorphism-tech/morph-spec 4.3.6 → 4.5.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/.morph/.morphversion +3 -3
- package/.morph/analytics/threads-log.jsonl +44 -9
- package/.morph/config/config.json +2 -3
- package/.morph/framework/standards/STANDARDS.json +812 -0
- package/.morph/{standards → framework/standards}/ai-agents/team-orchestration.md +3 -3
- package/.morph/framework/standards/integration/mcp/mcp-tools.md +384 -0
- package/.morph/{templates → framework/templates}/README.md +17 -17
- package/.morph/{templates → framework/templates}/REGISTRY.json +48 -233
- package/.morph/framework/templates/code/dotnet/contracts/contracts.cs.hbs +172 -0
- package/.morph/{templates → framework/templates}/context/CONTEXT-FEATURE.md +1 -1
- package/.morph/{templates → framework/templates}/context/CONTEXT.md +3 -3
- package/.morph/framework/templates/docs/clarifications.md +253 -0
- package/.morph/framework/templates/docs/onboarding.md +123 -0
- package/.morph/framework/templates/docs/schema-analysis.md +119 -0
- package/.morph/{templates → framework/templates}/docs/spec.md +149 -149
- package/.morph/framework/templates/docs/ui-components.md +124 -0
- package/.morph/framework/templates/docs/ui-design-system.md +76 -0
- package/.morph/framework/templates/docs/ui-flows.md +167 -0
- package/.morph/framework/templates/docs/ui-mockups.md +98 -0
- package/.morph/{templates → framework/templates}/examples/spec-examples.md +1 -1
- package/.morph/{templates → framework/templates}/infrastructure/github/README.md +11 -11
- package/.morph/{templates → framework/templates}/infrastructure/github/workflows/deploy-azure-app-service.yml.hbs +2 -2
- package/.morph/{templates → framework/templates}/meta-prompts/parallel-workers/parallel-worker.md +2 -2
- package/.morph/{templates → framework/templates}/meta-prompts/validators/pre-commit-validator.md +1 -1
- package/.morph/logs/tool-failures.log +51 -0
- package/.morph/memory/pre-compact-2026-02-22T17-01-01-658Z.json +16 -0
- package/.morph/state.json +1 -1
- package/CLAUDE.md +20 -119
- package/README.md +20 -18
- package/bin/detect-agents.js +1 -1
- package/bin/morph-spec.js +116 -266
- package/bin/task-manager.cjs +2 -2
- package/bin/validate.js +1 -1
- package/claude-plugin.json +14 -0
- package/docs/claude-alignment-report.md +137 -0
- package/docs/plans/2026-02-22-claude-docs-morph-alignment-analysis.md +512 -0
- package/docs/plans/2026-02-22-claude-settings.md +515 -0
- package/docs/plans/2026-02-22-morph-cc-alignment-impl.md +728 -0
- package/docs/plans/2026-02-22-morph-spec-next.md +478 -0
- package/docs/plans/2026-02-22-native-alignment-design.md +199 -0
- package/docs/plans/2026-02-22-native-alignment-impl.md +925 -0
- package/docs/plans/2026-02-22-native-enrichment-design.md +244 -0
- package/docs/plans/2026-02-22-native-enrichment.md +735 -0
- package/framework/CLAUDE.md +77 -0
- package/framework/commands/morph-apply.md +9 -9
- package/framework/commands/morph-archive.md +8 -8
- package/framework/commands/morph-infra.md +1 -1
- package/framework/commands/morph-proposal.md +9 -9
- package/framework/commands/morph-status.md +3 -3
- package/framework/commands/morph-troubleshoot.md +1 -1
- package/framework/hooks/README.md +201 -282
- package/framework/hooks/claude-code/notification/approval-reminder.js +52 -0
- package/framework/hooks/claude-code/post-tool-use/dispatch.js +83 -0
- package/framework/hooks/claude-code/post-tool-use/handle-tool-failure.js +42 -0
- package/framework/hooks/claude-code/pre-compact/save-morph-context.js +61 -0
- package/framework/hooks/claude-code/pre-tool-use/enforce-phase-writes.js +71 -0
- package/framework/hooks/claude-code/pre-tool-use/protect-readonly-files.js +58 -0
- package/framework/hooks/claude-code/pre-tool-use/protect-spec-files.js +64 -0
- package/framework/hooks/claude-code/session-start/inject-morph-context.js +94 -0
- package/framework/hooks/claude-code/statusline.py +239 -0
- package/framework/hooks/claude-code/statusline.sh +7 -0
- package/framework/hooks/claude-code/stop/validate-completion.js +88 -0
- package/framework/hooks/claude-code/user-prompt/enrich-prompt.js +91 -0
- package/framework/hooks/shared/hook-response.js +45 -0
- package/framework/hooks/shared/phase-utils.js +129 -0
- package/framework/hooks/shared/state-reader.js +138 -0
- package/framework/hooks/shared/stdin-reader.js +26 -0
- package/framework/phases.json +145 -0
- package/framework/rules/csharp-standards.md +10 -0
- package/framework/rules/frontend-standards.md +14 -0
- package/framework/rules/infrastructure-standards.md +13 -0
- package/framework/rules/morph-workflow.md +86 -0
- package/framework/rules/testing-standards.md +11 -0
- package/framework/skills/level-0-meta/brainstorming.md +133 -0
- package/framework/skills/level-0-meta/code-review.md +12 -4
- package/framework/skills/level-0-meta/mcp-registry.json +207 -0
- package/framework/skills/level-0-meta/morph-checklist.md +9 -1
- package/framework/skills/level-0-meta/simulation-checklist.md +9 -1
- package/framework/skills/level-0-meta/tool-usage-guide.md +335 -0
- package/framework/skills/level-0-meta/verification-before-completion.md +145 -0
- package/framework/skills/level-1-workflows/morph-replicate.md +9 -1
- package/framework/skills/level-1-workflows/phase-clarify.md +65 -4
- package/framework/skills/level-1-workflows/phase-codebase-analysis.md +182 -0
- package/framework/skills/level-1-workflows/phase-design.md +342 -80
- package/framework/skills/level-1-workflows/phase-implement.md +254 -0
- package/framework/skills/level-1-workflows/phase-setup.md +76 -10
- package/framework/skills/level-1-workflows/phase-tasks.md +88 -7
- package/framework/skills/level-1-workflows/phase-uiux.md +95 -17
- package/framework/skills/level-2-domains/ai-agents/ai-system-architect.md +8 -1
- package/framework/skills/level-2-domains/architecture/po-pm-advisor.md +8 -1
- package/framework/skills/level-2-domains/architecture/prompt-engineer.md +8 -1
- package/framework/skills/level-2-domains/architecture/seo-growth-hacker.md +8 -1
- package/framework/skills/level-2-domains/architecture/standards-architect.md +11 -4
- package/framework/skills/level-2-domains/backend/api-designer.md +8 -1
- package/framework/skills/level-2-domains/backend/dotnet-senior.md +8 -1
- package/framework/skills/level-2-domains/backend/ef-modeler.md +8 -1
- package/framework/skills/level-2-domains/backend/hangfire-orchestrator.md +9 -2
- package/framework/skills/level-2-domains/backend/ms-agent-expert.md +8 -1
- package/framework/skills/level-2-domains/frontend/blazor-builder.md +8 -1
- package/framework/skills/level-2-domains/frontend/nextjs-expert.md +8 -1
- package/framework/skills/level-2-domains/frontend/ui-ux-designer.md +9 -2
- package/framework/skills/level-2-domains/infrastructure/azure-architect.md +8 -1
- package/framework/skills/level-2-domains/infrastructure/azure-deploy-specialist.md +8 -1
- package/framework/skills/level-2-domains/infrastructure/bicep-architect.md +8 -1
- package/framework/skills/level-2-domains/infrastructure/container-specialist.md +8 -1
- package/framework/skills/level-2-domains/infrastructure/devops-engineer.md +8 -1
- package/framework/skills/level-2-domains/integrations/asaas-financial.md +8 -1
- package/framework/skills/level-2-domains/integrations/azure-identity.md +8 -1
- package/framework/skills/level-2-domains/integrations/clerk-auth.md +8 -1
- package/framework/skills/level-2-domains/integrations/{hangfire-orchestrator.md → hangfire-integration.md} +8 -1
- package/framework/skills/level-2-domains/integrations/resend-email.md +8 -1
- package/framework/skills/level-2-domains/quality/code-analyzer.md +10 -3
- package/framework/skills/level-2-domains/quality/testing-specialist.md +8 -1
- package/framework/standards/STANDARDS.json +812 -0
- package/framework/standards/ai-agents/team-orchestration.md +3 -3
- package/framework/standards/frontend/nextjs/nextjs-patterns.md +17 -0
- package/framework/standards/integration/mcp/mcp-tools.md +384 -0
- package/framework/templates/README.md +17 -17
- package/framework/templates/REGISTRY.json +48 -233
- package/framework/templates/code/dotnet/contracts/contracts.cs.hbs +172 -0
- package/framework/templates/context/CONTEXT-FEATURE.md +1 -1
- package/framework/templates/context/CONTEXT.md +3 -3
- package/framework/templates/docs/clarifications.md +253 -0
- package/framework/templates/docs/onboarding.md +123 -0
- package/framework/templates/docs/schema-analysis.md +119 -0
- package/framework/templates/docs/spec.md +149 -149
- package/framework/templates/docs/ui-components.md +124 -0
- package/framework/templates/docs/ui-design-system.md +76 -0
- package/framework/templates/docs/ui-flows.md +167 -0
- package/framework/templates/docs/ui-mockups.md +98 -0
- package/framework/templates/docs/user-stories.md +34 -0
- package/framework/templates/examples/spec-examples.md +1 -1
- package/framework/templates/infrastructure/github/README.md +11 -11
- package/framework/templates/infrastructure/github/workflows/deploy-azure-app-service.yml.hbs +2 -2
- package/framework/templates/meta-prompts/parallel-workers/parallel-worker.md +2 -2
- package/framework/templates/meta-prompts/validators/pre-commit-validator.md +1 -1
- package/framework/workflows/configs/express.json +45 -0
- package/framework/workflows/configs/spec-only.json +43 -0
- package/framework/workflows/docs/enforcement-pipeline.md +8 -8
- package/framework/workflows/docs/full-morph.md +3 -3
- package/package.json +3 -2
- package/scripts/generate-refs.js +336 -0
- package/scripts/generate-standards-registry.js +44 -0
- package/scripts/validate-real.mjs +255 -0
- package/src/commands/feature/create-story.js +362 -361
- package/src/commands/feature/shard-spec.js +225 -224
- package/src/commands/feature/sprint-status.js +1 -1
- package/src/commands/generation/generate-onboarding.js +169 -0
- package/src/commands/generation/generate.js +2 -2
- package/src/commands/mcp/mcp-setup.js +315 -0
- package/src/commands/project/changes.js +66 -0
- package/src/commands/project/checkpoint.js +209 -0
- package/src/commands/project/cost.js +179 -0
- package/src/commands/project/diff.js +278 -0
- package/src/commands/project/doctor.js +55 -7
- package/src/commands/project/init.js +318 -76
- package/src/commands/project/revert.js +173 -0
- package/src/commands/project/standards.js +80 -0
- package/src/commands/project/status.js +376 -0
- package/src/commands/project/update-agents.js +23 -0
- package/src/commands/project/update.js +63 -30
- package/src/commands/state/advance-phase.js +4 -3
- package/src/commands/state/state.js +10 -3
- package/src/commands/state/validate-phase.js +19 -2
- package/src/commands/templates/template-customize.js +4 -4
- package/src/commands/templates/template-render.js +1 -1
- package/src/commands/templates/template-show.js +1 -1
- package/src/commands/validation/validate-feature.js +359 -0
- package/src/core/orchestrator.js +3 -38
- package/src/core/paths/output-schema.js +135 -0
- package/src/core/state/state-manager.js +831 -592
- package/src/core/templates/template-registry.js +2 -2
- package/src/core/workflows/workflow-detector.js +17 -1
- package/src/lib/agents/micro-agent-factory.js +1 -1
- package/src/lib/context/context-bundler.js +2 -1
- package/src/lib/detectors/claude-config-detector.js +392 -0
- package/src/lib/detectors/conversation-analyzer.js +4 -4
- package/src/lib/detectors/design-system-detector.js +6 -5
- package/src/lib/detectors/standards-generator.js +2 -2
- package/src/lib/generators/context-generator.js +539 -538
- package/src/lib/generators/recap-generator.js +1 -1
- package/src/lib/generators/settings-generator.js +210 -0
- package/src/lib/hooks/hook-executor.js +1 -1
- package/src/lib/installers/mcp-installer.js +299 -0
- package/src/lib/learning/learning-system.js +3 -3
- package/src/lib/orchestration/team-orchestrator.js +1 -1
- package/src/lib/standards/standards-context-injector.js +7 -7
- package/src/lib/threads/thread-coordinator.js +1 -1
- package/src/lib/troubleshooting/troubleshoot-grep.js +1 -1
- package/src/lib/validators/contracts/contract-compliance-validator.js +274 -273
- package/src/lib/validators/design-system/design-system-validator.js +1 -1
- package/src/lib/validators/spec-validator.js +258 -258
- package/src/lib/validators/validation-runner.js +270 -269
- package/src/utils/agents-installer.js +206 -0
- package/src/utils/claude-settings-manager.js +258 -0
- package/src/utils/file-copier.js +1 -1
- package/src/utils/hooks-installer.js +354 -28
- package/src/utils/skills-installer.js +74 -0
- package/.morph/project/context/detection-log.md +0 -16
- package/.morph/project/standards/inferred.md +0 -59
- package/framework/hooks/agent-stop/validate-and-continue.js +0 -96
- package/framework/hooks/agent-stop/validate-checkpoints.js +0 -101
- package/framework/hooks/agent-stop/validate-tests.js +0 -109
- package/framework/hooks/agent-teams/dispatch.js +0 -67
- package/framework/hooks/agent-teams/phase-advanced.js +0 -80
- package/framework/hooks/agent-teams/task-completed.js +0 -76
- package/framework/hooks/agent-teams/teammate-idle.js +0 -70
- package/src/commands/agents/agents-fuse.js +0 -97
- package/src/commands/agents/micro-agent.js +0 -112
- package/src/commands/agents/spawn-team.js +0 -237
- package/src/commands/agents/squad-template.js +0 -146
- package/src/commands/analytics/analytics.js +0 -176
- package/src/commands/context/context-prime.js +0 -63
- package/src/commands/context/core-four.js +0 -54
- package/src/commands/generation/generate-context.js +0 -40
- package/src/commands/project/detect-agents.js +0 -207
- package/src/commands/project/detect-workflow.js +0 -174
- package/src/commands/threads/thread-template.js +0 -103
- package/src/commands/threads/threads.js +0 -261
- package/src/commands/utils/session-summary.js +0 -291
- package/src/llm/analyzer.js +0 -215
- package/src/llm/few-shot-examples.js +0 -216
- package/src/llm/project-config-schema.json +0 -188
- package/src/llm/prompt-builder.js +0 -96
- /package/.morph/{project/context → context}/README.md +0 -0
- /package/.morph/{config → framework}/agents.json +0 -0
- /package/.morph/{standards → framework/standards}/ai-agents/blazor-ui.md +0 -0
- /package/.morph/{standards → framework/standards}/ai-agents/production.md +0 -0
- /package/.morph/{standards → framework/standards}/ai-agents/setup.md +0 -0
- /package/.morph/{standards → framework/standards}/ai-agents/workflows.md +0 -0
- /package/.morph/{standards → framework/standards}/architecture/ddd/aggregates.md +0 -0
- /package/.morph/{standards → framework/standards}/architecture/ddd/entities.md +0 -0
- /package/.morph/{standards → framework/standards}/architecture/ddd/value-objects.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/api/minimal-api.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/api/rest.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/api/validation.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/authentication/passkeys.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/database/ef-core.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/database/migrations.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/database/postgresql/database.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/database/repository-patterns.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/database/vector-search-rag.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/dotnet/async.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/dotnet/core.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/dotnet/di.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/dotnet/program-cs-checklist.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/integrations/asaas/asaas-api.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/integrations/clerk/clerk-auth.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/integrations/hangfire/hangfire-jobs.md +0 -0
- /package/.morph/{standards → framework/standards}/backend/integrations/resend/resend-email.md +0 -0
- /package/.morph/{standards → framework/standards}/context/analytics.md +0 -0
- /package/.morph/{standards → framework/standards}/context/bundles.md +0 -0
- /package/.morph/{standards → framework/standards}/context/priming.md +0 -0
- /package/.morph/{standards → framework/standards}/core/architecture.md +0 -0
- /package/.morph/{standards → framework/standards}/core/coding.md +0 -0
- /package/.morph/{standards → framework/standards}/core/git-branching-strategy.md +0 -0
- /package/.morph/{standards → framework/standards}/core/git.md +0 -0
- /package/.morph/{standards → framework/standards}/core/testing.md +0 -0
- /package/.morph/{standards → framework/standards}/data/nosql/blob-storage.md +0 -0
- /package/.morph/{standards → framework/standards}/data/nosql/cache/redis.md +0 -0
- /package/.morph/{standards → framework/standards}/data/nosql/cosmos-db.md +0 -0
- /package/.morph/{standards → framework/standards}/data/vector-search/azure-ai-search.md +0 -0
- /package/.morph/{standards → framework/standards}/data/vector-search/rag-chunking.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/blazor/design-checklist.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/blazor/fluent-ui-setup.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/blazor/fluent-ui.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/blazor/html-conversion.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/blazor/lifecycle.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/blazor/pitfalls.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/blazor/state.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/design-system/animations.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/design-system/naming.md +0 -0
- /package/.morph/{standards → framework/standards}/frontend/nextjs/nextjs-patterns.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/azure/azure.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/azure/bicep/bicep-patterns.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/azure/devops/azure-devops-setup.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/azure/devops/local-development.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/azure/services/functions.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/azure/services/service-bus.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/azure/services/storage.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/docker/easypanel-deploy.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/supabase/mcp-setup.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/supabase/supabase-auth.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/supabase/supabase-pgvector.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/supabase/supabase-rls.md +0 -0
- /package/.morph/{standards → framework/standards}/infrastructure/supabase/supabase-storage.md +0 -0
- /package/.morph/{standards → framework/standards}/integration/api/graphql.md +0 -0
- /package/.morph/{standards → framework/standards}/integration/api/grpc.md +0 -0
- /package/.morph/{standards → framework/standards}/integration/api/rest-design.md +0 -0
- /package/.morph/{standards → framework/standards}/integration/event-driven/cqrs.md +0 -0
- /package/.morph/{standards → framework/standards}/integration/event-driven/event-sourcing.md +0 -0
- /package/.morph/{standards → framework/standards}/integration/event-driven/service-bus.md +0 -0
- /package/.morph/{standards → framework/standards}/observability/logging.md +0 -0
- /package/.morph/{standards → framework/standards}/observability/metrics.md +0 -0
- /package/.morph/{standards → framework/standards}/observability/monitoring.md +0 -0
- /package/.morph/{standards → framework/standards}/observability/tracing.md +0 -0
- /package/.morph/{standards → framework/standards}/workflows/parallel-execution.md +0 -0
- /package/.morph/{standards → framework/standards}/workflows/thread-management.md +0 -0
- /package/.morph/{templates → framework/templates}/.idea/morph-templates.xml +0 -0
- /package/.morph/{templates → framework/templates}/.vscode/morph-templates.code-snippets +0 -0
- /package/.morph/{templates → framework/templates}/IDE-SNIPPETS.md +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/backend/repository.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/backend/service.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/contracts/Commands.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/contracts/Entities.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/contracts/Queries.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/contracts/README.md +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/contracts/api-contracts.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/contracts/contracts.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/database/migration.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/frontend/component.razor +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/jobs/agent.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/jobs/job.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/dotnet/test.cs +0 -0
- /package/.morph/{templates → framework/templates}/code/sql/rls-policy.sql +0 -0
- /package/.morph/{templates → framework/templates}/code/sql/supabase-migration.sql +0 -0
- /package/.morph/{templates → framework/templates}/code/sql/supabase-migration.template.sql +0 -0
- /package/.morph/{templates → framework/templates}/code/typescript/contracts.ts +0 -0
- /package/.morph/{templates → framework/templates}/docs/proposal.md +0 -0
- /package/.morph/{templates → framework/templates}/examples/design-system-examples.md +0 -0
- /package/.morph/{templates → framework/templates}/feature/decisions.md +0 -0
- /package/.morph/{templates → framework/templates}/feature/recap.md +0 -0
- /package/.morph/{templates → framework/templates}/feature/tasks.md +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/Dockerfile.example +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/README.md +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/app-insights.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/app-service.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/container-app-env.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/container-app.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/deploy-checklist.md +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/deploy.ps1 +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/deploy.sh +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/key-vault.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/main.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/parameters.dev.json +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/parameters.prod.json +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/parameters.staging.json +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/sql-database.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/azure/storage.bicep +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/docker/Dockerfile.template +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/docker/docker-compose.template.yml +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/docker/dockerfile-api.dockerfile +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/docker/dockerfile-web.dockerfile +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/docker/easypanel.template.json +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/github/actions/azure-auth/action.yml.hbs +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/github/actions/docker-build-push/action.yml.hbs +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/github/actions/health-check/action.yml.hbs +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/github/workflows/deploy-easypanel.yml.hbs +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/github/workflows/docker-build-push.yml.hbs +0 -0
- /package/.morph/{templates → framework/templates}/infrastructure/github/workflows/dotnet-build.yml.hbs +0 -0
- /package/.morph/{templates → framework/templates}/integrations/asaas-client.cs +0 -0
- /package/.morph/{templates → framework/templates}/integrations/asaas-webhook.cs +0 -0
- /package/.morph/{templates → framework/templates}/integrations/azure-identity-config.cs +0 -0
- /package/.morph/{templates → framework/templates}/integrations/clerk-config.cs +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/fusion/fusion-agent.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/fusion/fusion-aggregator.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/hops/hop-retry.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/hops/hop-validation.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/hops/hop-wrapper.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/parallel-workers/parallel-coordinator.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/squad-leaders/backend-squad.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/squad-leaders/frontend-squad.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/squad-leaders/squad-leader.md +0 -0
- /package/.morph/{templates → framework/templates}/meta-prompts/validators/checkpoint-validator.md +0 -0
- /package/.morph/{templates → framework/templates}/saas/subscription.cs +0 -0
- /package/.morph/{templates → framework/templates}/saas/tenant.cs +0 -0
- /package/.morph/{templates → framework/templates}/state.template.json +0 -0
- /package/.morph/{templates → framework/templates}/ui/FluentDesignTheme.cs +0 -0
- /package/.morph/{templates → framework/templates}/ui/MudTheme.cs +0 -0
- /package/.morph/{templates → framework/templates}/ui/design-system.css +0 -0
- /package/framework/hooks/{commit-msg → git/commit-msg}/conventional-commits.sh +0 -0
- /package/framework/hooks/{pre-commit → git/pre-commit}/agents.sh +0 -0
- /package/framework/hooks/{pre-commit → git/pre-commit}/orchestrator.sh +0 -0
- /package/framework/hooks/{pre-commit → git/pre-commit}/specs.sh +0 -0
- /package/framework/hooks/{pre-push → git/pre-push}/run-tests.sh +0 -0
|
@@ -1,361 +1,362 @@
|
|
|
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
|
-
|
|
15
|
-
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
if
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
const
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
const
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
notes.push('
|
|
86
|
-
notes.push('
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
notes.push('
|
|
93
|
-
notes.push('
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
notes.push('
|
|
100
|
-
notes.push('
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
notes.push('
|
|
107
|
-
notes.push('
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
notes.push('
|
|
114
|
-
notes.push('
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
notes.push('
|
|
121
|
-
notes.push('
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
notes.push('
|
|
128
|
-
notes.push('
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
//
|
|
144
|
-
//
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
//
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
.
|
|
204
|
-
.
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
//
|
|
209
|
-
//
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
logger.
|
|
214
|
-
logger.dim(`
|
|
215
|
-
logger.
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
const
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
logger.
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
//
|
|
273
|
-
//
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
sprintStatus.metrics.
|
|
317
|
-
sprintStatus.metrics.
|
|
318
|
-
sprintStatus.metrics.
|
|
319
|
-
sprintStatus.metrics.
|
|
320
|
-
sprintStatus.metrics.
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
logger.success(`
|
|
342
|
-
logger.
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
logger.
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
logger.
|
|
350
|
-
logger.dim('
|
|
351
|
-
logger.dim('
|
|
352
|
-
logger.dim('
|
|
353
|
-
logger.
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
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
|
+
}
|