@tinkcarlos/skillora 0.2.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/.claude/skills/.temp-skill-index.md +245 -0
- package/.claude/skills/SKILL.md +264 -0
- package/.claude/skills/api-scaffolding/SKILL.md +431 -0
- package/.claude/skills/api-scaffolding/agents/backend-architect.md +282 -0
- package/.claude/skills/api-scaffolding/agents/django-pro.md +144 -0
- package/.claude/skills/api-scaffolding/agents/fastapi-pro.md +156 -0
- package/.claude/skills/api-scaffolding/agents/graphql-architect.md +146 -0
- package/.claude/skills/api-scaffolding/skills/fastapi-templates/SKILL.md +171 -0
- package/.claude/skills/api-testing-observability/SKILL.md +583 -0
- package/.claude/skills/api-testing-observability/agents/api-documenter.md +146 -0
- package/.claude/skills/api-testing-observability/commands/api-mock.md +1320 -0
- package/.claude/skills/brainstorming/SKILL.md +283 -0
- package/.claude/skills/bug-fixing/SKILL.md +382 -0
- package/.claude/skills/bug-fixing/references/backend-guide.md +132 -0
- package/.claude/skills/bug-fixing/references/bug-guide.md +354 -0
- package/.claude/skills/bug-fixing/references/bug-record-template.md +134 -0
- package/.claude/skills/bug-fixing/references/bug-records.md +88 -0
- package/.claude/skills/bug-fixing/references/code-review-gate.md +81 -0
- package/.claude/skills/bug-fixing/references/common-bugs.md +140 -0
- package/.claude/skills/bug-fixing/references/complete-workflow.md +361 -0
- package/.claude/skills/bug-fixing/references/config-driven-fixes.md +136 -0
- package/.claude/skills/bug-fixing/references/context-isolation-protocol.md +268 -0
- package/.claude/skills/bug-fixing/references/cross-surface-regression.md +120 -0
- package/.claude/skills/bug-fixing/references/database-investigation.md +129 -0
- package/.claude/skills/bug-fixing/references/dependency-and-integrity-protocol.md +369 -0
- package/.claude/skills/bug-fixing/references/fix-completeness-checklist.md +239 -0
- package/.claude/skills/bug-fixing/references/frontend-guide.md +219 -0
- package/.claude/skills/bug-fixing/references/fullstack-joint-guide.md +123 -0
- package/.claude/skills/bug-fixing/references/functional-breakage.md +117 -0
- package/.claude/skills/bug-fixing/references/ide-lint-errors-guide.md +176 -0
- package/.claude/skills/bug-fixing/references/impact-analysis.md +511 -0
- package/.claude/skills/bug-fixing/references/investigation-checklist.md +263 -0
- package/.claude/skills/bug-fixing/references/knowledge-extraction-guide.md +531 -0
- package/.claude/skills/bug-fixing/references/knowledge-workflow.md +212 -0
- package/.claude/skills/bug-fixing/references/post-edit-quality-gate.md +30 -0
- package/.claude/skills/bug-fixing/references/python-env-and-testing.md +126 -0
- package/.claude/skills/bug-fixing/references/rca-guide.md +428 -0
- package/.claude/skills/bug-fixing/references/similar-bug-patterns.md +113 -0
- package/.claude/skills/bug-fixing/references/skill-delegation-guide.md +350 -0
- package/.claude/skills/bug-fixing/references/skill-orchestration.md +155 -0
- package/.claude/skills/bug-fixing/references/testing-strategy.md +350 -0
- package/.claude/skills/bug-fixing/references/tooling-build-scripts.md +162 -0
- package/.claude/skills/bug-fixing/references/user-input-validation.md +77 -0
- package/.claude/skills/bug-fixing/references/ux-patterns.md +158 -0
- package/.claude/skills/bug-fixing/references/windows-terminal-hygiene.md +106 -0
- package/.claude/skills/bug-fixing/references/zero-regression-matrix.md +239 -0
- package/.claude/skills/bug-fixing/references/zero-risk-protocol.md +102 -0
- package/.claude/skills/bug-fixing/scripts/format_code.py +611 -0
- package/.claude/skills/bug-fixing/scripts/generate_report_template.py +74 -0
- package/.claude/skills/bug-fixing/scripts/lint_check.py +816 -0
- package/.claude/skills/bug-fixing/scripts/requirements.txt +36 -0
- package/.claude/skills/cicd-pipeline/SKILL.md +300 -0
- package/.claude/skills/code-review/SKILL.md +535 -0
- package/.claude/skills/code-review/references/anti-pattern-scan.md +102 -0
- package/.claude/skills/code-review/references/automated-analysis.md +456 -0
- package/.claude/skills/code-review/references/backend-common-issues.md +589 -0
- package/.claude/skills/code-review/references/backend-expert-guide.md +415 -0
- package/.claude/skills/code-review/references/backend-review.md +868 -0
- package/.claude/skills/code-review/references/batch-processing-strategy.md +198 -0
- package/.claude/skills/code-review/references/call-chain-analysis-protocol.md +166 -0
- package/.claude/skills/code-review/references/common-patterns.md +321 -0
- package/.claude/skills/code-review/references/configuration-review.md +425 -0
- package/.claude/skills/code-review/references/control-flow-completeness.md +114 -0
- package/.claude/skills/code-review/references/database-review.md +298 -0
- package/.claude/skills/code-review/references/dependency-and-integrity-protocol.md +313 -0
- package/.claude/skills/code-review/references/external-standards.md +51 -0
- package/.claude/skills/code-review/references/feature-review.md +329 -0
- package/.claude/skills/code-review/references/file-review-template.md +326 -0
- package/.claude/skills/code-review/references/frontend-advanced.md +654 -0
- package/.claude/skills/code-review/references/frontend-common-issues.md +482 -0
- package/.claude/skills/code-review/references/frontend-expert-guide.md +342 -0
- package/.claude/skills/code-review/references/frontend-review.md +783 -0
- package/.claude/skills/code-review/references/fullstack-consistency.md +418 -0
- package/.claude/skills/code-review/references/fullstack-review.md +477 -0
- package/.claude/skills/code-review/references/functional-completeness.md +386 -0
- package/.claude/skills/code-review/references/hidden-bugs-detection.md +473 -0
- package/.claude/skills/code-review/references/ide-lint-errors-guide.md +173 -0
- package/.claude/skills/code-review/references/infrastructure-review.md +453 -0
- package/.claude/skills/code-review/references/iteration-review.md +264 -0
- package/.claude/skills/code-review/references/job-review.md +335 -0
- package/.claude/skills/code-review/references/layered-checklist-protocol.md +157 -0
- package/.claude/skills/code-review/references/logic-completeness.md +535 -0
- package/.claude/skills/code-review/references/mandatory-checklist.md +288 -0
- package/.claude/skills/code-review/references/multi-language-guide.md +800 -0
- package/.claude/skills/code-review/references/new-project-review.md +226 -0
- package/.claude/skills/code-review/references/non-code-files-review.md +451 -0
- package/.claude/skills/code-review/references/overlooked-issues.md +657 -0
- package/.claude/skills/code-review/references/platform-specific-review.md +195 -0
- package/.claude/skills/code-review/references/precision-analysis-protocol.md +260 -0
- package/.claude/skills/code-review/references/python-patterns.md +494 -0
- package/.claude/skills/code-review/references/rca-techniques.md +362 -0
- package/.claude/skills/code-review/references/report-template.md +430 -0
- package/.claude/skills/code-review/references/resource-limits-and-degradation.md +137 -0
- package/.claude/skills/code-review/references/review-dimensions.md +311 -0
- package/.claude/skills/code-review/references/review-guide.md +202 -0
- package/.claude/skills/code-review/references/review-knowledge-workflow.md +257 -0
- package/.claude/skills/code-review/references/review-progress-tracker-protocol.md +172 -0
- package/.claude/skills/code-review/references/review-record-template.md +195 -0
- package/.claude/skills/code-review/references/skill-orchestration.md +143 -0
- package/.claude/skills/code-review/references/ui-ux-review.md +470 -0
- package/.claude/skills/containerization/SKILL.md +313 -0
- package/.claude/skills/database-migrations/agents/database-admin.md +142 -0
- package/.claude/skills/database-migrations/agents/database-optimizer.md +144 -0
- package/.claude/skills/database-migrations/commands/migration-observability.md +408 -0
- package/.claude/skills/database-migrations/commands/sql-migrations.md +492 -0
- package/.claude/skills/finishing-a-development-branch/SKILL.md +319 -0
- package/.claude/skills/frontend-design/LICENSE.txt +177 -0
- package/.claude/skills/frontend-design/SKILL.md +587 -0
- package/.claude/skills/frontend-design/references/color-consistency.md +487 -0
- package/.claude/skills/frontend-design/references/color-palettes-full.md +657 -0
- package/.claude/skills/frontend-design/references/design-system-generator.md +285 -0
- package/.claude/skills/frontend-design/references/font-pairings-full.md +705 -0
- package/.claude/skills/frontend-design/references/industry-anti-patterns.md +281 -0
- package/.claude/skills/frontend-design/references/layout-anti-patterns.md +582 -0
- package/.claude/skills/frontend-design/references/motion-patterns.md +659 -0
- package/.claude/skills/frontend-design/references/pre-delivery-checklist.md +153 -0
- package/.claude/skills/frontend-design/references/responsive-design.md +555 -0
- package/.claude/skills/frontend-design/references/style-modification-rules.md +335 -0
- package/.claude/skills/frontend-design/references/ui-styles-full.md +383 -0
- package/.claude/skills/frontend-design/references/ui-styles-rating.md +191 -0
- package/.claude/skills/frontend-design/references/ux-guidelines.md +640 -0
- package/.claude/skills/fullstack-developer/SKILL.md +512 -0
- package/.claude/skills/fullstack-developer/references/api-contract-guide.md +312 -0
- package/.claude/skills/fullstack-developer/references/api-response-patterns.md +223 -0
- package/.claude/skills/fullstack-developer/references/async-patterns.md +220 -0
- package/.claude/skills/fullstack-developer/references/bug-prevention.md +914 -0
- package/.claude/skills/fullstack-developer/references/code-quality-checklist.md +271 -0
- package/.claude/skills/fullstack-developer/references/complete-development-workflow.md +278 -0
- package/.claude/skills/fullstack-developer/references/context-isolation-protocol.md +256 -0
- package/.claude/skills/fullstack-developer/references/database-migration.md +331 -0
- package/.claude/skills/fullstack-developer/references/dependency-and-integrity-protocol.md +390 -0
- package/.claude/skills/fullstack-developer/references/development-phases.md +333 -0
- package/.claude/skills/fullstack-developer/references/expert-guide.md +214 -0
- package/.claude/skills/fullstack-developer/references/file-import-patterns.md +114 -0
- package/.claude/skills/fullstack-developer/references/graceful-degradation-patterns.md +78 -0
- package/.claude/skills/fullstack-developer/references/ide-lint-errors-guide.md +183 -0
- package/.claude/skills/fullstack-developer/references/integration-testing.md +301 -0
- package/.claude/skills/fullstack-developer/references/mock-api-patterns.md +307 -0
- package/.claude/skills/fullstack-developer/references/phase-gate-template.md +249 -0
- package/.claude/skills/fullstack-developer/references/post-edit-quality-gate.md +30 -0
- package/.claude/skills/fullstack-developer/references/python-engineering.md +79 -0
- package/.claude/skills/fullstack-developer/references/skill-orchestration.md +214 -0
- package/.claude/skills/fullstack-developer/references/skill-router-table.md +304 -0
- package/.claude/skills/fullstack-developer/references/state-sync.md +217 -0
- package/.claude/skills/fullstack-developer/references/ui-testing-checklist.md +292 -0
- package/.claude/skills/fullstack-developer/scripts/format_code.py +611 -0
- package/.claude/skills/fullstack-developer/scripts/lint_check.py +816 -0
- package/.claude/skills/fullstack-developer/scripts/requirements.txt +36 -0
- package/.claude/skills/performance-optimization/SKILL.md +250 -0
- package/.claude/skills/product-requirements/SKILL.md +357 -0
- package/.claude/skills/product-requirements/references/acceptance-criteria.md +335 -0
- package/.claude/skills/product-requirements/references/answer-first-questioning-protocol.md +299 -0
- package/.claude/skills/product-requirements/references/competitive-analysis-guide.md +183 -0
- package/.claude/skills/product-requirements/references/document-accuracy-protocol.md +253 -0
- package/.claude/skills/product-requirements/references/document-management-protocol.md +278 -0
- package/.claude/skills/product-requirements/references/external-standards.md +62 -0
- package/.claude/skills/product-requirements/references/feature-spec-template.md +359 -0
- package/.claude/skills/product-requirements/references/knowledge-acquisition-protocol.md +251 -0
- package/.claude/skills/product-requirements/references/plan-execution-protocol.md +334 -0
- package/.claude/skills/product-requirements/references/plan-generation-protocol.md +264 -0
- package/.claude/skills/product-requirements/references/prioritization-frameworks.md +80 -0
- package/.claude/skills/product-requirements/references/requirement-decomposition-protocol.md +291 -0
- package/.claude/skills/product-requirements/references/user-story-examples.md +297 -0
- package/.claude/skills/product-requirements/references/workflow-templates.md +266 -0
- package/.claude/skills/react-best-practices/SKILL.md +198 -0
- package/.claude/skills/react-best-practices/references/advanced-patterns.md +94 -0
- package/.claude/skills/react-best-practices/references/bundle-optimization.md +182 -0
- package/.claude/skills/react-best-practices/references/client-data-fetching.md +112 -0
- package/.claude/skills/react-best-practices/references/complete-guide.md +2249 -0
- package/.claude/skills/react-best-practices/references/eliminating-waterfalls.md +169 -0
- package/.claude/skills/react-best-practices/references/javascript-performance.md +256 -0
- package/.claude/skills/react-best-practices/references/rendering-performance.md +230 -0
- package/.claude/skills/react-best-practices/references/rerender-optimization.md +214 -0
- package/.claude/skills/react-best-practices/references/server-performance.md +182 -0
- package/.claude/skills/security-audit/SKILL.md +226 -0
- package/.claude/skills/shared-references/advanced-debugging-techniques.md +186 -0
- package/.claude/skills/shared-references/code-quality-checklist.md +218 -0
- package/.claude/skills/shared-references/code-review-efficiency-guide.md +125 -0
- package/.claude/skills/shared-references/mcp-dependency-compatibility-protocol.md +276 -0
- package/.claude/skills/shared-references/skill-call-graph.md +230 -0
- package/.claude/skills/shared-references/skill-orchestration-protocol.md +281 -0
- package/.claude/skills/shared-references/subagent-dispatch-templates.md +199 -0
- package/.claude/skills/skill-expert-skills/LICENSE.txt +204 -0
- package/.claude/skills/skill-expert-skills/QUICK_NAVIGATION.md +374 -0
- package/.claude/skills/skill-expert-skills/SKILL.md +247 -0
- package/.claude/skills/skill-expert-skills/docs/_index.md +91 -0
- package/.claude/skills/skill-expert-skills/references/deep-research-methodology.md +389 -0
- package/.claude/skills/skill-expert-skills/references/docs-generation-workflow.md +398 -0
- package/.claude/skills/skill-expert-skills/references/domain-expertise-protocol.md +343 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/_index.md +54 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/backend-expertise.md +517 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/bug-fixing-expertise.md +363 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/code-review-expertise.md +392 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/frontend-expertise.md +410 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge-template.md +503 -0
- package/.claude/skills/skill-expert-skills/references/examples.md +782 -0
- package/.claude/skills/skill-expert-skills/references/integration-examples.md +655 -0
- package/.claude/skills/skill-expert-skills/references/knowledge-validation-checklist.md +246 -0
- package/.claude/skills/skill-expert-skills/references/latest-knowledge-acquisition.md +461 -0
- package/.claude/skills/skill-expert-skills/references/mcp-tools-guide.md +439 -0
- package/.claude/skills/skill-expert-skills/references/official-best-practices.md +616 -0
- package/.claude/skills/skill-expert-skills/references/patterns.md +218 -0
- package/.claude/skills/skill-expert-skills/references/plugin-skills-guide.md +432 -0
- package/.claude/skills/skill-expert-skills/references/requirement-elicitation-protocol.md +290 -0
- package/.claude/skills/skill-expert-skills/references/skill-creator-SKILL.md +353 -0
- package/.claude/skills/skill-expert-skills/references/skill-templates.md +583 -0
- package/.claude/skills/skill-expert-skills/references/skills-knowledge-base.md +561 -0
- package/.claude/skills/skill-expert-skills/references/tools-guide.md +379 -0
- package/.claude/skills/skill-expert-skills/references/troubleshooting.md +378 -0
- package/.claude/skills/skill-expert-skills/references/universality-guide.md +205 -0
- package/.claude/skills/skill-expert-skills/references/writing-style-guide.md +466 -0
- package/.claude/skills/skill-expert-skills/scripts/__pycache__/quick_validate.cpython-313.pyc +0 -0
- package/.claude/skills/skill-expert-skills/scripts/__pycache__/universal_validate.cpython-313.pyc +0 -0
- package/.claude/skills/skill-expert-skills/scripts/analyze_trigger.py +425 -0
- package/.claude/skills/skill-expert-skills/scripts/diff_with_official.py +188 -0
- package/.claude/skills/skill-expert-skills/scripts/init_skill.py +349 -0
- package/.claude/skills/skill-expert-skills/scripts/package_skill.py +156 -0
- package/.claude/skills/skill-expert-skills/scripts/quick_validate.py +493 -0
- package/.claude/skills/skill-expert-skills/scripts/requirements.txt +2 -0
- package/.claude/skills/skill-expert-skills/scripts/universal_validate.py +182 -0
- package/.claude/skills/skill-expert-skills/scripts/upgrade_skill.py +431 -0
- package/.claude/skills/subagent-driven-development/SKILL.md +268 -0
- package/.claude/skills/test-driven-development/SKILL.md +246 -0
- package/.claude/skills/test-driven-development/references/testing-anti-patterns.md +192 -0
- package/.claude/skills/using-git-worktrees/SKILL.md +266 -0
- package/.claude/skills/using-skillstack/SKILL.md +127 -0
- package/.claude/skills/vercel-deploy/SKILL.md +166 -0
- package/.claude/skills/vercel-deploy/scripts/deploy.sh +249 -0
- package/.claude/skills/verification-before-completion/SKILL.md +305 -0
- package/.claude/skills/writing-plans/SKILL.md +259 -0
- package/README.md +69 -0
- package/bin/cli.js +468 -0
- package/lib/init.js +333 -0
- package/package.json +29 -0
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
# 需求分解协议 (Requirement Decomposition Protocol)
|
|
2
|
+
|
|
3
|
+
> **核心原则**: 显性需求是起点,隐性需求是关键,系统思维是方法。
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 需求分解流程
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
11
|
+
│ 需求分解流程 │
|
|
12
|
+
├─────────────────────────────────────────────────────────────────┤
|
|
13
|
+
│ │
|
|
14
|
+
│ Step 1: 快速三问 │
|
|
15
|
+
│ ├─ 用户要什么?→ 真实目标 │
|
|
16
|
+
│ ├─ 有什么约束?→ 技术/时间/资源 │
|
|
17
|
+
│ └─ 最简方案?→ 最小改动 │
|
|
18
|
+
│ │
|
|
19
|
+
│ Step 2: 显性需求收集 │
|
|
20
|
+
│ ├─ 5W1H 问题框架 │
|
|
21
|
+
│ └─ 用户原话记录 │
|
|
22
|
+
│ │
|
|
23
|
+
│ Step 3: 隐性需求挖掘 │
|
|
24
|
+
│ ├─ 场景推演法 │
|
|
25
|
+
│ ├─ 痛点分析法 │
|
|
26
|
+
│ ├─ 最佳实践对比法 │
|
|
27
|
+
│ └─ 边界情况法 │
|
|
28
|
+
│ │
|
|
29
|
+
│ Step 4: 需求分类与优先级 │
|
|
30
|
+
│ ├─ MoSCoW 分类 │
|
|
31
|
+
│ └─ RICE 评分 │
|
|
32
|
+
│ │
|
|
33
|
+
│ Step 5: 输出需求分解报告 │
|
|
34
|
+
│ │
|
|
35
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Step 1: 快速三问
|
|
41
|
+
|
|
42
|
+
### 问题模板
|
|
43
|
+
|
|
44
|
+
```markdown
|
|
45
|
+
## 快速三问分析
|
|
46
|
+
|
|
47
|
+
### Q1: 用户要什么?
|
|
48
|
+
**表面需求**: [用户说的]
|
|
49
|
+
**真实目标**: [用户真正想解决的问题]
|
|
50
|
+
**判断依据**: [为什么认为这是真实目标]
|
|
51
|
+
|
|
52
|
+
### Q2: 有什么约束?
|
|
53
|
+
| 约束类型 | 具体约束 | 影响 |
|
|
54
|
+
|----------|----------|------|
|
|
55
|
+
| 技术栈 | [...] | [...] |
|
|
56
|
+
| 时间 | [...] | [...] |
|
|
57
|
+
| 资源 | [...] | [...] |
|
|
58
|
+
| 其他 | [...] | [...] |
|
|
59
|
+
|
|
60
|
+
### Q3: 最简方案?
|
|
61
|
+
**最小改动方案**: [描述]
|
|
62
|
+
**为什么是最简**: [理由]
|
|
63
|
+
**风险评估**: [潜在风险]
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### 清晰度判断
|
|
67
|
+
|
|
68
|
+
| 清晰度 | 判断标准 | 处理方式 |
|
|
69
|
+
|--------|----------|----------|
|
|
70
|
+
| ≥80% | 目标明确,约束清晰,方案可行 | 直接执行 |
|
|
71
|
+
| 50-80% | 部分不确定,需要选择 | 方案对比,请求选择 |
|
|
72
|
+
| <50% | 大量不确定,无法判断 | 苏格拉底式提问 |
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Step 2: 显性需求收集
|
|
77
|
+
|
|
78
|
+
### 5W1H 问题框架
|
|
79
|
+
|
|
80
|
+
| 维度 | 问题 | 目的 | 示例 |
|
|
81
|
+
|------|------|------|------|
|
|
82
|
+
| **What** | 要做什么? | 明确目标 | "需要一个用户登录功能" |
|
|
83
|
+
| **Why** | 为什么需要? | 理解动机 | "为了保护用户数据" |
|
|
84
|
+
| **Who** | 谁会使用? | 确定用户群 | "所有注册用户" |
|
|
85
|
+
| **When** | 什么时候触发? | 定义场景 | "访问受保护页面时" |
|
|
86
|
+
| **Where** | 在哪里使用? | 确定上下文 | "Web 端和移动端" |
|
|
87
|
+
| **How** | 如何工作? | 理解预期 | "邮箱密码登录" |
|
|
88
|
+
|
|
89
|
+
### 显性需求记录模板
|
|
90
|
+
|
|
91
|
+
```markdown
|
|
92
|
+
## 显性需求记录
|
|
93
|
+
|
|
94
|
+
### REQ-001: [需求名称]
|
|
95
|
+
- **描述**: [需求描述]
|
|
96
|
+
- **用户原话**: "[用户的原话]"
|
|
97
|
+
- **5W1H**:
|
|
98
|
+
- What: [...]
|
|
99
|
+
- Why: [...]
|
|
100
|
+
- Who: [...]
|
|
101
|
+
- When: [...]
|
|
102
|
+
- Where: [...]
|
|
103
|
+
- How: [...]
|
|
104
|
+
- **优先级**: P0/P1/P2
|
|
105
|
+
- **来源标签**: `[USER]`
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Step 3: 隐性需求挖掘
|
|
111
|
+
|
|
112
|
+
### 方法 1: 场景推演法
|
|
113
|
+
|
|
114
|
+
```
|
|
115
|
+
用户场景 → 可能的操作 → 可能的问题 → 隐含需求
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
**示例**:
|
|
119
|
+
```markdown
|
|
120
|
+
### 场景推演: 用户登录
|
|
121
|
+
|
|
122
|
+
**场景**: 用户打开应用,需要登录
|
|
123
|
+
**可能操作**:
|
|
124
|
+
1. 输入邮箱密码
|
|
125
|
+
2. 点击登录按钮
|
|
126
|
+
3. 等待验证
|
|
127
|
+
|
|
128
|
+
**可能问题**:
|
|
129
|
+
1. 忘记密码 → 隐含需求: 密码重置功能
|
|
130
|
+
2. 输入错误 → 隐含需求: 错误提示
|
|
131
|
+
3. 网络超时 → 隐含需求: 超时处理
|
|
132
|
+
|
|
133
|
+
**推导的隐性需求**:
|
|
134
|
+
- `[INFERRED]` 密码重置功能 (推导依据: 用户可能忘记密码)
|
|
135
|
+
- `[INFERRED]` 输入验证和错误提示 (推导依据: 用户可能输入错误)
|
|
136
|
+
- `[INFERRED]` 网络超时处理 (推导依据: 网络不稳定场景)
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### 方法 2: 痛点分析法
|
|
140
|
+
|
|
141
|
+
```markdown
|
|
142
|
+
### 痛点分析
|
|
143
|
+
|
|
144
|
+
| 痛点 | 影响 | 频率 | 隐含需求 |
|
|
145
|
+
|------|------|------|----------|
|
|
146
|
+
| 登录流程繁琐 | 用户流失 | 高 | 简化登录流程 |
|
|
147
|
+
| 密码要求不明确 | 注册失败 | 中 | 密码强度提示 |
|
|
148
|
+
| 无记住登录 | 重复登录 | 高 | 记住登录状态 |
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### 方法 3: 最佳实践对比法
|
|
152
|
+
|
|
153
|
+
```markdown
|
|
154
|
+
### 最佳实践对比
|
|
155
|
+
|
|
156
|
+
| 实践 | 来源 | 当前状态 | 差距 | 隐含需求 |
|
|
157
|
+
|------|------|----------|------|----------|
|
|
158
|
+
| OAuth 登录 | 行业标准 | 无 | 缺失 | 第三方登录 |
|
|
159
|
+
| 2FA | 安全标准 | 无 | 缺失 | 双因素认证 |
|
|
160
|
+
| 登录日志 | 安全实践 | 无 | 缺失 | 登录审计 |
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
### 方法 4: 边界情况法
|
|
164
|
+
|
|
165
|
+
```markdown
|
|
166
|
+
### 边界情况分析
|
|
167
|
+
|
|
168
|
+
#### 输入边界
|
|
169
|
+
| 边界情况 | 预期行为 | 隐含需求 |
|
|
170
|
+
|----------|----------|----------|
|
|
171
|
+
| 空邮箱 | 提示必填 | 输入验证 |
|
|
172
|
+
| 无效邮箱格式 | 提示格式错误 | 格式验证 |
|
|
173
|
+
| 超长密码 | 截断或提示 | 长度限制 |
|
|
174
|
+
|
|
175
|
+
#### 环境边界
|
|
176
|
+
| 边界情况 | 预期行为 | 隐含需求 |
|
|
177
|
+
|----------|----------|----------|
|
|
178
|
+
| 网络断开 | 提示网络错误 | 离线处理 |
|
|
179
|
+
| 服务器错误 | 友好错误页 | 错误处理 |
|
|
180
|
+
| 并发登录 | 策略处理 | 会话管理 |
|
|
181
|
+
|
|
182
|
+
#### 业务边界
|
|
183
|
+
| 边界情况 | 预期行为 | 隐含需求 |
|
|
184
|
+
|----------|----------|----------|
|
|
185
|
+
| 账号锁定 | 提示锁定原因 | 锁定机制 |
|
|
186
|
+
| 密码过期 | 强制修改 | 密码策略 |
|
|
187
|
+
| 首次登录 | 引导流程 | 新用户引导 |
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## Step 4: 需求分类与优先级
|
|
193
|
+
|
|
194
|
+
### MoSCoW 分类
|
|
195
|
+
|
|
196
|
+
| 分类 | 定义 | 示例 |
|
|
197
|
+
|------|------|------|
|
|
198
|
+
| **Must** | 必须有,没有就不能发布 | 基本登录功能 |
|
|
199
|
+
| **Should** | 应该有,重要但不阻塞 | 密码重置 |
|
|
200
|
+
| **Could** | 可以有,锦上添花 | 第三方登录 |
|
|
201
|
+
| **Won't** | 不做,明确排除 | 生物识别登录 |
|
|
202
|
+
|
|
203
|
+
### RICE 评分
|
|
204
|
+
|
|
205
|
+
| 需求 | Reach | Impact | Confidence | Effort | Score | 优先级 |
|
|
206
|
+
|------|-------|--------|------------|--------|-------|--------|
|
|
207
|
+
| 基本登录 | 100% | 3 | 100% | 2 | 150 | P0 |
|
|
208
|
+
| 密码重置 | 30% | 2 | 90% | 1 | 54 | P1 |
|
|
209
|
+
| 第三方登录 | 50% | 2 | 80% | 3 | 27 | P2 |
|
|
210
|
+
|
|
211
|
+
**Score = (Reach × Impact × Confidence) / Effort**
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
## Step 5: 需求分解报告模板
|
|
216
|
+
|
|
217
|
+
```markdown
|
|
218
|
+
# 需求分解报告
|
|
219
|
+
|
|
220
|
+
## 基本信息
|
|
221
|
+
- **项目/功能**: [名称]
|
|
222
|
+
- **分解日期**: YYYY-MM-DD
|
|
223
|
+
- **清晰度评估**: [X]%
|
|
224
|
+
|
|
225
|
+
## 快速三问分析
|
|
226
|
+
[Step 1 的输出]
|
|
227
|
+
|
|
228
|
+
## 显性需求
|
|
229
|
+
| ID | 描述 | 用户原话 | 优先级 |
|
|
230
|
+
|----|------|----------|--------|
|
|
231
|
+
| REQ-001 | [...] | "[...]" | P0 |
|
|
232
|
+
| REQ-002 | [...] | "[...]" | P1 |
|
|
233
|
+
|
|
234
|
+
## 隐性需求
|
|
235
|
+
| ID | 描述 | 挖掘方法 | 推导依据 | 优先级 |
|
|
236
|
+
|----|------|----------|----------|--------|
|
|
237
|
+
| REQ-101 | [...] | 场景推演 | [...] | P1 |
|
|
238
|
+
| REQ-102 | [...] | 痛点分析 | [...] | P2 |
|
|
239
|
+
|
|
240
|
+
## 需求分类 (MoSCoW)
|
|
241
|
+
### Must (必须)
|
|
242
|
+
- REQ-001: [...]
|
|
243
|
+
- REQ-002: [...]
|
|
244
|
+
|
|
245
|
+
### Should (应该)
|
|
246
|
+
- REQ-101: [...]
|
|
247
|
+
|
|
248
|
+
### Could (可以)
|
|
249
|
+
- REQ-102: [...]
|
|
250
|
+
|
|
251
|
+
### Won't (不做)
|
|
252
|
+
- [明确排除的需求]
|
|
253
|
+
|
|
254
|
+
## 待确认事项
|
|
255
|
+
1. [待确认事项1]
|
|
256
|
+
2. [待确认事项2]
|
|
257
|
+
|
|
258
|
+
## 下一步
|
|
259
|
+
- [ ] 进入 Phase 2: 带答案提问
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
---
|
|
263
|
+
|
|
264
|
+
## 优化需求特殊处理
|
|
265
|
+
|
|
266
|
+
### 优化需求分解流程
|
|
267
|
+
|
|
268
|
+
```
|
|
269
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
270
|
+
│ 优化需求分解流程 │
|
|
271
|
+
├─────────────────────────────────────────────────────────────────┤
|
|
272
|
+
│ │
|
|
273
|
+
│ Step 0.5: 分析现有代码 (MANDATORY) │
|
|
274
|
+
│ ├─ 读取相关代码文件 │
|
|
275
|
+
│ ├─ 理解当前实现 │
|
|
276
|
+
│ ├─ 识别问题点 │
|
|
277
|
+
│ └─ 映射影响范围 │
|
|
278
|
+
│ │
|
|
279
|
+
│ Step 1-5: 标准分解流程 │
|
|
280
|
+
│ └─ 在分解报告中增加"现状分析"章节 │
|
|
281
|
+
│ │
|
|
282
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
### 现状分析检查清单
|
|
286
|
+
|
|
287
|
+
- [ ] 相关代码文件已读取
|
|
288
|
+
- [ ] 当前实现逻辑已理解
|
|
289
|
+
- [ ] 问题点已识别并记录
|
|
290
|
+
- [ ] 影响范围已映射
|
|
291
|
+
- [ ] 现状 vs 目标差距已明确
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
# User Story Examples
|
|
2
|
+
|
|
3
|
+
Real-world examples of well-written user stories with acceptance criteria.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## User Story Format
|
|
8
|
+
|
|
9
|
+
### Standard Format
|
|
10
|
+
```
|
|
11
|
+
As a [user type],
|
|
12
|
+
I want to [action/goal],
|
|
13
|
+
So that [benefit/value].
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### Extended Format (INVEST Criteria)
|
|
17
|
+
- **I**ndependent - Can be developed separately
|
|
18
|
+
- **N**egotiable - Details can be discussed
|
|
19
|
+
- **V**aluable - Delivers value to user
|
|
20
|
+
- **E**stimable - Can estimate effort
|
|
21
|
+
- **S**mall - Completable in one sprint
|
|
22
|
+
- **T**estable - Has clear acceptance criteria
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Example Stories by Domain
|
|
27
|
+
|
|
28
|
+
### Authentication
|
|
29
|
+
|
|
30
|
+
#### US-AUTH-001: User Registration
|
|
31
|
+
```
|
|
32
|
+
As a new visitor,
|
|
33
|
+
I want to create an account with my email,
|
|
34
|
+
So that I can access personalized features.
|
|
35
|
+
|
|
36
|
+
Acceptance Criteria:
|
|
37
|
+
- [ ] Registration form has email, password, confirm password fields
|
|
38
|
+
- [ ] Email must be valid format and unique
|
|
39
|
+
- [ ] Password must be 8+ chars with 1 number and 1 special char
|
|
40
|
+
- [ ] Confirm password must match password
|
|
41
|
+
- [ ] Submit button disabled until all validations pass
|
|
42
|
+
- [ ] Success: redirect to welcome page with confirmation email sent
|
|
43
|
+
- [ ] Error: show inline field errors
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
#### US-AUTH-002: User Login
|
|
47
|
+
```
|
|
48
|
+
As a registered user,
|
|
49
|
+
I want to log in with my credentials,
|
|
50
|
+
So that I can access my account.
|
|
51
|
+
|
|
52
|
+
Acceptance Criteria:
|
|
53
|
+
- [ ] Login form has email and password fields
|
|
54
|
+
- [ ] "Remember me" checkbox available
|
|
55
|
+
- [ ] "Forgot password" link available
|
|
56
|
+
- [ ] Show loading state during authentication
|
|
57
|
+
- [ ] Success: redirect to dashboard or intended page
|
|
58
|
+
- [ ] Wrong credentials: show "Invalid email or password" (no specific field)
|
|
59
|
+
- [ ] Account locked: show lock message with unlock instructions
|
|
60
|
+
- [ ] Rate limit after 5 failed attempts in 15 minutes
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
#### US-AUTH-003: Password Reset
|
|
64
|
+
```
|
|
65
|
+
As a user who forgot my password,
|
|
66
|
+
I want to reset it via email,
|
|
67
|
+
So that I can regain access to my account.
|
|
68
|
+
|
|
69
|
+
Acceptance Criteria:
|
|
70
|
+
- [ ] "Forgot password" page has email input
|
|
71
|
+
- [ ] Always show "Check your email" (even for non-existent emails - security)
|
|
72
|
+
- [ ] Email contains secure, time-limited reset link (24 hours)
|
|
73
|
+
- [ ] Reset page validates password strength
|
|
74
|
+
- [ ] Cannot reuse last 5 passwords
|
|
75
|
+
- [ ] Success: auto-login and redirect to dashboard
|
|
76
|
+
- [ ] Expired link: show "Link expired" with option to request new one
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
### E-Commerce
|
|
82
|
+
|
|
83
|
+
#### US-CART-001: Add to Cart
|
|
84
|
+
```
|
|
85
|
+
As a shopper,
|
|
86
|
+
I want to add products to my cart,
|
|
87
|
+
So that I can purchase multiple items together.
|
|
88
|
+
|
|
89
|
+
Acceptance Criteria:
|
|
90
|
+
- [ ] "Add to Cart" button on product page and listing
|
|
91
|
+
- [ ] Can select quantity before adding (default 1)
|
|
92
|
+
- [ ] Button shows loading state during add
|
|
93
|
+
- [ ] Success: show "Added to cart" toast with "View Cart" link
|
|
94
|
+
- [ ] Cart icon in header shows item count badge
|
|
95
|
+
- [ ] If item already in cart, increase quantity
|
|
96
|
+
- [ ] Out of stock: button shows "Out of Stock" (disabled)
|
|
97
|
+
- [ ] Low stock: show "Only X left" warning
|
|
98
|
+
- [ ] Guest users can add to cart (stored in localStorage)
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
#### US-CART-002: Cart Management
|
|
102
|
+
```
|
|
103
|
+
As a shopper,
|
|
104
|
+
I want to view and modify my cart,
|
|
105
|
+
So that I can review before checkout.
|
|
106
|
+
|
|
107
|
+
Acceptance Criteria:
|
|
108
|
+
- [ ] Cart page shows all items with image, name, price, quantity
|
|
109
|
+
- [ ] Can change quantity with +/- buttons or direct input
|
|
110
|
+
- [ ] Can remove items with "Remove" button
|
|
111
|
+
- [ ] Quantity changes update totals immediately
|
|
112
|
+
- [ ] Show subtotal, shipping estimate, tax, total
|
|
113
|
+
- [ ] Empty cart shows empty state with "Continue Shopping" CTA
|
|
114
|
+
- [ ] Save cart for logged-in users across sessions
|
|
115
|
+
- [ ] Show "Item removed" with "Undo" option (5 seconds)
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
#### US-CHECKOUT-001: Checkout Flow
|
|
119
|
+
```
|
|
120
|
+
As a shopper with items in cart,
|
|
121
|
+
I want to complete my purchase,
|
|
122
|
+
So that I can receive my products.
|
|
123
|
+
|
|
124
|
+
Acceptance Criteria:
|
|
125
|
+
- [ ] Multi-step checkout: Shipping → Payment → Review → Confirm
|
|
126
|
+
- [ ] Progress indicator shows current step
|
|
127
|
+
- [ ] Shipping: address form with validation
|
|
128
|
+
- [ ] Can save address for future orders
|
|
129
|
+
- [ ] Shipping method selection with prices and delivery estimates
|
|
130
|
+
- [ ] Payment: credit card form (PCI compliant) or PayPal
|
|
131
|
+
- [ ] Review: show all details before final confirm
|
|
132
|
+
- [ ] Terms acceptance checkbox required
|
|
133
|
+
- [ ] Success: confirmation page with order number, email sent
|
|
134
|
+
- [ ] Payment failure: return to payment step with error
|
|
135
|
+
- [ ] Can go back to previous steps without losing data
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
### Dashboard
|
|
141
|
+
|
|
142
|
+
#### US-DASH-001: Overview Dashboard
|
|
143
|
+
```
|
|
144
|
+
As a logged-in user,
|
|
145
|
+
I want to see a summary of my activity,
|
|
146
|
+
So that I can quickly understand my status.
|
|
147
|
+
|
|
148
|
+
Acceptance Criteria:
|
|
149
|
+
- [ ] Show personalized greeting with user name
|
|
150
|
+
- [ ] Key metrics cards: [metric 1], [metric 2], [metric 3]
|
|
151
|
+
- [ ] Recent activity list (last 10 items)
|
|
152
|
+
- [ ] Quick action buttons for common tasks
|
|
153
|
+
- [ ] Data refreshes on page load
|
|
154
|
+
- [ ] "Refresh" button for manual refresh
|
|
155
|
+
- [ ] Loading skeletons during data fetch
|
|
156
|
+
- [ ] Error state with retry option
|
|
157
|
+
- [ ] Empty states for users with no data
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
#### US-DASH-002: Data Filtering
|
|
161
|
+
```
|
|
162
|
+
As a dashboard user,
|
|
163
|
+
I want to filter data by date range,
|
|
164
|
+
So that I can analyze specific time periods.
|
|
165
|
+
|
|
166
|
+
Acceptance Criteria:
|
|
167
|
+
- [ ] Date range picker with presets (Today, 7 days, 30 days, Custom)
|
|
168
|
+
- [ ] Custom range allows start and end date selection
|
|
169
|
+
- [ ] Cannot select future dates or end before start
|
|
170
|
+
- [ ] Filter applies to all dashboard components
|
|
171
|
+
- [ ] URL updates with filter params (shareable)
|
|
172
|
+
- [ ] Filter persists on page refresh
|
|
173
|
+
- [ ] "Reset" button returns to default (30 days)
|
|
174
|
+
- [ ] Show selected range in filter UI
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
### Content Management
|
|
180
|
+
|
|
181
|
+
#### US-CMS-001: Create Content
|
|
182
|
+
```
|
|
183
|
+
As a content creator,
|
|
184
|
+
I want to create and publish content,
|
|
185
|
+
So that I can share information with users.
|
|
186
|
+
|
|
187
|
+
Acceptance Criteria:
|
|
188
|
+
- [ ] Rich text editor with formatting options
|
|
189
|
+
- [ ] Can add images, videos, links
|
|
190
|
+
- [ ] Auto-save draft every 30 seconds
|
|
191
|
+
- [ ] Manual save button always available
|
|
192
|
+
- [ ] Preview mode shows published appearance
|
|
193
|
+
- [ ] Can save as draft or publish immediately
|
|
194
|
+
- [ ] Publish can be scheduled for future date/time
|
|
195
|
+
- [ ] SEO fields: title, description, keywords
|
|
196
|
+
- [ ] Slug auto-generated from title, editable
|
|
197
|
+
- [ ] Validation before publish (title required, min length)
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
#### US-CMS-002: Edit Content
|
|
201
|
+
```
|
|
202
|
+
As a content creator,
|
|
203
|
+
I want to edit existing content,
|
|
204
|
+
So that I can keep information up to date.
|
|
205
|
+
|
|
206
|
+
Acceptance Criteria:
|
|
207
|
+
- [ ] Edit page loads with all existing content
|
|
208
|
+
- [ ] Shows last modified date and author
|
|
209
|
+
- [ ] Auto-save during editing
|
|
210
|
+
- [ ] Can revert to previous published version
|
|
211
|
+
- [ ] Version history available
|
|
212
|
+
- [ ] "Unsaved changes" warning when navigating away
|
|
213
|
+
- [ ] Concurrent edit detection with warning
|
|
214
|
+
- [ ] Can unpublish content (returns to draft)
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
### Settings
|
|
220
|
+
|
|
221
|
+
#### US-SET-001: Profile Settings
|
|
222
|
+
```
|
|
223
|
+
As a user,
|
|
224
|
+
I want to update my profile information,
|
|
225
|
+
So that my account reflects current details.
|
|
226
|
+
|
|
227
|
+
Acceptance Criteria:
|
|
228
|
+
- [ ] Can update: name, email, avatar, phone
|
|
229
|
+
- [ ] Email change requires verification
|
|
230
|
+
- [ ] Avatar upload with crop/resize
|
|
231
|
+
- [ ] Image formats: JPG, PNG, max 5MB
|
|
232
|
+
- [ ] Changes save on field blur (auto-save)
|
|
233
|
+
- [ ] Success: show "Saved" indicator
|
|
234
|
+
- [ ] Error: show inline error, don't lose input
|
|
235
|
+
- [ ] "Delete account" option with confirmation
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
#### US-SET-002: Notification Preferences
|
|
239
|
+
```
|
|
240
|
+
As a user,
|
|
241
|
+
I want to control my notifications,
|
|
242
|
+
So that I only receive relevant updates.
|
|
243
|
+
|
|
244
|
+
Acceptance Criteria:
|
|
245
|
+
- [ ] Toggle for each notification type
|
|
246
|
+
- [ ] Group by channel: Email, Push, In-app
|
|
247
|
+
- [ ] "Enable all" / "Disable all" options
|
|
248
|
+
- [ ] Some notifications mandatory (cannot disable)
|
|
249
|
+
- [ ] Changes save immediately
|
|
250
|
+
- [ ] Show "Saved" confirmation
|
|
251
|
+
- [ ] Frequency options where applicable (immediate, daily digest)
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
## Anti-Patterns to Avoid
|
|
257
|
+
|
|
258
|
+
### Too Vague
|
|
259
|
+
```
|
|
260
|
+
❌ As a user, I want the app to be better.
|
|
261
|
+
|
|
262
|
+
✅ As a returning user, I want the homepage to remember my preferences, so that I don't have to reconfigure settings each visit.
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### Too Technical
|
|
266
|
+
```
|
|
267
|
+
❌ As a developer, I want to implement Redux, so that state management is centralized.
|
|
268
|
+
|
|
269
|
+
✅ As a user, I want my shopping cart to persist across browser sessions, so that I don't lose items if I close the browser.
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
### Too Large (Epic, not Story)
|
|
273
|
+
```
|
|
274
|
+
❌ As a user, I want a complete e-commerce checkout, so that I can buy products.
|
|
275
|
+
|
|
276
|
+
✅ Break into: US-001 Add to cart, US-002 View cart, US-003 Enter shipping, US-004 Enter payment, US-005 Confirm order
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
### Missing Value
|
|
280
|
+
```
|
|
281
|
+
❌ As a user, I want a red button.
|
|
282
|
+
|
|
283
|
+
✅ As a user, I want a prominent "Emergency Contact" button, so that I can quickly get help in urgent situations.
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## Story Sizing Guide
|
|
289
|
+
|
|
290
|
+
| Size | Effort | Examples |
|
|
291
|
+
|------|--------|----------|
|
|
292
|
+
| XS | <2 hours | Text change, color update, simple validation |
|
|
293
|
+
| S | 2-4 hours | New form field, simple API integration |
|
|
294
|
+
| M | 1-2 days | New page, complex form, new component |
|
|
295
|
+
| L | 3-5 days | Feature with multiple pages, complex logic |
|
|
296
|
+
| XL | 1+ week | Should be broken down into smaller stories |
|
|
297
|
+
|