mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
9e7dc290db
Replace the WPF desktop application (Azaion.Suite, Azaion.Annotator, Azaion.Common, Azaion.Inference, Azaion.Loader, Azaion.LoaderUI, Azaion.Dataset, Azaion.Test) with a standalone .NET Web API in src/. Made-with: Cursor
60 lines
1.7 KiB
Markdown
60 lines
1.7 KiB
Markdown
# Decomposition Summary Template
|
|
|
|
Use this template after all steps complete. Save as `TASKS_DIR/<topic>/SUMMARY.md`.
|
|
|
|
---
|
|
|
|
```markdown
|
|
# Decomposition Summary
|
|
|
|
**Date**: [YYYY-MM-DD]
|
|
**Topic**: [topic name]
|
|
**Total Components**: [N]
|
|
**Total Features**: [N]
|
|
**Total Complexity Points**: [N]
|
|
|
|
## Component Breakdown
|
|
|
|
| # | Component | Features | Total Points | Jira Epic |
|
|
|---|-----------|----------|-------------|-----------|
|
|
| 01 | [name] | [count] | [sum] | [EPIC-ID] |
|
|
| 02 | [name] | [count] | [sum] | [EPIC-ID] |
|
|
| ... | ... | ... | ... | ... |
|
|
|
|
## Feature List
|
|
|
|
| Component | Feature | Complexity | Jira Task | Dependencies |
|
|
|-----------|---------|-----------|-----------|-------------|
|
|
| [##]_[name] | [##].[##]_feature_[name] | [points] | [TASK-ID] | [deps or "None"] |
|
|
| ... | ... | ... | ... | ... |
|
|
|
|
## Implementation Order
|
|
|
|
Recommended sequence based on dependency analysis:
|
|
|
|
| Phase | Components / Features | Rationale |
|
|
|-------|----------------------|-----------|
|
|
| 1 | [list] | [foundational, no dependencies] |
|
|
| 2 | [list] | [depends on phase 1] |
|
|
| 3 | [list] | [depends on phase 1-2] |
|
|
| ... | ... | ... |
|
|
|
|
### Parallelization Opportunities
|
|
|
|
[Features/components that can be implemented concurrently within each phase]
|
|
|
|
## Cross-Component Dependencies
|
|
|
|
| From (Feature) | To (Feature) | Dependency Type |
|
|
|----------------|-------------|-----------------|
|
|
| [comp.feature] | [comp.feature] | [data / API / event] |
|
|
| ... | ... | ... |
|
|
|
|
## Artifacts Produced
|
|
|
|
- `initial_structure.md` — project skeleton plan
|
|
- `cross_dependencies.md` — dependency matrix
|
|
- `[##]_[name]/[##].[##]_feature_*.md` — feature specs per component
|
|
- Jira tasks created under respective epics
|
|
```
|