@agile-vibe-coding/avc 0.1.1 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/agent-loader.js +21 -0
- package/cli/agents/agent-selector.md +152 -0
- package/cli/agents/architecture-recommender.md +418 -0
- package/cli/agents/code-implementer.md +117 -0
- package/cli/agents/code-validator.md +80 -0
- package/cli/agents/context-reviewer-epic.md +101 -0
- package/cli/agents/context-reviewer-story.md +92 -0
- package/cli/agents/context-writer-epic.md +145 -0
- package/cli/agents/context-writer-story.md +111 -0
- package/cli/agents/database-deep-dive.md +470 -0
- package/cli/agents/database-recommender.md +634 -0
- package/cli/agents/doc-distributor.md +176 -0
- package/cli/agents/doc-writer-epic.md +42 -0
- package/cli/agents/doc-writer-story.md +43 -0
- package/cli/agents/documentation-updater.md +203 -0
- package/cli/agents/duplicate-detector.md +110 -0
- package/cli/agents/epic-story-decomposer.md +559 -0
- package/cli/agents/feature-context-generator.md +91 -0
- package/cli/agents/gap-checker-epic.md +52 -0
- package/cli/agents/impact-checker-story.md +51 -0
- package/cli/agents/migration-guide-generator.md +305 -0
- package/cli/agents/mission-scope-generator.md +143 -0
- package/cli/agents/mission-scope-validator.md +146 -0
- package/cli/agents/project-context-extractor.md +122 -0
- package/cli/agents/project-documentation-creator.json +226 -0
- package/cli/agents/project-documentation-creator.md +595 -0
- package/cli/agents/question-prefiller.md +269 -0
- package/cli/agents/refiner-epic.md +39 -0
- package/cli/agents/refiner-story.md +42 -0
- package/cli/agents/scaffolding-generator.md +99 -0
- package/cli/agents/seed-validator.md +71 -0
- package/cli/agents/story-doc-enricher.md +133 -0
- package/cli/agents/story-scope-reviewer.md +147 -0
- package/cli/agents/story-splitter.md +83 -0
- package/cli/agents/suggestion-business-analyst.md +88 -0
- package/cli/agents/suggestion-deployment-architect.md +263 -0
- package/cli/agents/suggestion-product-manager.md +129 -0
- package/cli/agents/suggestion-security-specialist.md +156 -0
- package/cli/agents/suggestion-technical-architect.md +269 -0
- package/cli/agents/suggestion-ux-researcher.md +93 -0
- package/cli/agents/task-subtask-decomposer.md +188 -0
- package/cli/agents/validator-documentation.json +183 -0
- package/cli/agents/validator-documentation.md +455 -0
- package/cli/agents/validator-selector.md +211 -0
- package/cli/ansi-colors.js +21 -0
- package/cli/api-reference-tool.js +368 -0
- package/cli/build-docs.js +29 -8
- package/cli/ceremony-history.js +369 -0
- package/cli/checks/catalog.json +76 -0
- package/cli/checks/code/quality.json +26 -0
- package/cli/checks/code/testing.json +14 -0
- package/cli/checks/code/traceability.json +26 -0
- package/cli/checks/cross-refs/epic.json +171 -0
- package/cli/checks/cross-refs/story.json +149 -0
- package/cli/checks/epic/api.json +114 -0
- package/cli/checks/epic/backend.json +126 -0
- package/cli/checks/epic/cloud.json +126 -0
- package/cli/checks/epic/data.json +102 -0
- package/cli/checks/epic/database.json +114 -0
- package/cli/checks/epic/developer.json +182 -0
- package/cli/checks/epic/devops.json +174 -0
- package/cli/checks/epic/frontend.json +162 -0
- package/cli/checks/epic/mobile.json +102 -0
- package/cli/checks/epic/qa.json +90 -0
- package/cli/checks/epic/security.json +184 -0
- package/cli/checks/epic/solution-architect.json +192 -0
- package/cli/checks/epic/test-architect.json +90 -0
- package/cli/checks/epic/ui.json +102 -0
- package/cli/checks/epic/ux.json +90 -0
- package/cli/checks/fixes/epic-fix-template.md +10 -0
- package/cli/checks/fixes/story-fix-template.md +10 -0
- package/cli/checks/story/api.json +186 -0
- package/cli/checks/story/backend.json +102 -0
- package/cli/checks/story/cloud.json +102 -0
- package/cli/checks/story/data.json +210 -0
- package/cli/checks/story/database.json +102 -0
- package/cli/checks/story/developer.json +168 -0
- package/cli/checks/story/devops.json +102 -0
- package/cli/checks/story/frontend.json +174 -0
- package/cli/checks/story/mobile.json +102 -0
- package/cli/checks/story/qa.json +210 -0
- package/cli/checks/story/security.json +198 -0
- package/cli/checks/story/solution-architect.json +230 -0
- package/cli/checks/story/test-architect.json +210 -0
- package/cli/checks/story/ui.json +102 -0
- package/cli/checks/story/ux.json +102 -0
- package/cli/coding-order.js +401 -0
- package/cli/command-logger.js +49 -12
- package/cli/components/static-output.js +63 -0
- package/cli/console-output-manager.js +94 -0
- package/cli/dependency-checker.js +72 -0
- package/cli/docs-sync.js +306 -0
- package/cli/epic-story-validator.js +659 -0
- package/cli/evaluation-prompts.js +1008 -0
- package/cli/execution-context.js +195 -0
- package/cli/generate-summary-table.js +340 -0
- package/cli/init-model-config.js +704 -0
- package/cli/init.js +1737 -278
- package/cli/kanban-server-manager.js +227 -0
- package/cli/llm-claude.js +150 -1
- package/cli/llm-gemini.js +109 -0
- package/cli/llm-local.js +493 -0
- package/cli/llm-mock.js +233 -0
- package/cli/llm-openai.js +454 -0
- package/cli/llm-provider.js +379 -3
- package/cli/llm-token-limits.js +211 -0
- package/cli/llm-verifier.js +662 -0
- package/cli/llm-xiaomi.js +143 -0
- package/cli/message-constants.js +49 -0
- package/cli/message-manager.js +334 -0
- package/cli/message-types.js +96 -0
- package/cli/messaging-api.js +291 -0
- package/cli/micro-check-fixer.js +335 -0
- package/cli/micro-check-runner.js +449 -0
- package/cli/micro-check-scorer.js +148 -0
- package/cli/micro-check-validator.js +538 -0
- package/cli/model-pricing.js +192 -0
- package/cli/model-query-engine.js +468 -0
- package/cli/model-recommendation-analyzer.js +495 -0
- package/cli/model-selector.js +270 -0
- package/cli/output-buffer.js +107 -0
- package/cli/process-manager.js +73 -2
- package/cli/prompt-logger.js +57 -0
- package/cli/repl-ink.js +4625 -1094
- package/cli/repl-old.js +3 -4
- package/cli/seed-processor.js +962 -0
- package/cli/sprint-planning-processor.js +4162 -0
- package/cli/template-processor.js +2149 -105
- package/cli/templates/project.md +25 -8
- package/cli/templates/vitepress-config.mts.template +5 -4
- package/cli/token-tracker.js +547 -0
- package/cli/tools/generate-story-validators.js +317 -0
- package/cli/tools/generate-validators.js +669 -0
- package/cli/update-checker.js +19 -17
- package/cli/update-notifier.js +4 -4
- package/cli/validation-router.js +667 -0
- package/cli/verification-tracker.js +563 -0
- package/cli/worktree-runner.js +654 -0
- package/kanban/README.md +386 -0
- package/kanban/client/README.md +205 -0
- package/kanban/client/components.json +20 -0
- package/kanban/client/dist/assets/index-D_KC5EQT.css +1 -0
- package/kanban/client/dist/assets/index-DjY5zqW7.js +351 -0
- package/kanban/client/dist/index.html +16 -0
- package/kanban/client/dist/vite.svg +1 -0
- package/kanban/client/index.html +15 -0
- package/kanban/client/package-lock.json +9442 -0
- package/kanban/client/package.json +44 -0
- package/kanban/client/postcss.config.js +6 -0
- package/kanban/client/public/vite.svg +1 -0
- package/kanban/client/src/App.jsx +651 -0
- package/kanban/client/src/components/ProjectFileEditorPopup.jsx +117 -0
- package/kanban/client/src/components/ceremony/AskArchPopup.jsx +420 -0
- package/kanban/client/src/components/ceremony/AskModelPopup.jsx +629 -0
- package/kanban/client/src/components/ceremony/CeremonyWorkflowModal.jsx +1133 -0
- package/kanban/client/src/components/ceremony/EpicStorySelectionModal.jsx +254 -0
- package/kanban/client/src/components/ceremony/ProviderSwitcherButton.jsx +290 -0
- package/kanban/client/src/components/ceremony/SponsorCallModal.jsx +686 -0
- package/kanban/client/src/components/ceremony/SprintPlanningModal.jsx +838 -0
- package/kanban/client/src/components/ceremony/steps/ArchitectureStep.jsx +150 -0
- package/kanban/client/src/components/ceremony/steps/CompleteStep.jsx +136 -0
- package/kanban/client/src/components/ceremony/steps/DatabaseStep.jsx +202 -0
- package/kanban/client/src/components/ceremony/steps/DeploymentStep.jsx +123 -0
- package/kanban/client/src/components/ceremony/steps/MissionStep.jsx +106 -0
- package/kanban/client/src/components/ceremony/steps/ReviewAnswersStep.jsx +329 -0
- package/kanban/client/src/components/ceremony/steps/RunningStep.jsx +249 -0
- package/kanban/client/src/components/kanban/CardDetailModal.jsx +646 -0
- package/kanban/client/src/components/kanban/EpicSection.jsx +146 -0
- package/kanban/client/src/components/kanban/FilterToolbar.jsx +222 -0
- package/kanban/client/src/components/kanban/GroupingSelector.jsx +63 -0
- package/kanban/client/src/components/kanban/KanbanBoard.jsx +211 -0
- package/kanban/client/src/components/kanban/KanbanCard.jsx +147 -0
- package/kanban/client/src/components/kanban/KanbanColumn.jsx +90 -0
- package/kanban/client/src/components/kanban/RefineWorkItemPopup.jsx +784 -0
- package/kanban/client/src/components/kanban/RunButton.jsx +162 -0
- package/kanban/client/src/components/kanban/SeedButton.jsx +176 -0
- package/kanban/client/src/components/layout/LoadingScreen.jsx +82 -0
- package/kanban/client/src/components/process/ProcessMonitorBar.jsx +80 -0
- package/kanban/client/src/components/settings/AgentEditorPopup.jsx +171 -0
- package/kanban/client/src/components/settings/AgentsTab.jsx +381 -0
- package/kanban/client/src/components/settings/ApiKeysTab.jsx +142 -0
- package/kanban/client/src/components/settings/CeremonyModelsTab.jsx +105 -0
- package/kanban/client/src/components/settings/CheckEditorPopup.jsx +507 -0
- package/kanban/client/src/components/settings/CostThresholdsTab.jsx +95 -0
- package/kanban/client/src/components/settings/ModelPricingTab.jsx +269 -0
- package/kanban/client/src/components/settings/OpenAIAuthSection.jsx +412 -0
- package/kanban/client/src/components/settings/ServersTab.jsx +121 -0
- package/kanban/client/src/components/settings/SettingsModal.jsx +84 -0
- package/kanban/client/src/components/stats/CostModal.jsx +384 -0
- package/kanban/client/src/components/ui/badge.jsx +27 -0
- package/kanban/client/src/components/ui/dialog.jsx +121 -0
- package/kanban/client/src/components/ui/tabs.jsx +85 -0
- package/kanban/client/src/hooks/__tests__/useGrouping.test.js +232 -0
- package/kanban/client/src/hooks/useGrouping.js +177 -0
- package/kanban/client/src/hooks/useWebSocket.js +120 -0
- package/kanban/client/src/lib/__tests__/api.test.js +196 -0
- package/kanban/client/src/lib/__tests__/status-grouping.test.js +94 -0
- package/kanban/client/src/lib/api.js +515 -0
- package/kanban/client/src/lib/status-grouping.js +154 -0
- package/kanban/client/src/lib/utils.js +11 -0
- package/kanban/client/src/main.jsx +10 -0
- package/kanban/client/src/store/__tests__/kanbanStore.test.js +164 -0
- package/kanban/client/src/store/ceremonyStore.js +172 -0
- package/kanban/client/src/store/filterStore.js +201 -0
- package/kanban/client/src/store/kanbanStore.js +123 -0
- package/kanban/client/src/store/processStore.js +65 -0
- package/kanban/client/src/store/sprintPlanningStore.js +33 -0
- package/kanban/client/src/styles/globals.css +59 -0
- package/kanban/client/tailwind.config.js +77 -0
- package/kanban/client/vite.config.js +28 -0
- package/kanban/client/vitest.config.js +28 -0
- package/kanban/dev-start.sh +47 -0
- package/kanban/package.json +12 -0
- package/kanban/server/index.js +537 -0
- package/kanban/server/routes/ceremony.js +454 -0
- package/kanban/server/routes/costs.js +163 -0
- package/kanban/server/routes/openai-oauth.js +366 -0
- package/kanban/server/routes/processes.js +50 -0
- package/kanban/server/routes/settings.js +736 -0
- package/kanban/server/routes/websocket.js +281 -0
- package/kanban/server/routes/work-items.js +487 -0
- package/kanban/server/services/CeremonyService.js +1441 -0
- package/kanban/server/services/FileSystemScanner.js +95 -0
- package/kanban/server/services/FileWatcher.js +144 -0
- package/kanban/server/services/HierarchyBuilder.js +196 -0
- package/kanban/server/services/ProcessRegistry.js +122 -0
- package/kanban/server/services/TaskRunnerService.js +261 -0
- package/kanban/server/services/WorkItemReader.js +123 -0
- package/kanban/server/services/WorkItemRefineService.js +510 -0
- package/kanban/server/start.js +49 -0
- package/kanban/server/utils/kanban-logger.js +132 -0
- package/kanban/server/utils/markdown.js +91 -0
- package/kanban/server/utils/status-grouping.js +107 -0
- package/kanban/server/workers/run-task-worker.js +121 -0
- package/kanban/server/workers/seed-worker.js +94 -0
- package/kanban/server/workers/sponsor-call-worker.js +92 -0
- package/kanban/server/workers/sprint-planning-worker.js +212 -0
- package/package.json +19 -7
- package/cli/agents/documentation.md +0 -302
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
{
|
|
2
|
+
"scope": "story",
|
|
3
|
+
"tier": 2,
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "xref-sec-api-story-01",
|
|
7
|
+
"tier": 2,
|
|
8
|
+
"perspectives": ["security", "api"],
|
|
9
|
+
"severity": "major",
|
|
10
|
+
"category": "consistency",
|
|
11
|
+
"dependsOn": ["sec-story-04", "api-story-01"],
|
|
12
|
+
"question": "Security auth in story: {{sec-story-04.evidence}}. API contract: {{api-story-01.evidence}}. Are the story's authentication requirements consistent with its API endpoint definitions?",
|
|
13
|
+
"failDescription": "Story security auth model and API endpoint definitions are inconsistent",
|
|
14
|
+
"failSuggestion": "Align story's API endpoint auth with its security requirements"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "xref-sec-api-story-02",
|
|
18
|
+
"tier": 2,
|
|
19
|
+
"perspectives": ["security", "api"],
|
|
20
|
+
"severity": "major",
|
|
21
|
+
"category": "consistency",
|
|
22
|
+
"dependsOn": ["sec-story-07", "api-story-03"],
|
|
23
|
+
"question": "Security input validation: {{sec-story-07.evidence}}. API inputs: {{api-story-03.evidence}}. Are input validation requirements consistent between security and API acceptance criteria?",
|
|
24
|
+
"failDescription": "Input validation requirements are inconsistent between security and API perspectives",
|
|
25
|
+
"failSuggestion": "Ensure every API input field has matching server-side validation from the security perspective"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "xref-sec-api-story-03",
|
|
29
|
+
"tier": 2,
|
|
30
|
+
"perspectives": ["security", "api"],
|
|
31
|
+
"severity": "major",
|
|
32
|
+
"category": "consistency",
|
|
33
|
+
"dependsOn": ["sec-story-05", "api-story-02"],
|
|
34
|
+
"question": "Security authorization: {{sec-story-05.evidence}}. API authorization: {{api-story-02.evidence}}. Are IDOR/BOLA protections and role boundary definitions consistent?",
|
|
35
|
+
"failDescription": "Authorization protections differ between security and API perspectives",
|
|
36
|
+
"failSuggestion": "Align IDOR protection and role boundary checks across security and API acceptance criteria"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "xref-sec-db-story-01",
|
|
40
|
+
"tier": 2,
|
|
41
|
+
"perspectives": ["security", "database"],
|
|
42
|
+
"severity": "major",
|
|
43
|
+
"category": "consistency",
|
|
44
|
+
"dependsOn": ["sec-story-09", "db-story-01"],
|
|
45
|
+
"question": "Security PII handling: {{sec-story-09.evidence}}. Database fields: {{db-story-01.evidence}}. Are PII fields handled consistently between security and database criteria?",
|
|
46
|
+
"failDescription": "PII handling differs between security and database acceptance criteria",
|
|
47
|
+
"failSuggestion": "Align PII field handling — database should reflect security's minimization and encryption requirements"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "xref-sec-db-story-02",
|
|
51
|
+
"tier": 2,
|
|
52
|
+
"perspectives": ["security", "database"],
|
|
53
|
+
"severity": "major",
|
|
54
|
+
"category": "consistency",
|
|
55
|
+
"dependsOn": ["sec-story-10", "db-story-02"],
|
|
56
|
+
"question": "Security logging: {{sec-story-10.evidence}}. Database audit: {{db-story-02.evidence}}. Are audit logging requirements consistent?",
|
|
57
|
+
"failDescription": "Audit logging requirements differ between security and database perspectives",
|
|
58
|
+
"failSuggestion": "Ensure audit log events defined in security ACs have corresponding database persistence"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "xref-be-api-story-01",
|
|
62
|
+
"tier": 2,
|
|
63
|
+
"perspectives": ["backend", "api"],
|
|
64
|
+
"severity": "major",
|
|
65
|
+
"category": "consistency",
|
|
66
|
+
"dependsOn": ["be-story-01", "api-story-01"],
|
|
67
|
+
"question": "Backend implementation: {{be-story-01.evidence}}. API contract: {{api-story-01.evidence}}. Are backend implementation details consistent with API contract definitions?",
|
|
68
|
+
"failDescription": "Backend implementation and API contract are misaligned",
|
|
69
|
+
"failSuggestion": "Align backend implementation with API contract — handlers should match endpoint definitions"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "xref-be-api-story-02",
|
|
73
|
+
"tier": 2,
|
|
74
|
+
"perspectives": ["backend", "api"],
|
|
75
|
+
"severity": "major",
|
|
76
|
+
"category": "consistency",
|
|
77
|
+
"dependsOn": ["be-story-02", "api-story-03"],
|
|
78
|
+
"question": "Backend error handling: {{be-story-02.evidence}}. API errors: {{api-story-03.evidence}}. Are error handling patterns consistent?",
|
|
79
|
+
"failDescription": "Backend error handling doesn't match API error definitions",
|
|
80
|
+
"failSuggestion": "Align backend error paths with API error response specifications"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "xref-devops-be-story-01",
|
|
84
|
+
"tier": 2,
|
|
85
|
+
"perspectives": ["devops", "backend"],
|
|
86
|
+
"severity": "minor",
|
|
87
|
+
"category": "consistency",
|
|
88
|
+
"dependsOn": ["devops-story-01", "be-story-03"],
|
|
89
|
+
"question": "DevOps requirements: {{devops-story-01.evidence}}. Backend architecture: {{be-story-03.evidence}}. Are deployment requirements consistent with the backend implementation?",
|
|
90
|
+
"failDescription": "DevOps and backend requirements are inconsistent",
|
|
91
|
+
"failSuggestion": "Align deployment configuration with backend runtime requirements"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "xref-qa-dev-story-01",
|
|
95
|
+
"tier": 2,
|
|
96
|
+
"perspectives": ["test-architect", "developer"],
|
|
97
|
+
"severity": "major",
|
|
98
|
+
"category": "consistency",
|
|
99
|
+
"dependsOn": ["ta-story-01", "dev-story-04"],
|
|
100
|
+
"question": "Test architecture: {{ta-story-01.evidence}}. Developer testing: {{dev-story-04.evidence}}. Are test requirements consistent between test architect and developer perspectives?",
|
|
101
|
+
"failDescription": "Test requirements are misaligned between test architect and developer",
|
|
102
|
+
"failSuggestion": "Align test scenarios with test architecture layers (unit, integration, e2e)"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"id": "xref-qa-sec-story-01",
|
|
106
|
+
"tier": 2,
|
|
107
|
+
"perspectives": ["test-architect", "security"],
|
|
108
|
+
"severity": "major",
|
|
109
|
+
"category": "consistency",
|
|
110
|
+
"dependsOn": ["ta-story-02", "sec-story-11"],
|
|
111
|
+
"question": "Test coverage: {{ta-story-02.evidence}}. Security testing: {{sec-story-11.evidence}}. Does the test strategy cover security-specific scenarios (abuse, unauthorized access)?",
|
|
112
|
+
"failDescription": "Test strategy doesn't cover security-specific scenarios",
|
|
113
|
+
"failSuggestion": "Add test scenarios for security abuse paths (wrong credentials, forged tokens, unauthorized access)"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "xref-qa-api-story-01",
|
|
117
|
+
"tier": 2,
|
|
118
|
+
"perspectives": ["test-architect", "api"],
|
|
119
|
+
"severity": "major",
|
|
120
|
+
"category": "consistency",
|
|
121
|
+
"dependsOn": ["ta-story-03", "api-story-01"],
|
|
122
|
+
"question": "Test approach: {{ta-story-03.evidence}}. API endpoints: {{api-story-01.evidence}}. Does the testing strategy include integration tests for the story's API endpoints?",
|
|
123
|
+
"failDescription": "Testing strategy doesn't cover API integration tests for this story",
|
|
124
|
+
"failSuggestion": "Add API integration test scenarios for each endpoint with success and error paths"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id": "xref-sa-be-story-01",
|
|
128
|
+
"tier": 2,
|
|
129
|
+
"perspectives": ["solution-architect", "backend"],
|
|
130
|
+
"severity": "major",
|
|
131
|
+
"category": "consistency",
|
|
132
|
+
"dependsOn": ["sa-story-05", "be-story-01"],
|
|
133
|
+
"question": "SA dependencies: {{sa-story-05.evidence}}. Backend implementation: {{be-story-01.evidence}}. Are story dependencies and integration points consistent with backend implementation?",
|
|
134
|
+
"failDescription": "Story dependencies don't match backend implementation",
|
|
135
|
+
"failSuggestion": "Align story dependencies with actual backend service boundaries"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "xref-sa-api-story-01",
|
|
139
|
+
"tier": 2,
|
|
140
|
+
"perspectives": ["solution-architect", "api"],
|
|
141
|
+
"severity": "major",
|
|
142
|
+
"category": "consistency",
|
|
143
|
+
"dependsOn": ["sa-story-01", "api-story-01"],
|
|
144
|
+
"question": "SA API contract: {{sa-story-01.evidence}}. API definition: {{api-story-01.evidence}}. Are SA-level API requirements consistent with detailed API definitions?",
|
|
145
|
+
"failDescription": "SA API requirements and detailed API definitions are inconsistent",
|
|
146
|
+
"failSuggestion": "Ensure SA endpoint requirements match the detailed API contract"
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "api",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "api-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "api",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "completeness",
|
|
11
|
+
"universal": false,
|
|
12
|
+
"applicabilityQuestion": "Does this epic expose or consume APIs? (Does it define REST endpoints, GraphQL operations, or API contracts?)",
|
|
13
|
+
"question": "Does the epic scope clearly define API boundaries?",
|
|
14
|
+
"failDescription": "API boundaries are not defined — unclear which endpoints and resources are in scope",
|
|
15
|
+
"failSuggestion": "Define API boundaries: list endpoints, resource models, and API versioning strategy"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "api-epic-02",
|
|
19
|
+
"tier": 1,
|
|
20
|
+
"perspective": "api",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "completeness",
|
|
23
|
+
"universal": false,
|
|
24
|
+
"applicabilityQuestion": "Does this epic expose or consume APIs?",
|
|
25
|
+
"question": "Are all critical API features identified?",
|
|
26
|
+
"failDescription": "Critical API features are missing — endpoints, auth, or error handling not fully identified",
|
|
27
|
+
"failSuggestion": "Identify critical API features: endpoint specifications, authentication, rate limiting, error handling, versioning"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "api-epic-03",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"perspective": "api",
|
|
33
|
+
"severity": "major",
|
|
34
|
+
"category": "completeness",
|
|
35
|
+
"universal": false,
|
|
36
|
+
"applicabilityQuestion": "Does this epic depend on API services or infrastructure?",
|
|
37
|
+
"question": "Are dependencies on API services/infrastructure explicit?",
|
|
38
|
+
"failDescription": "API service dependencies are not explicit",
|
|
39
|
+
"failSuggestion": "Make API dependencies explicit: API gateway, authentication service, external APIs consumed"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "api-epic-04",
|
|
43
|
+
"tier": 1,
|
|
44
|
+
"perspective": "api",
|
|
45
|
+
"severity": "major",
|
|
46
|
+
"category": "completeness",
|
|
47
|
+
"universal": false,
|
|
48
|
+
"applicabilityQuestion": "Does this epic expose or consume APIs?",
|
|
49
|
+
"question": "Are API success criteria measurable?",
|
|
50
|
+
"failDescription": "API success criteria are not measurable",
|
|
51
|
+
"failSuggestion": "Define measurable API criteria: response time, throughput, error rate, uptime SLA"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "api-epic-05",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"perspective": "api",
|
|
57
|
+
"severity": "minor",
|
|
58
|
+
"category": "clarity",
|
|
59
|
+
"universal": false,
|
|
60
|
+
"applicabilityQuestion": "Does this epic expose or consume APIs?",
|
|
61
|
+
"question": "Is API terminology used correctly?",
|
|
62
|
+
"failDescription": "API terminology is used incorrectly or inconsistently",
|
|
63
|
+
"failSuggestion": "Review API terminology: REST methods, status codes, resource naming, pagination"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "api-epic-06",
|
|
67
|
+
"tier": 1,
|
|
68
|
+
"perspective": "api",
|
|
69
|
+
"severity": "major",
|
|
70
|
+
"category": "technical-depth",
|
|
71
|
+
"universal": false,
|
|
72
|
+
"applicabilityQuestion": "Does this epic involve API design or architecture?",
|
|
73
|
+
"question": "Are API architectural patterns considered?",
|
|
74
|
+
"failDescription": "API architectural patterns are not considered",
|
|
75
|
+
"failSuggestion": "Consider API patterns: RESTful resource design, consistent error format, pagination, filtering, versioning"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "api-epic-07",
|
|
79
|
+
"tier": 1,
|
|
80
|
+
"perspective": "api",
|
|
81
|
+
"severity": "major",
|
|
82
|
+
"category": "technical-depth",
|
|
83
|
+
"universal": false,
|
|
84
|
+
"applicabilityQuestion": "Does this epic expose APIs that need to handle load?",
|
|
85
|
+
"question": "Are performance/scalability concerns for API addressed?",
|
|
86
|
+
"failDescription": "API performance and scalability concerns are not addressed",
|
|
87
|
+
"failSuggestion": "Address API performance: rate limiting, caching headers, pagination limits, payload size constraints"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "api-epic-08",
|
|
91
|
+
"tier": 1,
|
|
92
|
+
"perspective": "api",
|
|
93
|
+
"severity": "minor",
|
|
94
|
+
"category": "consistency",
|
|
95
|
+
"universal": false,
|
|
96
|
+
"applicabilityQuestion": "Does this epic expose or consume APIs?",
|
|
97
|
+
"question": "Does the API approach align with project context?",
|
|
98
|
+
"failDescription": "API approach does not align with project context",
|
|
99
|
+
"failSuggestion": "Ensure API approach aligns with project: consistent naming, versioning, and error handling conventions"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "api-epic-09",
|
|
103
|
+
"tier": 1,
|
|
104
|
+
"perspective": "api",
|
|
105
|
+
"severity": "minor",
|
|
106
|
+
"category": "best-practices",
|
|
107
|
+
"universal": false,
|
|
108
|
+
"applicabilityQuestion": "Does this epic expose or consume APIs?",
|
|
109
|
+
"question": "Are industry-standard API patterns followed (REST/GraphQL principles)?",
|
|
110
|
+
"failDescription": "API best practices are not followed",
|
|
111
|
+
"failSuggestion": "Follow API best practices: proper HTTP methods, meaningful status codes, consistent resource naming"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "backend",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "be-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "backend",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "completeness",
|
|
11
|
+
"universal": false,
|
|
12
|
+
"applicabilityQuestion": "Does this epic involve server-side logic or backend services? (Does it include APIs, background jobs, data processing, or service-to-service communication?)",
|
|
13
|
+
"question": "Does the epic scope clearly define backend boundaries?",
|
|
14
|
+
"failDescription": "Backend boundaries are not defined — unclear which services and responsibilities are in scope",
|
|
15
|
+
"failSuggestion": "Define backend boundaries: which services, routes, and responsibilities belong to this epic"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "be-epic-02",
|
|
19
|
+
"tier": 1,
|
|
20
|
+
"perspective": "backend",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "completeness",
|
|
23
|
+
"universal": false,
|
|
24
|
+
"applicabilityQuestion": "Does this epic involve server-side logic or backend services?",
|
|
25
|
+
"question": "Are all critical backend features identified?",
|
|
26
|
+
"failDescription": "Critical backend features are missing — APIs, data access, or business logic not fully identified",
|
|
27
|
+
"failSuggestion": "Identify all critical backend features: API endpoints, data access patterns, business logic, background jobs"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "be-epic-03",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"perspective": "backend",
|
|
33
|
+
"severity": "major",
|
|
34
|
+
"category": "completeness",
|
|
35
|
+
"universal": false,
|
|
36
|
+
"applicabilityQuestion": "Does this epic depend on backend services or infrastructure?",
|
|
37
|
+
"question": "Are dependencies on backend services/infrastructure explicit?",
|
|
38
|
+
"failDescription": "Backend service dependencies are not explicit",
|
|
39
|
+
"failSuggestion": "Make backend dependencies explicit: database, message queue, cache, external APIs, auth service"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "be-epic-04",
|
|
43
|
+
"tier": 1,
|
|
44
|
+
"perspective": "backend",
|
|
45
|
+
"severity": "major",
|
|
46
|
+
"category": "completeness",
|
|
47
|
+
"universal": false,
|
|
48
|
+
"applicabilityQuestion": "Does this epic involve server-side logic or backend services?",
|
|
49
|
+
"question": "Are backend success criteria measurable?",
|
|
50
|
+
"failDescription": "Backend success criteria are not measurable",
|
|
51
|
+
"failSuggestion": "Define measurable backend criteria: response time targets, throughput, error rates, test coverage"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "be-epic-05",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"perspective": "backend",
|
|
57
|
+
"severity": "minor",
|
|
58
|
+
"category": "clarity",
|
|
59
|
+
"universal": false,
|
|
60
|
+
"applicabilityQuestion": "Does this epic involve server-side logic or backend services?",
|
|
61
|
+
"question": "Is backend terminology used correctly?",
|
|
62
|
+
"failDescription": "Backend terminology is used incorrectly or inconsistently",
|
|
63
|
+
"failSuggestion": "Review backend terminology for accuracy: middleware, service layer, repository pattern, etc."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "be-epic-06",
|
|
67
|
+
"tier": 1,
|
|
68
|
+
"perspective": "backend",
|
|
69
|
+
"severity": "minor",
|
|
70
|
+
"category": "clarity",
|
|
71
|
+
"universal": false,
|
|
72
|
+
"applicabilityQuestion": "Does this epic involve server-side logic or backend services?",
|
|
73
|
+
"question": "Are features described in business value terms?",
|
|
74
|
+
"failDescription": "Backend features lack business value context",
|
|
75
|
+
"failSuggestion": "Frame backend features in business terms alongside technical specifications"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "be-epic-07",
|
|
79
|
+
"tier": 1,
|
|
80
|
+
"perspective": "backend",
|
|
81
|
+
"severity": "major",
|
|
82
|
+
"category": "technical-depth",
|
|
83
|
+
"universal": false,
|
|
84
|
+
"applicabilityQuestion": "Does this epic involve backend architecture? (Does it need service design, async processing, or caching?)",
|
|
85
|
+
"question": "Are backend architectural patterns considered?",
|
|
86
|
+
"failDescription": "Backend architectural patterns are not considered",
|
|
87
|
+
"failSuggestion": "Consider backend patterns: service layer, repository pattern, CQRS, event sourcing, async processing"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "be-epic-08",
|
|
91
|
+
"tier": 1,
|
|
92
|
+
"perspective": "backend",
|
|
93
|
+
"severity": "major",
|
|
94
|
+
"category": "technical-depth",
|
|
95
|
+
"universal": false,
|
|
96
|
+
"applicabilityQuestion": "Does this epic involve backend services that need to handle load?",
|
|
97
|
+
"question": "Are performance/scalability concerns for backend addressed?",
|
|
98
|
+
"failDescription": "Backend performance and scalability concerns are not addressed",
|
|
99
|
+
"failSuggestion": "Address backend performance: caching strategy, connection pooling, async processing, horizontal scaling"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "be-epic-09",
|
|
103
|
+
"tier": 1,
|
|
104
|
+
"perspective": "backend",
|
|
105
|
+
"severity": "minor",
|
|
106
|
+
"category": "consistency",
|
|
107
|
+
"universal": false,
|
|
108
|
+
"applicabilityQuestion": "Does this epic involve server-side logic or backend services?",
|
|
109
|
+
"question": "Does the backend approach align with project context?",
|
|
110
|
+
"failDescription": "Backend approach does not align with project context",
|
|
111
|
+
"failSuggestion": "Ensure backend approach aligns with project: consistent framework, patterns, and conventions"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "be-epic-10",
|
|
115
|
+
"tier": 1,
|
|
116
|
+
"perspective": "backend",
|
|
117
|
+
"severity": "minor",
|
|
118
|
+
"category": "best-practices",
|
|
119
|
+
"universal": false,
|
|
120
|
+
"applicabilityQuestion": "Does this epic involve server-side logic or backend services?",
|
|
121
|
+
"question": "Are industry-standard backend patterns followed (separation of concerns, SOLID)?",
|
|
122
|
+
"failDescription": "Backend best practices are not followed",
|
|
123
|
+
"failSuggestion": "Follow backend best practices: separation of concerns, SOLID principles, error handling patterns"
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "cloud",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "cloud-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "cloud",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "completeness",
|
|
11
|
+
"universal": false,
|
|
12
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure? (Does it use AWS, Azure, GCP, or cloud-hosted services?)",
|
|
13
|
+
"question": "Does the epic scope clearly define cloud boundaries?",
|
|
14
|
+
"failDescription": "Cloud boundaries are not defined — unclear which cloud services and regions are in scope",
|
|
15
|
+
"failSuggestion": "Define cloud boundaries: which cloud provider, services, regions, and accounts are in scope"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "cloud-epic-02",
|
|
19
|
+
"tier": 1,
|
|
20
|
+
"perspective": "cloud",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "completeness",
|
|
23
|
+
"universal": false,
|
|
24
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
25
|
+
"question": "Are all critical cloud features identified?",
|
|
26
|
+
"failDescription": "Critical cloud features are not identified — compute, storage, networking, or security services missing",
|
|
27
|
+
"failSuggestion": "Identify critical cloud features: compute (EC2/Lambda/ECS), storage (S3/EBS), networking (VPC/ALB), security (IAM)"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "cloud-epic-03",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"perspective": "cloud",
|
|
33
|
+
"severity": "major",
|
|
34
|
+
"category": "completeness",
|
|
35
|
+
"universal": false,
|
|
36
|
+
"applicabilityQuestion": "Does this epic depend on cloud services or infrastructure?",
|
|
37
|
+
"question": "Are dependencies on cloud services/infrastructure explicit?",
|
|
38
|
+
"failDescription": "Cloud service dependencies are not explicit",
|
|
39
|
+
"failSuggestion": "Make cloud dependencies explicit: list specific services (RDS, ElastiCache, SQS) and their configurations"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "cloud-epic-04",
|
|
43
|
+
"tier": 1,
|
|
44
|
+
"perspective": "cloud",
|
|
45
|
+
"severity": "major",
|
|
46
|
+
"category": "completeness",
|
|
47
|
+
"universal": false,
|
|
48
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
49
|
+
"question": "Are cloud success criteria measurable?",
|
|
50
|
+
"failDescription": "Cloud success criteria are not measurable",
|
|
51
|
+
"failSuggestion": "Define measurable cloud criteria: availability (99.9%), latency (< 100ms), cost budget, resource utilization targets"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "cloud-epic-05",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"perspective": "cloud",
|
|
57
|
+
"severity": "minor",
|
|
58
|
+
"category": "clarity",
|
|
59
|
+
"universal": false,
|
|
60
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
61
|
+
"question": "Is cloud terminology used correctly?",
|
|
62
|
+
"failDescription": "Cloud terminology is used incorrectly or inconsistently",
|
|
63
|
+
"failSuggestion": "Review and correct cloud terminology for accuracy (e.g. region vs AZ, instance vs container)"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "cloud-epic-06",
|
|
67
|
+
"tier": 1,
|
|
68
|
+
"perspective": "cloud",
|
|
69
|
+
"severity": "minor",
|
|
70
|
+
"category": "clarity",
|
|
71
|
+
"universal": false,
|
|
72
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
73
|
+
"question": "Are features described in business value terms?",
|
|
74
|
+
"failDescription": "Cloud features lack business value context",
|
|
75
|
+
"failSuggestion": "Frame cloud features in business terms: 'multi-AZ deployment ensures 99.99% availability for end users'"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "cloud-epic-07",
|
|
79
|
+
"tier": 1,
|
|
80
|
+
"perspective": "cloud",
|
|
81
|
+
"severity": "major",
|
|
82
|
+
"category": "technical-depth",
|
|
83
|
+
"universal": false,
|
|
84
|
+
"applicabilityQuestion": "Does this epic involve cloud architecture? (Does it need HA, scaling, or multi-region?)",
|
|
85
|
+
"question": "Are cloud architectural patterns considered?",
|
|
86
|
+
"failDescription": "Cloud architectural patterns are not considered — HA, scaling, or serverless patterns missing",
|
|
87
|
+
"failSuggestion": "Consider cloud patterns: multi-AZ, auto-scaling, serverless, microservices, event-driven architecture"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "cloud-epic-08",
|
|
91
|
+
"tier": 1,
|
|
92
|
+
"perspective": "cloud",
|
|
93
|
+
"severity": "major",
|
|
94
|
+
"category": "technical-depth",
|
|
95
|
+
"universal": false,
|
|
96
|
+
"applicabilityQuestion": "Does this epic involve cloud services that need to scale?",
|
|
97
|
+
"question": "Are performance/scalability concerns for cloud addressed?",
|
|
98
|
+
"failDescription": "Cloud performance and scalability concerns are not addressed",
|
|
99
|
+
"failSuggestion": "Address cloud scalability: auto-scaling policies, load balancing, caching strategy, CDN for static assets"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "cloud-epic-09",
|
|
103
|
+
"tier": 1,
|
|
104
|
+
"perspective": "cloud",
|
|
105
|
+
"severity": "minor",
|
|
106
|
+
"category": "consistency",
|
|
107
|
+
"universal": false,
|
|
108
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
109
|
+
"question": "Does the cloud approach align with project context?",
|
|
110
|
+
"failDescription": "Cloud approach does not align with project context",
|
|
111
|
+
"failSuggestion": "Ensure cloud approach aligns with project: use consistent cloud provider, follow organization standards"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "cloud-epic-10",
|
|
115
|
+
"tier": 1,
|
|
116
|
+
"perspective": "cloud",
|
|
117
|
+
"severity": "minor",
|
|
118
|
+
"category": "best-practices",
|
|
119
|
+
"universal": false,
|
|
120
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
121
|
+
"question": "Are industry-standard cloud patterns followed (well-architected framework)?",
|
|
122
|
+
"failDescription": "Cloud best practices are not followed",
|
|
123
|
+
"failSuggestion": "Follow cloud best practices: AWS Well-Architected Framework pillars (reliability, security, performance, cost, operations)"
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "data",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "data-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "data",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "completeness",
|
|
11
|
+
"universal": false,
|
|
12
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing? (Does it handle data ingestion, transformation, or analytics?)",
|
|
13
|
+
"question": "Does the epic scope clearly define data boundaries?",
|
|
14
|
+
"failDescription": "Data boundaries are not defined — unclear which data sources, transformations, and destinations are in scope",
|
|
15
|
+
"failSuggestion": "Define data boundaries: data sources, transformation logic, destination systems, data quality requirements"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "data-epic-02",
|
|
19
|
+
"tier": 1,
|
|
20
|
+
"perspective": "data",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "completeness",
|
|
23
|
+
"universal": false,
|
|
24
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
25
|
+
"question": "Are all critical data features identified?",
|
|
26
|
+
"failDescription": "Critical data features are missing — pipeline stages, orchestration, or quality checks not identified",
|
|
27
|
+
"failSuggestion": "Identify critical data features: ETL stages, orchestration tool, data quality checks, lineage tracking"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "data-epic-03",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"perspective": "data",
|
|
33
|
+
"severity": "major",
|
|
34
|
+
"category": "completeness",
|
|
35
|
+
"universal": false,
|
|
36
|
+
"applicabilityQuestion": "Does this epic depend on data services or infrastructure?",
|
|
37
|
+
"question": "Are dependencies on data services/infrastructure explicit?",
|
|
38
|
+
"failDescription": "Data service dependencies are not explicit",
|
|
39
|
+
"failSuggestion": "Make data dependencies explicit: source databases, data warehouse, orchestration tool (Airflow), processing engine (Spark)"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "data-epic-04",
|
|
43
|
+
"tier": 1,
|
|
44
|
+
"perspective": "data",
|
|
45
|
+
"severity": "major",
|
|
46
|
+
"category": "completeness",
|
|
47
|
+
"universal": false,
|
|
48
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
49
|
+
"question": "Are data success criteria measurable?",
|
|
50
|
+
"failDescription": "Data success criteria are not measurable",
|
|
51
|
+
"failSuggestion": "Define measurable data criteria: data freshness SLA, processing latency, data quality score, pipeline uptime"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "data-epic-05",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"perspective": "data",
|
|
57
|
+
"severity": "major",
|
|
58
|
+
"category": "technical-depth",
|
|
59
|
+
"universal": false,
|
|
60
|
+
"applicabilityQuestion": "Does this epic involve data architecture? (Does it need batch vs streaming, schema evolution, or data governance?)",
|
|
61
|
+
"question": "Are data architectural patterns considered?",
|
|
62
|
+
"failDescription": "Data architectural patterns are not considered",
|
|
63
|
+
"failSuggestion": "Consider data patterns: batch vs streaming, schema evolution, data lake/warehouse architecture, CDC patterns"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "data-epic-06",
|
|
67
|
+
"tier": 1,
|
|
68
|
+
"perspective": "data",
|
|
69
|
+
"severity": "major",
|
|
70
|
+
"category": "technical-depth",
|
|
71
|
+
"universal": false,
|
|
72
|
+
"applicabilityQuestion": "Does this epic involve data processing that needs to scale?",
|
|
73
|
+
"question": "Are performance/scalability concerns for data addressed?",
|
|
74
|
+
"failDescription": "Data performance and scalability concerns are not addressed",
|
|
75
|
+
"failSuggestion": "Address data scalability: partitioning strategy, parallel processing, incremental loads, data retention policy"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "data-epic-07",
|
|
79
|
+
"tier": 1,
|
|
80
|
+
"perspective": "data",
|
|
81
|
+
"severity": "minor",
|
|
82
|
+
"category": "consistency",
|
|
83
|
+
"universal": false,
|
|
84
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
85
|
+
"question": "Does the data approach align with project context?",
|
|
86
|
+
"failDescription": "Data approach does not align with project context",
|
|
87
|
+
"failSuggestion": "Ensure data approach aligns with project: consistent tools, naming conventions, data governance policies"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "data-epic-08",
|
|
91
|
+
"tier": 1,
|
|
92
|
+
"perspective": "data",
|
|
93
|
+
"severity": "minor",
|
|
94
|
+
"category": "best-practices",
|
|
95
|
+
"universal": false,
|
|
96
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
97
|
+
"question": "Are industry-standard data patterns followed (idempotency, schema evolution)?",
|
|
98
|
+
"failDescription": "Data best practices are not followed",
|
|
99
|
+
"failSuggestion": "Follow data best practices: idempotent pipelines, schema evolution support, data quality gates, lineage tracking"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|