@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
|
@@ -0,0 +1,812 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"standards": [
|
|
4
|
+
{
|
|
5
|
+
"id": "ai-agents-blazor-ui",
|
|
6
|
+
"name": "blazor ui",
|
|
7
|
+
"path": "ai-agents/blazor-ui.md",
|
|
8
|
+
"category": "ai-agents",
|
|
9
|
+
"subcategory": null,
|
|
10
|
+
"tags": [
|
|
11
|
+
"ai-agents"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "ai-agents-production",
|
|
16
|
+
"name": "production",
|
|
17
|
+
"path": "ai-agents/production.md",
|
|
18
|
+
"category": "ai-agents",
|
|
19
|
+
"subcategory": null,
|
|
20
|
+
"tags": [
|
|
21
|
+
"ai-agents"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "ai-agents-setup",
|
|
26
|
+
"name": "setup",
|
|
27
|
+
"path": "ai-agents/setup.md",
|
|
28
|
+
"category": "ai-agents",
|
|
29
|
+
"subcategory": null,
|
|
30
|
+
"tags": [
|
|
31
|
+
"ai-agents"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "ai-agents-team-orchestration",
|
|
36
|
+
"name": "team orchestration",
|
|
37
|
+
"path": "ai-agents/team-orchestration.md",
|
|
38
|
+
"category": "ai-agents",
|
|
39
|
+
"subcategory": null,
|
|
40
|
+
"tags": [
|
|
41
|
+
"ai-agents"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "ai-agents-workflows",
|
|
46
|
+
"name": "workflows",
|
|
47
|
+
"path": "ai-agents/workflows.md",
|
|
48
|
+
"category": "ai-agents",
|
|
49
|
+
"subcategory": null,
|
|
50
|
+
"tags": [
|
|
51
|
+
"ai-agents"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "architecture-ddd-aggregates",
|
|
56
|
+
"name": "aggregates",
|
|
57
|
+
"path": "architecture/ddd/aggregates.md",
|
|
58
|
+
"category": "architecture",
|
|
59
|
+
"subcategory": "ddd",
|
|
60
|
+
"tags": [
|
|
61
|
+
"architecture",
|
|
62
|
+
"ddd"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "architecture-ddd-entities",
|
|
67
|
+
"name": "entities",
|
|
68
|
+
"path": "architecture/ddd/entities.md",
|
|
69
|
+
"category": "architecture",
|
|
70
|
+
"subcategory": "ddd",
|
|
71
|
+
"tags": [
|
|
72
|
+
"architecture",
|
|
73
|
+
"ddd"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"id": "architecture-ddd-value-objects",
|
|
78
|
+
"name": "value objects",
|
|
79
|
+
"path": "architecture/ddd/value-objects.md",
|
|
80
|
+
"category": "architecture",
|
|
81
|
+
"subcategory": "ddd",
|
|
82
|
+
"tags": [
|
|
83
|
+
"architecture",
|
|
84
|
+
"ddd"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "backend-api-minimal-api",
|
|
89
|
+
"name": "minimal api",
|
|
90
|
+
"path": "backend/api/minimal-api.md",
|
|
91
|
+
"category": "backend",
|
|
92
|
+
"subcategory": "api",
|
|
93
|
+
"tags": [
|
|
94
|
+
"backend",
|
|
95
|
+
"api"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "backend-api-rest",
|
|
100
|
+
"name": "rest",
|
|
101
|
+
"path": "backend/api/rest.md",
|
|
102
|
+
"category": "backend",
|
|
103
|
+
"subcategory": "api",
|
|
104
|
+
"tags": [
|
|
105
|
+
"backend",
|
|
106
|
+
"api"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "backend-api-validation",
|
|
111
|
+
"name": "validation",
|
|
112
|
+
"path": "backend/api/validation.md",
|
|
113
|
+
"category": "backend",
|
|
114
|
+
"subcategory": "api",
|
|
115
|
+
"tags": [
|
|
116
|
+
"backend",
|
|
117
|
+
"api"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "backend-authentication-passkeys",
|
|
122
|
+
"name": "passkeys",
|
|
123
|
+
"path": "backend/authentication/passkeys.md",
|
|
124
|
+
"category": "backend",
|
|
125
|
+
"subcategory": "authentication",
|
|
126
|
+
"tags": [
|
|
127
|
+
"backend",
|
|
128
|
+
"authentication"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "backend-database-ef-core",
|
|
133
|
+
"name": "ef core",
|
|
134
|
+
"path": "backend/database/ef-core.md",
|
|
135
|
+
"category": "backend",
|
|
136
|
+
"subcategory": "database",
|
|
137
|
+
"tags": [
|
|
138
|
+
"backend",
|
|
139
|
+
"database"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "backend-database-migrations",
|
|
144
|
+
"name": "migrations",
|
|
145
|
+
"path": "backend/database/migrations.md",
|
|
146
|
+
"category": "backend",
|
|
147
|
+
"subcategory": "database",
|
|
148
|
+
"tags": [
|
|
149
|
+
"backend",
|
|
150
|
+
"database"
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"id": "backend-database-postgresql-database",
|
|
155
|
+
"name": "database",
|
|
156
|
+
"path": "backend/database/postgresql/database.md",
|
|
157
|
+
"category": "backend",
|
|
158
|
+
"subcategory": "database",
|
|
159
|
+
"tags": [
|
|
160
|
+
"backend",
|
|
161
|
+
"database",
|
|
162
|
+
"postgresql"
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"id": "backend-database-repository-patterns",
|
|
167
|
+
"name": "repository patterns",
|
|
168
|
+
"path": "backend/database/repository-patterns.md",
|
|
169
|
+
"category": "backend",
|
|
170
|
+
"subcategory": "database",
|
|
171
|
+
"tags": [
|
|
172
|
+
"backend",
|
|
173
|
+
"database"
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"id": "backend-database-vector-search-rag",
|
|
178
|
+
"name": "vector search rag",
|
|
179
|
+
"path": "backend/database/vector-search-rag.md",
|
|
180
|
+
"category": "backend",
|
|
181
|
+
"subcategory": "database",
|
|
182
|
+
"tags": [
|
|
183
|
+
"backend",
|
|
184
|
+
"database"
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "backend-dotnet-async",
|
|
189
|
+
"name": "async",
|
|
190
|
+
"path": "backend/dotnet/async.md",
|
|
191
|
+
"category": "backend",
|
|
192
|
+
"subcategory": "dotnet",
|
|
193
|
+
"tags": [
|
|
194
|
+
"backend",
|
|
195
|
+
"dotnet"
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "backend-dotnet-core",
|
|
200
|
+
"name": "core",
|
|
201
|
+
"path": "backend/dotnet/core.md",
|
|
202
|
+
"category": "backend",
|
|
203
|
+
"subcategory": "dotnet",
|
|
204
|
+
"tags": [
|
|
205
|
+
"backend",
|
|
206
|
+
"dotnet"
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"id": "backend-dotnet-di",
|
|
211
|
+
"name": "di",
|
|
212
|
+
"path": "backend/dotnet/di.md",
|
|
213
|
+
"category": "backend",
|
|
214
|
+
"subcategory": "dotnet",
|
|
215
|
+
"tags": [
|
|
216
|
+
"backend",
|
|
217
|
+
"dotnet"
|
|
218
|
+
]
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "backend-dotnet-program-cs-checklist",
|
|
222
|
+
"name": "program cs checklist",
|
|
223
|
+
"path": "backend/dotnet/program-cs-checklist.md",
|
|
224
|
+
"category": "backend",
|
|
225
|
+
"subcategory": "dotnet",
|
|
226
|
+
"tags": [
|
|
227
|
+
"backend",
|
|
228
|
+
"dotnet"
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "backend-integrations-asaas-asaas-api",
|
|
233
|
+
"name": "asaas api",
|
|
234
|
+
"path": "backend/integrations/asaas/asaas-api.md",
|
|
235
|
+
"category": "backend",
|
|
236
|
+
"subcategory": "integrations",
|
|
237
|
+
"tags": [
|
|
238
|
+
"backend",
|
|
239
|
+
"integrations",
|
|
240
|
+
"asaas"
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"id": "backend-integrations-clerk-clerk-auth",
|
|
245
|
+
"name": "clerk auth",
|
|
246
|
+
"path": "backend/integrations/clerk/clerk-auth.md",
|
|
247
|
+
"category": "backend",
|
|
248
|
+
"subcategory": "integrations",
|
|
249
|
+
"tags": [
|
|
250
|
+
"backend",
|
|
251
|
+
"integrations",
|
|
252
|
+
"clerk"
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"id": "backend-integrations-hangfire-hangfire-jobs",
|
|
257
|
+
"name": "hangfire jobs",
|
|
258
|
+
"path": "backend/integrations/hangfire/hangfire-jobs.md",
|
|
259
|
+
"category": "backend",
|
|
260
|
+
"subcategory": "integrations",
|
|
261
|
+
"tags": [
|
|
262
|
+
"backend",
|
|
263
|
+
"integrations",
|
|
264
|
+
"hangfire"
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": "backend-integrations-resend-resend-email",
|
|
269
|
+
"name": "resend email",
|
|
270
|
+
"path": "backend/integrations/resend/resend-email.md",
|
|
271
|
+
"category": "backend",
|
|
272
|
+
"subcategory": "integrations",
|
|
273
|
+
"tags": [
|
|
274
|
+
"backend",
|
|
275
|
+
"integrations",
|
|
276
|
+
"resend"
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"id": "context-analytics",
|
|
281
|
+
"name": "analytics",
|
|
282
|
+
"path": "context/analytics.md",
|
|
283
|
+
"category": "context",
|
|
284
|
+
"subcategory": null,
|
|
285
|
+
"tags": [
|
|
286
|
+
"context"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"id": "context-bundles",
|
|
291
|
+
"name": "bundles",
|
|
292
|
+
"path": "context/bundles.md",
|
|
293
|
+
"category": "context",
|
|
294
|
+
"subcategory": null,
|
|
295
|
+
"tags": [
|
|
296
|
+
"context"
|
|
297
|
+
]
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "context-priming",
|
|
301
|
+
"name": "priming",
|
|
302
|
+
"path": "context/priming.md",
|
|
303
|
+
"category": "context",
|
|
304
|
+
"subcategory": null,
|
|
305
|
+
"tags": [
|
|
306
|
+
"context"
|
|
307
|
+
]
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"id": "core-architecture",
|
|
311
|
+
"name": "architecture",
|
|
312
|
+
"path": "core/architecture.md",
|
|
313
|
+
"category": "core",
|
|
314
|
+
"subcategory": null,
|
|
315
|
+
"tags": [
|
|
316
|
+
"core"
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"id": "core-coding",
|
|
321
|
+
"name": "coding",
|
|
322
|
+
"path": "core/coding.md",
|
|
323
|
+
"category": "core",
|
|
324
|
+
"subcategory": null,
|
|
325
|
+
"tags": [
|
|
326
|
+
"core"
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"id": "core-git-branching-strategy",
|
|
331
|
+
"name": "git branching strategy",
|
|
332
|
+
"path": "core/git-branching-strategy.md",
|
|
333
|
+
"category": "core",
|
|
334
|
+
"subcategory": null,
|
|
335
|
+
"tags": [
|
|
336
|
+
"core"
|
|
337
|
+
]
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "core-git",
|
|
341
|
+
"name": "git",
|
|
342
|
+
"path": "core/git.md",
|
|
343
|
+
"category": "core",
|
|
344
|
+
"subcategory": null,
|
|
345
|
+
"tags": [
|
|
346
|
+
"core"
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"id": "core-testing",
|
|
351
|
+
"name": "testing",
|
|
352
|
+
"path": "core/testing.md",
|
|
353
|
+
"category": "core",
|
|
354
|
+
"subcategory": null,
|
|
355
|
+
"tags": [
|
|
356
|
+
"core"
|
|
357
|
+
]
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": "data-nosql-blob-storage",
|
|
361
|
+
"name": "blob storage",
|
|
362
|
+
"path": "data/nosql/blob-storage.md",
|
|
363
|
+
"category": "data",
|
|
364
|
+
"subcategory": "nosql",
|
|
365
|
+
"tags": [
|
|
366
|
+
"data",
|
|
367
|
+
"nosql"
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"id": "data-nosql-cache-redis",
|
|
372
|
+
"name": "redis",
|
|
373
|
+
"path": "data/nosql/cache/redis.md",
|
|
374
|
+
"category": "data",
|
|
375
|
+
"subcategory": "nosql",
|
|
376
|
+
"tags": [
|
|
377
|
+
"data",
|
|
378
|
+
"nosql",
|
|
379
|
+
"cache"
|
|
380
|
+
]
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"id": "data-nosql-cosmos-db",
|
|
384
|
+
"name": "cosmos db",
|
|
385
|
+
"path": "data/nosql/cosmos-db.md",
|
|
386
|
+
"category": "data",
|
|
387
|
+
"subcategory": "nosql",
|
|
388
|
+
"tags": [
|
|
389
|
+
"data",
|
|
390
|
+
"nosql"
|
|
391
|
+
]
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"id": "data-vector-search-azure-ai-search",
|
|
395
|
+
"name": "azure ai search",
|
|
396
|
+
"path": "data/vector-search/azure-ai-search.md",
|
|
397
|
+
"category": "data",
|
|
398
|
+
"subcategory": "vector-search",
|
|
399
|
+
"tags": [
|
|
400
|
+
"data",
|
|
401
|
+
"vector-search"
|
|
402
|
+
]
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": "data-vector-search-rag-chunking",
|
|
406
|
+
"name": "rag chunking",
|
|
407
|
+
"path": "data/vector-search/rag-chunking.md",
|
|
408
|
+
"category": "data",
|
|
409
|
+
"subcategory": "vector-search",
|
|
410
|
+
"tags": [
|
|
411
|
+
"data",
|
|
412
|
+
"vector-search"
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "frontend-blazor-design-checklist",
|
|
417
|
+
"name": "design checklist",
|
|
418
|
+
"path": "frontend/blazor/design-checklist.md",
|
|
419
|
+
"category": "frontend",
|
|
420
|
+
"subcategory": "blazor",
|
|
421
|
+
"tags": [
|
|
422
|
+
"frontend",
|
|
423
|
+
"blazor"
|
|
424
|
+
]
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "frontend-blazor-fluent-ui-setup",
|
|
428
|
+
"name": "fluent ui setup",
|
|
429
|
+
"path": "frontend/blazor/fluent-ui-setup.md",
|
|
430
|
+
"category": "frontend",
|
|
431
|
+
"subcategory": "blazor",
|
|
432
|
+
"tags": [
|
|
433
|
+
"frontend",
|
|
434
|
+
"blazor"
|
|
435
|
+
]
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"id": "frontend-blazor-fluent-ui",
|
|
439
|
+
"name": "fluent ui",
|
|
440
|
+
"path": "frontend/blazor/fluent-ui.md",
|
|
441
|
+
"category": "frontend",
|
|
442
|
+
"subcategory": "blazor",
|
|
443
|
+
"tags": [
|
|
444
|
+
"frontend",
|
|
445
|
+
"blazor"
|
|
446
|
+
]
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"id": "frontend-blazor-html-conversion",
|
|
450
|
+
"name": "html conversion",
|
|
451
|
+
"path": "frontend/blazor/html-conversion.md",
|
|
452
|
+
"category": "frontend",
|
|
453
|
+
"subcategory": "blazor",
|
|
454
|
+
"tags": [
|
|
455
|
+
"frontend",
|
|
456
|
+
"blazor"
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": "frontend-blazor-lifecycle",
|
|
461
|
+
"name": "lifecycle",
|
|
462
|
+
"path": "frontend/blazor/lifecycle.md",
|
|
463
|
+
"category": "frontend",
|
|
464
|
+
"subcategory": "blazor",
|
|
465
|
+
"tags": [
|
|
466
|
+
"frontend",
|
|
467
|
+
"blazor"
|
|
468
|
+
]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "frontend-blazor-pitfalls",
|
|
472
|
+
"name": "pitfalls",
|
|
473
|
+
"path": "frontend/blazor/pitfalls.md",
|
|
474
|
+
"category": "frontend",
|
|
475
|
+
"subcategory": "blazor",
|
|
476
|
+
"tags": [
|
|
477
|
+
"frontend",
|
|
478
|
+
"blazor"
|
|
479
|
+
]
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"id": "frontend-blazor-state",
|
|
483
|
+
"name": "state",
|
|
484
|
+
"path": "frontend/blazor/state.md",
|
|
485
|
+
"category": "frontend",
|
|
486
|
+
"subcategory": "blazor",
|
|
487
|
+
"tags": [
|
|
488
|
+
"frontend",
|
|
489
|
+
"blazor"
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"id": "frontend-design-system-animations",
|
|
494
|
+
"name": "animations",
|
|
495
|
+
"path": "frontend/design-system/animations.md",
|
|
496
|
+
"category": "frontend",
|
|
497
|
+
"subcategory": "design-system",
|
|
498
|
+
"tags": [
|
|
499
|
+
"frontend",
|
|
500
|
+
"design-system"
|
|
501
|
+
]
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"id": "frontend-design-system-naming",
|
|
505
|
+
"name": "naming",
|
|
506
|
+
"path": "frontend/design-system/naming.md",
|
|
507
|
+
"category": "frontend",
|
|
508
|
+
"subcategory": "design-system",
|
|
509
|
+
"tags": [
|
|
510
|
+
"frontend",
|
|
511
|
+
"design-system"
|
|
512
|
+
]
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"id": "frontend-nextjs-nextjs-patterns",
|
|
516
|
+
"name": "nextjs patterns",
|
|
517
|
+
"path": "frontend/nextjs/nextjs-patterns.md",
|
|
518
|
+
"category": "frontend",
|
|
519
|
+
"subcategory": "nextjs",
|
|
520
|
+
"tags": [
|
|
521
|
+
"frontend",
|
|
522
|
+
"nextjs"
|
|
523
|
+
]
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"id": "infrastructure-azure-azure",
|
|
527
|
+
"name": "azure",
|
|
528
|
+
"path": "infrastructure/azure/azure.md",
|
|
529
|
+
"category": "infrastructure",
|
|
530
|
+
"subcategory": "azure",
|
|
531
|
+
"tags": [
|
|
532
|
+
"infrastructure",
|
|
533
|
+
"azure"
|
|
534
|
+
]
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"id": "infrastructure-azure-bicep-bicep-patterns",
|
|
538
|
+
"name": "bicep patterns",
|
|
539
|
+
"path": "infrastructure/azure/bicep/bicep-patterns.md",
|
|
540
|
+
"category": "infrastructure",
|
|
541
|
+
"subcategory": "azure",
|
|
542
|
+
"tags": [
|
|
543
|
+
"infrastructure",
|
|
544
|
+
"azure",
|
|
545
|
+
"bicep"
|
|
546
|
+
]
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"id": "infrastructure-azure-devops-azure-devops-setup",
|
|
550
|
+
"name": "azure devops setup",
|
|
551
|
+
"path": "infrastructure/azure/devops/azure-devops-setup.md",
|
|
552
|
+
"category": "infrastructure",
|
|
553
|
+
"subcategory": "azure",
|
|
554
|
+
"tags": [
|
|
555
|
+
"infrastructure",
|
|
556
|
+
"azure",
|
|
557
|
+
"devops"
|
|
558
|
+
]
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"id": "infrastructure-azure-devops-local-development",
|
|
562
|
+
"name": "local development",
|
|
563
|
+
"path": "infrastructure/azure/devops/local-development.md",
|
|
564
|
+
"category": "infrastructure",
|
|
565
|
+
"subcategory": "azure",
|
|
566
|
+
"tags": [
|
|
567
|
+
"infrastructure",
|
|
568
|
+
"azure",
|
|
569
|
+
"devops"
|
|
570
|
+
]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"id": "infrastructure-azure-services-functions",
|
|
574
|
+
"name": "functions",
|
|
575
|
+
"path": "infrastructure/azure/services/functions.md",
|
|
576
|
+
"category": "infrastructure",
|
|
577
|
+
"subcategory": "azure",
|
|
578
|
+
"tags": [
|
|
579
|
+
"infrastructure",
|
|
580
|
+
"azure",
|
|
581
|
+
"services"
|
|
582
|
+
]
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"id": "infrastructure-azure-services-service-bus",
|
|
586
|
+
"name": "service bus",
|
|
587
|
+
"path": "infrastructure/azure/services/service-bus.md",
|
|
588
|
+
"category": "infrastructure",
|
|
589
|
+
"subcategory": "azure",
|
|
590
|
+
"tags": [
|
|
591
|
+
"infrastructure",
|
|
592
|
+
"azure",
|
|
593
|
+
"services"
|
|
594
|
+
]
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"id": "infrastructure-azure-services-storage",
|
|
598
|
+
"name": "storage",
|
|
599
|
+
"path": "infrastructure/azure/services/storage.md",
|
|
600
|
+
"category": "infrastructure",
|
|
601
|
+
"subcategory": "azure",
|
|
602
|
+
"tags": [
|
|
603
|
+
"infrastructure",
|
|
604
|
+
"azure",
|
|
605
|
+
"services"
|
|
606
|
+
]
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"id": "infrastructure-docker-easypanel-deploy",
|
|
610
|
+
"name": "easypanel deploy",
|
|
611
|
+
"path": "infrastructure/docker/easypanel-deploy.md",
|
|
612
|
+
"category": "infrastructure",
|
|
613
|
+
"subcategory": "docker",
|
|
614
|
+
"tags": [
|
|
615
|
+
"infrastructure",
|
|
616
|
+
"docker"
|
|
617
|
+
]
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"id": "infrastructure-supabase-mcp-setup",
|
|
621
|
+
"name": "mcp setup",
|
|
622
|
+
"path": "infrastructure/supabase/mcp-setup.md",
|
|
623
|
+
"category": "infrastructure",
|
|
624
|
+
"subcategory": "supabase",
|
|
625
|
+
"tags": [
|
|
626
|
+
"infrastructure",
|
|
627
|
+
"supabase"
|
|
628
|
+
]
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"id": "infrastructure-supabase-supabase-auth",
|
|
632
|
+
"name": "supabase auth",
|
|
633
|
+
"path": "infrastructure/supabase/supabase-auth.md",
|
|
634
|
+
"category": "infrastructure",
|
|
635
|
+
"subcategory": "supabase",
|
|
636
|
+
"tags": [
|
|
637
|
+
"infrastructure",
|
|
638
|
+
"supabase"
|
|
639
|
+
]
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"id": "infrastructure-supabase-supabase-pgvector",
|
|
643
|
+
"name": "supabase pgvector",
|
|
644
|
+
"path": "infrastructure/supabase/supabase-pgvector.md",
|
|
645
|
+
"category": "infrastructure",
|
|
646
|
+
"subcategory": "supabase",
|
|
647
|
+
"tags": [
|
|
648
|
+
"infrastructure",
|
|
649
|
+
"supabase"
|
|
650
|
+
]
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"id": "infrastructure-supabase-supabase-rls",
|
|
654
|
+
"name": "supabase rls",
|
|
655
|
+
"path": "infrastructure/supabase/supabase-rls.md",
|
|
656
|
+
"category": "infrastructure",
|
|
657
|
+
"subcategory": "supabase",
|
|
658
|
+
"tags": [
|
|
659
|
+
"infrastructure",
|
|
660
|
+
"supabase"
|
|
661
|
+
]
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"id": "infrastructure-supabase-supabase-storage",
|
|
665
|
+
"name": "supabase storage",
|
|
666
|
+
"path": "infrastructure/supabase/supabase-storage.md",
|
|
667
|
+
"category": "infrastructure",
|
|
668
|
+
"subcategory": "supabase",
|
|
669
|
+
"tags": [
|
|
670
|
+
"infrastructure",
|
|
671
|
+
"supabase"
|
|
672
|
+
]
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"id": "integration-api-graphql",
|
|
676
|
+
"name": "graphql",
|
|
677
|
+
"path": "integration/api/graphql.md",
|
|
678
|
+
"category": "integration",
|
|
679
|
+
"subcategory": "api",
|
|
680
|
+
"tags": [
|
|
681
|
+
"integration",
|
|
682
|
+
"api"
|
|
683
|
+
]
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"id": "integration-api-grpc",
|
|
687
|
+
"name": "grpc",
|
|
688
|
+
"path": "integration/api/grpc.md",
|
|
689
|
+
"category": "integration",
|
|
690
|
+
"subcategory": "api",
|
|
691
|
+
"tags": [
|
|
692
|
+
"integration",
|
|
693
|
+
"api"
|
|
694
|
+
]
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"id": "integration-api-rest-design",
|
|
698
|
+
"name": "rest design",
|
|
699
|
+
"path": "integration/api/rest-design.md",
|
|
700
|
+
"category": "integration",
|
|
701
|
+
"subcategory": "api",
|
|
702
|
+
"tags": [
|
|
703
|
+
"integration",
|
|
704
|
+
"api"
|
|
705
|
+
]
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"id": "integration-event-driven-cqrs",
|
|
709
|
+
"name": "cqrs",
|
|
710
|
+
"path": "integration/event-driven/cqrs.md",
|
|
711
|
+
"category": "integration",
|
|
712
|
+
"subcategory": "event-driven",
|
|
713
|
+
"tags": [
|
|
714
|
+
"integration",
|
|
715
|
+
"event-driven"
|
|
716
|
+
]
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"id": "integration-event-driven-event-sourcing",
|
|
720
|
+
"name": "event sourcing",
|
|
721
|
+
"path": "integration/event-driven/event-sourcing.md",
|
|
722
|
+
"category": "integration",
|
|
723
|
+
"subcategory": "event-driven",
|
|
724
|
+
"tags": [
|
|
725
|
+
"integration",
|
|
726
|
+
"event-driven"
|
|
727
|
+
]
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"id": "integration-event-driven-service-bus",
|
|
731
|
+
"name": "service bus",
|
|
732
|
+
"path": "integration/event-driven/service-bus.md",
|
|
733
|
+
"category": "integration",
|
|
734
|
+
"subcategory": "event-driven",
|
|
735
|
+
"tags": [
|
|
736
|
+
"integration",
|
|
737
|
+
"event-driven"
|
|
738
|
+
]
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"id": "integration-mcp-mcp-tools",
|
|
742
|
+
"name": "mcp tools",
|
|
743
|
+
"path": "integration/mcp/mcp-tools.md",
|
|
744
|
+
"category": "integration",
|
|
745
|
+
"subcategory": "mcp",
|
|
746
|
+
"tags": [
|
|
747
|
+
"integration",
|
|
748
|
+
"mcp"
|
|
749
|
+
]
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"id": "observability-logging",
|
|
753
|
+
"name": "logging",
|
|
754
|
+
"path": "observability/logging.md",
|
|
755
|
+
"category": "observability",
|
|
756
|
+
"subcategory": null,
|
|
757
|
+
"tags": [
|
|
758
|
+
"observability"
|
|
759
|
+
]
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"id": "observability-metrics",
|
|
763
|
+
"name": "metrics",
|
|
764
|
+
"path": "observability/metrics.md",
|
|
765
|
+
"category": "observability",
|
|
766
|
+
"subcategory": null,
|
|
767
|
+
"tags": [
|
|
768
|
+
"observability"
|
|
769
|
+
]
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"id": "observability-monitoring",
|
|
773
|
+
"name": "monitoring",
|
|
774
|
+
"path": "observability/monitoring.md",
|
|
775
|
+
"category": "observability",
|
|
776
|
+
"subcategory": null,
|
|
777
|
+
"tags": [
|
|
778
|
+
"observability"
|
|
779
|
+
]
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"id": "observability-tracing",
|
|
783
|
+
"name": "tracing",
|
|
784
|
+
"path": "observability/tracing.md",
|
|
785
|
+
"category": "observability",
|
|
786
|
+
"subcategory": null,
|
|
787
|
+
"tags": [
|
|
788
|
+
"observability"
|
|
789
|
+
]
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"id": "workflows-parallel-execution",
|
|
793
|
+
"name": "parallel execution",
|
|
794
|
+
"path": "workflows/parallel-execution.md",
|
|
795
|
+
"category": "workflows",
|
|
796
|
+
"subcategory": null,
|
|
797
|
+
"tags": [
|
|
798
|
+
"workflows"
|
|
799
|
+
]
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"id": "workflows-thread-management",
|
|
803
|
+
"name": "thread management",
|
|
804
|
+
"path": "workflows/thread-management.md",
|
|
805
|
+
"category": "workflows",
|
|
806
|
+
"subcategory": null,
|
|
807
|
+
"tags": [
|
|
808
|
+
"workflows"
|
|
809
|
+
]
|
|
810
|
+
}
|
|
811
|
+
]
|
|
812
|
+
}
|