create-sdd-project 0.2.2 → 0.3.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/README.md +120 -110
- package/lib/config.js +2 -2
- package/lib/generator.js +7 -28
- package/lib/init-generator.js +48 -37
- package/lib/init-wizard.js +2 -1
- package/lib/scanner.js +16 -0
- package/package.json +1 -1
- package/template/.claude/agents/backend-developer.md +1 -1
- package/template/.claude/agents/frontend-developer.md +1 -1
- package/template/.claude/settings.json +1 -1
- package/template/.claude/skills/bug-workflow/SKILL.md +2 -2
- package/template/.claude/skills/development-workflow/SKILL.md +18 -18
- package/template/.claude/skills/development-workflow/references/add-feature-template.md +16 -0
- package/template/.claude/skills/development-workflow/references/branching-strategy.md +1 -1
- package/template/.claude/skills/development-workflow/references/complexity-guide.md +6 -6
- package/template/.claude/skills/development-workflow/references/failure-handling.md +3 -3
- package/template/.claude/skills/development-workflow/references/pr-template.md +3 -3
- package/template/.claude/skills/development-workflow/references/ticket-template.md +3 -3
- package/template/.claude/skills/development-workflow/references/workflow-example.md +7 -7
- package/template/.claude/skills/project-memory/SKILL.md +9 -9
- package/template/.gemini/agents/backend-developer.md +1 -1
- package/template/.gemini/agents/frontend-developer.md +1 -1
- package/template/.gemini/commands/add-feature.toml +2 -0
- package/template/.gemini/commands/next-task.toml +2 -2
- package/template/.gemini/commands/show-progress.toml +2 -2
- package/template/.gemini/commands/start-task.toml +1 -1
- package/template/.gemini/skills/bug-workflow/SKILL.md +4 -4
- package/template/.gemini/skills/development-workflow/SKILL.md +18 -18
- package/template/.gemini/skills/development-workflow/references/add-feature-template.md +16 -0
- package/template/.gemini/skills/development-workflow/references/branching-strategy.md +1 -1
- package/template/.gemini/skills/development-workflow/references/complexity-guide.md +6 -6
- package/template/.gemini/skills/development-workflow/references/failure-handling.md +3 -3
- package/template/.gemini/skills/development-workflow/references/pr-template.md +3 -3
- package/template/.gemini/skills/development-workflow/references/ticket-template.md +3 -3
- package/template/.gemini/skills/development-workflow/references/workflow-example.md +7 -7
- package/template/.gemini/skills/project-memory/SKILL.md +8 -8
- package/template/AGENTS.md +5 -5
- package/template/CLAUDE.md +2 -2
- package/template/ai-specs/specs/base-standards.mdc +8 -8
- package/template/docs/project_notes/product-tracker.md +56 -0
- package/template/.claude/skills/development-workflow/references/sprint-init-template.md +0 -82
- package/template/.gemini/commands/init-sprint.toml +0 -2
- package/template/.gemini/skills/development-workflow/references/sprint-init-template.md +0 -82
- package/template/docs/project_notes/sprint-0-tracker.md +0 -66
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# [
|
|
1
|
+
# [FEATURE-ID]: [Feature Title]
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
**Status:** In Progress | **Branch:** feature/
|
|
3
|
+
**Feature:** [ID] | **Type:** [Backend/Frontend/Fullstack]-[Feature/Bugfix/Refactor] | **Priority:** [High/Medium/Low]
|
|
4
|
+
**Status:** In Progress | **Branch:** feature/[FEATURE-ID]-[short-description]
|
|
5
5
|
**Created:** [YYYY-MM-DD] | **Dependencies:** [List or "None"]
|
|
6
6
|
|
|
7
7
|
---
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Workflow Example:
|
|
1
|
+
# Workflow Example: Feature F001 (Simple, L2 Trusted, github-flow)
|
|
2
2
|
|
|
3
3
|
## On Skill Start
|
|
4
4
|
|
|
5
|
-
1. Read
|
|
5
|
+
1. Read product tracker → Active Session → No active feature
|
|
6
6
|
2. `CLAUDE.md` → Autonomy Level 2 (Trusted)
|
|
7
7
|
3. `key_facts.md` → branching: github-flow (base: `main`)
|
|
8
8
|
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
git checkout main && git pull
|
|
15
|
-
git checkout -b feature/
|
|
15
|
+
git checkout -b feature/F001-express-setup
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
Update
|
|
18
|
+
Update product tracker → Active Session: F001, step `1/6`, branch, complexity: Simple.
|
|
19
19
|
|
|
20
20
|
## Step 2: Plan — Skipped (Simple task)
|
|
21
21
|
|
|
@@ -72,7 +72,7 @@ git commit -m "feat(backend): initialize Express + TypeScript project
|
|
|
72
72
|
## Step 5: Review
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
git push -u origin feature/
|
|
75
|
+
git push -u origin feature/F001-express-setup
|
|
76
76
|
gh pr create --base main --title "feat(backend): initialize Express + TypeScript project" --body "..."
|
|
77
77
|
gh pr merge --squash
|
|
78
78
|
```
|
|
@@ -81,7 +81,7 @@ gh pr merge --squash
|
|
|
81
81
|
|
|
82
82
|
```bash
|
|
83
83
|
git checkout main && git pull
|
|
84
|
-
git branch -d feature/
|
|
84
|
+
git branch -d feature/F001-express-setup
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
-
Update
|
|
87
|
+
Update product tracker: F001 → done, add to Completion Log, clear Active Session.
|
|
@@ -7,7 +7,7 @@ description: "Set up and maintain a structured project memory system in docs/pro
|
|
|
7
7
|
|
|
8
8
|
## Overview
|
|
9
9
|
|
|
10
|
-
Maintain institutional knowledge for projects by establishing a structured memory system in `docs/project_notes/`. This skill sets up three key memory files (bugs, decisions, key facts) plus
|
|
10
|
+
Maintain institutional knowledge for projects by establishing a structured memory system in `docs/project_notes/`. This skill sets up three key memory files (bugs, decisions, key facts) plus the product tracker, and ensures the AI assistant automatically references and maintains them.
|
|
11
11
|
|
|
12
12
|
## When to Use This Skill
|
|
13
13
|
|
|
@@ -32,14 +32,14 @@ docs/
|
|
|
32
32
|
├── bugs.md # Bug log with solutions
|
|
33
33
|
├── decisions.md # Architectural Decision Records
|
|
34
34
|
├── key_facts.md # Project configuration and constants
|
|
35
|
-
└──
|
|
35
|
+
└── product-tracker.md # Feature backlog, active session, completion log
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
**Initial file content:** Copy templates from the `references/` directory in this skill:
|
|
39
39
|
- Use `references/bugs_template.md` for initial `bugs.md`
|
|
40
40
|
- Use `references/decisions_template.md` for initial `decisions.md`
|
|
41
41
|
- Use `references/key_facts_template.md` for initial `key_facts.md`
|
|
42
|
-
-
|
|
42
|
+
- Product tracker is created using the development-workflow skill
|
|
43
43
|
|
|
44
44
|
### 2. Memory-Aware Behavior
|
|
45
45
|
|
|
@@ -55,7 +55,7 @@ The following protocols should be followed at all times:
|
|
|
55
55
|
- Check `docs/project_notes/key_facts.md`
|
|
56
56
|
|
|
57
57
|
**When completing work:**
|
|
58
|
-
- Update
|
|
58
|
+
- Update product tracker and add to Completion Log
|
|
59
59
|
|
|
60
60
|
### 3. Searching Memory Files
|
|
61
61
|
|
|
@@ -102,7 +102,7 @@ When encountering problems or making decisions, proactively search memory files:
|
|
|
102
102
|
|
|
103
103
|
- User is responsible for manual cleanup
|
|
104
104
|
- Remove very old bug entries (6+ months) that are no longer relevant
|
|
105
|
-
-
|
|
105
|
+
- Review and clean up completed features in product tracker
|
|
106
106
|
- Keep all decisions (they provide historical context)
|
|
107
107
|
- Update key_facts.md when project configuration changes
|
|
108
108
|
|
|
@@ -112,7 +112,7 @@ When encountering problems or making decisions, proactively search memory files:
|
|
|
112
112
|
- **references/decisions_template.md** - ADR format with examples
|
|
113
113
|
- **references/key_facts_template.md** - Key facts organization with examples
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
Product tracker is created using the development-workflow skill.
|
|
116
116
|
|
|
117
117
|
## Tips for Effective Memory Management
|
|
118
118
|
|
|
@@ -124,7 +124,7 @@ Sprint trackers are created using the development-workflow skill.
|
|
|
124
124
|
|
|
125
125
|
## Integration with Other Skills
|
|
126
126
|
|
|
127
|
-
- **development-workflow**: Updates
|
|
127
|
+
- **development-workflow**: Updates product tracker and memory files during task execution
|
|
128
128
|
- **bug-workflow**: Documents bugs and solutions in bugs.md
|
|
129
129
|
|
|
130
130
|
## Success Criteria
|
|
@@ -132,6 +132,6 @@ Sprint trackers are created using the development-workflow skill.
|
|
|
132
132
|
This skill is successfully deployed when:
|
|
133
133
|
|
|
134
134
|
- `docs/project_notes/` directory exists with memory files
|
|
135
|
-
-
|
|
135
|
+
- Product tracker exists with feature backlog
|
|
136
136
|
- Memory files follow template format
|
|
137
137
|
- AI assistant checks memory files before proposing changes
|
package/template/AGENTS.md
CHANGED
|
@@ -27,7 +27,7 @@ project/
|
|
|
27
27
|
|
|
28
28
|
Institutional knowledge lives in `docs/project_notes/`:
|
|
29
29
|
|
|
30
|
-
- **
|
|
30
|
+
- **product-tracker.md** — Feature backlog, **Active Session** (current feature, next actions, open questions), completion log
|
|
31
31
|
- **bugs.md** — Bug log with solutions and prevention notes
|
|
32
32
|
- **decisions.md** — Architectural Decision Records (ADRs)
|
|
33
33
|
- **key_facts.md** — Project configuration, ports, URLs, branching strategy
|
|
@@ -36,8 +36,8 @@ Institutional knowledge lives in `docs/project_notes/`:
|
|
|
36
36
|
|
|
37
37
|
After context loss, new session, or context compaction — BEFORE continuing work:
|
|
38
38
|
|
|
39
|
-
1. **Read
|
|
40
|
-
2. If there is an active
|
|
39
|
+
1. **Read product tracker** (`docs/project_notes/product-tracker.md`) → **Active Session** section
|
|
40
|
+
2. If there is an active feature → read the referenced ticket in `docs/tickets/`
|
|
41
41
|
3. Respect the configured autonomy level — do NOT skip checkpoints
|
|
42
42
|
|
|
43
43
|
## Anti-Patterns (Avoid)
|
|
@@ -48,14 +48,14 @@ After context loss, new session, or context compaction — BEFORE continuing wor
|
|
|
48
48
|
- Creating files when existing ones can be extended
|
|
49
49
|
- Adding features not explicitly requested
|
|
50
50
|
- Committing without updating ticket acceptance criteria
|
|
51
|
-
- Forgetting to update
|
|
51
|
+
- Forgetting to update product tracker's Active Session after step changes
|
|
52
52
|
|
|
53
53
|
## Automated Hooks (Claude Code)
|
|
54
54
|
|
|
55
55
|
The project includes pre-configured hooks in `.claude/settings.json`:
|
|
56
56
|
|
|
57
57
|
- **Quick Scan** (`SubagentStop`): After `backend-developer` or `frontend-developer` finishes, a fast grep-based scan (~2s, no additional API calls) checks for `console.log`, `debugger`, `TODO/FIXME`, hardcoded secrets, and localhost references. Critical issues block; warnings are non-blocking (full review happens in Step 5).
|
|
58
|
-
- **Compaction Recovery** (`SessionStart → compact`): After context compaction, injects a reminder to read the
|
|
58
|
+
- **Compaction Recovery** (`SessionStart → compact`): After context compaction, injects a reminder to read the product tracker Active Session for context recovery.
|
|
59
59
|
|
|
60
60
|
Personal notification hooks (macOS/Linux) are in `.claude/settings.local.json` — see that file for examples.
|
|
61
61
|
|
package/template/CLAUDE.md
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
|
|
13
13
|
After context compaction or new session — BEFORE continuing work:
|
|
14
14
|
|
|
15
|
-
1. Read
|
|
16
|
-
2. If active
|
|
15
|
+
1. Read product tracker (`docs/project_notes/product-tracker.md`) → **Active Session**
|
|
16
|
+
2. If active feature → read referenced ticket in `docs/tickets/`
|
|
17
17
|
3. Read the active skill file (`.claude/skills/*/SKILL.md`)
|
|
18
18
|
4. Do NOT proceed past any checkpoint without user confirmation (respect autonomy level)
|
|
19
19
|
5. If Active Session shows a pending checkpoint, ask before continuing
|
|
@@ -31,7 +31,7 @@ These conventions adapt per-project via `<!-- CONFIG: -->` comments in `CLAUDE.m
|
|
|
31
31
|
|
|
32
32
|
```
|
|
33
33
|
0. SPEC → spec-creator drafts/updates specs → SPEC APPROVAL (Std/Cplx)
|
|
34
|
-
1. SETUP → Branch, ticket,
|
|
34
|
+
1. SETUP → Branch, ticket, product tracker → TICKET APPROVAL (Std/Cplx)
|
|
35
35
|
2. PLAN → Planner agent creates implementation plan → PLAN APPROVAL (Std/Cplx)
|
|
36
36
|
3. IMPLEMENT → Developer agent, TDD, real-time spec sync
|
|
37
37
|
4. FINALIZE → Tests/lint/build, production-validator → COMMIT APPROVAL
|
|
@@ -67,12 +67,12 @@ Quality gates (tests, lint, build, validators) **always run** regardless of leve
|
|
|
67
67
|
| Commit Approval | Required | Auto | Auto | Auto |
|
|
68
68
|
| Merge Approval | Required | Required | Required | Auto |
|
|
69
69
|
|
|
70
|
-
- **L1 Full Control**:
|
|
70
|
+
- **L1 Full Control**: New project or learning SDD — human approves every step.
|
|
71
71
|
- **L2 Trusted**: Comfortable with SDD — AI handles routine, human reviews plans and merges.
|
|
72
72
|
- **L3 Autopilot**: Battle-tested workflow — human only reviews PRs before merge.
|
|
73
|
-
- **L4 Full Auto**: Full automation — human reviews
|
|
73
|
+
- **L4 Full Auto**: Full automation — human reviews completed features only.
|
|
74
74
|
|
|
75
|
-
**Auto** = proceed without asking; log in
|
|
75
|
+
**Auto** = proceed without asking; log in product tracker → "Auto-Approved Decisions" table.
|
|
76
76
|
|
|
77
77
|
## 4. Agent Roles
|
|
78
78
|
|
|
@@ -121,11 +121,11 @@ All agents MUST follow: **Acknowledge** → **Execute** → **Explain** → **Ga
|
|
|
121
121
|
|
|
122
122
|
## 8. Project Memory Protocols
|
|
123
123
|
|
|
124
|
-
- Starting a session or after compaction → read
|
|
124
|
+
- Starting a session or after compaction → read product tracker's **Active Session** first
|
|
125
125
|
- Before architectural changes → check `decisions.md`
|
|
126
126
|
- When encountering bugs → search `bugs.md`
|
|
127
127
|
- When looking up config → check `key_facts.md`
|
|
128
|
-
- After every step change → update
|
|
128
|
+
- After every step change → update product tracker's Active Session
|
|
129
129
|
|
|
130
130
|
## 9. Git Conventions
|
|
131
131
|
|
|
@@ -139,7 +139,7 @@ All agents MUST follow: **Acknowledge** → **Execute** → **Explain** → **Ga
|
|
|
139
139
|
| Branch | Base | Merges to |
|
|
140
140
|
|--------|------|-----------|
|
|
141
141
|
| `main` | — | — (always deployable) |
|
|
142
|
-
| `feature
|
|
142
|
+
| `feature/<feature-id>-<desc>` | main | main (PR) |
|
|
143
143
|
| `bugfix/<area>-<desc>` | main | main (PR) |
|
|
144
144
|
| `hotfix/<desc>` | main | main (fast-track PR) |
|
|
145
145
|
|
|
@@ -149,7 +149,7 @@ All agents MUST follow: **Acknowledge** → **Execute** → **Explain** → **Ga
|
|
|
149
149
|
|--------|------|-----------|
|
|
150
150
|
| `main` | — | — (releases only) |
|
|
151
151
|
| `develop` | main | — (integration) |
|
|
152
|
-
| `feature
|
|
152
|
+
| `feature/<feature-id>-<desc>` | develop | develop (PR) |
|
|
153
153
|
| `release/<version>` | develop | main + develop |
|
|
154
154
|
| `hotfix/<desc>` | main | main + develop |
|
|
155
155
|
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Product Tracker
|
|
2
|
+
|
|
3
|
+
> Feature backlog and progress tracking. Each feature follows the SDD workflow (Steps 0-6).
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Active Session
|
|
8
|
+
|
|
9
|
+
> **Read this section first** when starting a new session or after context compaction. Provides instant context recovery.
|
|
10
|
+
|
|
11
|
+
**Last Updated:** —
|
|
12
|
+
|
|
13
|
+
| Field | Value |
|
|
14
|
+
|-------|-------|
|
|
15
|
+
| **Current Feature** | None |
|
|
16
|
+
| **Step** | — |
|
|
17
|
+
| **Branch** | — |
|
|
18
|
+
| **Complexity** | — |
|
|
19
|
+
| **Ticket** | — |
|
|
20
|
+
|
|
21
|
+
**Context:** _No active work._
|
|
22
|
+
|
|
23
|
+
**Next Actions:**
|
|
24
|
+
1. —
|
|
25
|
+
|
|
26
|
+
**Open Questions:** _None._
|
|
27
|
+
|
|
28
|
+
**Auto-Approved Decisions (this session):**
|
|
29
|
+
|
|
30
|
+
| Step | Decision | Rationale |
|
|
31
|
+
|------|----------|-----------|
|
|
32
|
+
| — | — | — |
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Features
|
|
37
|
+
|
|
38
|
+
| ID | Feature | Type | Status | Step | Notes |
|
|
39
|
+
|----|---------|------|--------|------|-------|
|
|
40
|
+
| F001 | [Feature description] | backend | pending | — | |
|
|
41
|
+
|
|
42
|
+
**Status Legend:** pending | in-progress | done | blocked | cancelled
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Completion Log
|
|
47
|
+
|
|
48
|
+
| Date | Feature | Commit/PR | Notes |
|
|
49
|
+
|------|---------|-----------|-------|
|
|
50
|
+
| | | | |
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Notes
|
|
55
|
+
|
|
56
|
+
- Tracker initialized. Use `add feature "description"` to add features.
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
# Sprint Initialization Template
|
|
2
|
-
|
|
3
|
-
Use this template when running `init sprint N`.
|
|
4
|
-
|
|
5
|
-
## How to Initialize
|
|
6
|
-
|
|
7
|
-
1. Copy template below to `docs/project_notes/sprint-{N}-tracker.md`
|
|
8
|
-
2. Read the sprint section from your project plan — extract goal, backend tasks (B*.*), frontend tasks (F*.*)
|
|
9
|
-
3. Set dates (start + 2 weeks)
|
|
10
|
-
4. Use `start task B0.1` to begin
|
|
11
|
-
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
## Template
|
|
15
|
-
|
|
16
|
-
```markdown
|
|
17
|
-
# Sprint {N}: {Sprint Title}
|
|
18
|
-
|
|
19
|
-
**Period:** YYYY-MM-DD to YYYY-MM-DD
|
|
20
|
-
**Goal:** {Sprint goal}
|
|
21
|
-
**Progress:** 0/{total} tasks (0%)
|
|
22
|
-
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
## Active Session
|
|
26
|
-
|
|
27
|
-
> **Read this section first** when starting a new session or after context compaction.
|
|
28
|
-
|
|
29
|
-
**Last Updated:** —
|
|
30
|
-
|
|
31
|
-
| Field | Value |
|
|
32
|
-
|-------|-------|
|
|
33
|
-
| **Current Task** | None |
|
|
34
|
-
| **Step** | — |
|
|
35
|
-
| **Branch** | — |
|
|
36
|
-
| **Complexity** | — |
|
|
37
|
-
| **Ticket** | — |
|
|
38
|
-
|
|
39
|
-
**Context:** _No active work._
|
|
40
|
-
|
|
41
|
-
**Next Actions:**
|
|
42
|
-
1. —
|
|
43
|
-
|
|
44
|
-
**Open Questions:** _None._
|
|
45
|
-
|
|
46
|
-
**Auto-Approved Decisions (this session):**
|
|
47
|
-
|
|
48
|
-
| Step | Decision | Rationale |
|
|
49
|
-
|------|----------|-----------|
|
|
50
|
-
| — | — | — |
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
|
|
54
|
-
## Tasks
|
|
55
|
-
|
|
56
|
-
### Backend
|
|
57
|
-
|
|
58
|
-
| # | Task | Status | Notes |
|
|
59
|
-
|---|------|--------|-------|
|
|
60
|
-
{backend_tasks}
|
|
61
|
-
|
|
62
|
-
### Frontend
|
|
63
|
-
|
|
64
|
-
| # | Task | Status | Notes |
|
|
65
|
-
|---|------|--------|-------|
|
|
66
|
-
{frontend_tasks}
|
|
67
|
-
|
|
68
|
-
**Status Legend:** ⬚ Pending | 🔄 In Progress | ✅ Complete | ⏸️ Blocked | ❌ Cancelled
|
|
69
|
-
|
|
70
|
-
---
|
|
71
|
-
|
|
72
|
-
## Completion Log
|
|
73
|
-
|
|
74
|
-
| Date | Task | Commit | Notes |
|
|
75
|
-
|------|------|--------|-------|
|
|
76
|
-
|
|
77
|
-
---
|
|
78
|
-
|
|
79
|
-
## Sprint Notes
|
|
80
|
-
|
|
81
|
-
_Key learnings, issues, or observations._
|
|
82
|
-
```
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
# Sprint Initialization Template
|
|
2
|
-
|
|
3
|
-
Use this template when running `init sprint N`.
|
|
4
|
-
|
|
5
|
-
## How to Initialize
|
|
6
|
-
|
|
7
|
-
1. Copy template below to `docs/project_notes/sprint-{N}-tracker.md`
|
|
8
|
-
2. Read the sprint section from your project plan — extract goal, backend tasks (B*.*), frontend tasks (F*.*)
|
|
9
|
-
3. Set dates (start + 2 weeks)
|
|
10
|
-
4. Use `start task B0.1` to begin
|
|
11
|
-
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
## Template
|
|
15
|
-
|
|
16
|
-
```markdown
|
|
17
|
-
# Sprint {N}: {Sprint Title}
|
|
18
|
-
|
|
19
|
-
**Period:** YYYY-MM-DD to YYYY-MM-DD
|
|
20
|
-
**Goal:** {Sprint goal}
|
|
21
|
-
**Progress:** 0/{total} tasks (0%)
|
|
22
|
-
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
## Active Session
|
|
26
|
-
|
|
27
|
-
> **Read this section first** when starting a new session or after context compaction.
|
|
28
|
-
|
|
29
|
-
**Last Updated:** —
|
|
30
|
-
|
|
31
|
-
| Field | Value |
|
|
32
|
-
|-------|-------|
|
|
33
|
-
| **Current Task** | None |
|
|
34
|
-
| **Step** | — |
|
|
35
|
-
| **Branch** | — |
|
|
36
|
-
| **Complexity** | — |
|
|
37
|
-
| **Ticket** | — |
|
|
38
|
-
|
|
39
|
-
**Context:** _No active work._
|
|
40
|
-
|
|
41
|
-
**Next Actions:**
|
|
42
|
-
1. —
|
|
43
|
-
|
|
44
|
-
**Open Questions:** _None._
|
|
45
|
-
|
|
46
|
-
**Auto-Approved Decisions (this session):**
|
|
47
|
-
|
|
48
|
-
| Step | Decision | Rationale |
|
|
49
|
-
|------|----------|-----------|
|
|
50
|
-
| — | — | — |
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
|
|
54
|
-
## Tasks
|
|
55
|
-
|
|
56
|
-
### Backend
|
|
57
|
-
|
|
58
|
-
| # | Task | Status | Notes |
|
|
59
|
-
|---|------|--------|-------|
|
|
60
|
-
{backend_tasks}
|
|
61
|
-
|
|
62
|
-
### Frontend
|
|
63
|
-
|
|
64
|
-
| # | Task | Status | Notes |
|
|
65
|
-
|---|------|--------|-------|
|
|
66
|
-
{frontend_tasks}
|
|
67
|
-
|
|
68
|
-
**Status Legend:** ⬚ Pending | 🔄 In Progress | ✅ Complete | ⏸️ Blocked | ❌ Cancelled
|
|
69
|
-
|
|
70
|
-
---
|
|
71
|
-
|
|
72
|
-
## Completion Log
|
|
73
|
-
|
|
74
|
-
| Date | Task | Commit | Notes |
|
|
75
|
-
|------|------|--------|-------|
|
|
76
|
-
|
|
77
|
-
---
|
|
78
|
-
|
|
79
|
-
## Sprint Notes
|
|
80
|
-
|
|
81
|
-
_Key learnings, issues, or observations._
|
|
82
|
-
```
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
# Sprint 0 Tracker
|
|
2
|
-
|
|
3
|
-
**Period:** [YYYY-MM-DD] to [YYYY-MM-DD]
|
|
4
|
-
**Goal:** Project setup and infrastructure
|
|
5
|
-
**Progress:** 0/0 tasks (0%)
|
|
6
|
-
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## Active Session
|
|
10
|
-
|
|
11
|
-
> **Read this section first** when starting a new session or after context compaction. Provides instant context recovery.
|
|
12
|
-
|
|
13
|
-
**Last Updated:** —
|
|
14
|
-
|
|
15
|
-
| Field | Value |
|
|
16
|
-
|-------|-------|
|
|
17
|
-
| **Current Task** | None |
|
|
18
|
-
| **Step** | — |
|
|
19
|
-
| **Branch** | — |
|
|
20
|
-
| **Complexity** | — |
|
|
21
|
-
| **Ticket** | — |
|
|
22
|
-
|
|
23
|
-
**Context:** _No active work._
|
|
24
|
-
|
|
25
|
-
**Next Actions:**
|
|
26
|
-
1. —
|
|
27
|
-
|
|
28
|
-
**Open Questions:** _None._
|
|
29
|
-
|
|
30
|
-
**Auto-Approved Decisions (this session):**
|
|
31
|
-
|
|
32
|
-
| Step | Decision | Rationale |
|
|
33
|
-
|------|----------|-----------|
|
|
34
|
-
| — | — | — |
|
|
35
|
-
|
|
36
|
-
---
|
|
37
|
-
|
|
38
|
-
## Tasks
|
|
39
|
-
|
|
40
|
-
### Backend
|
|
41
|
-
|
|
42
|
-
| # | Task | Status | Notes |
|
|
43
|
-
|---|------|--------|-------|
|
|
44
|
-
| B0.1 | [Task description] | ⬚ | |
|
|
45
|
-
|
|
46
|
-
### Frontend
|
|
47
|
-
|
|
48
|
-
| # | Task | Status | Notes |
|
|
49
|
-
|---|------|--------|-------|
|
|
50
|
-
| F0.1 | [Task description] | ⬚ | |
|
|
51
|
-
|
|
52
|
-
**Status Legend:** ⬚ Pending | 🔄 In Progress | ✅ Complete | ⏸️ Blocked | ❌ Cancelled
|
|
53
|
-
|
|
54
|
-
---
|
|
55
|
-
|
|
56
|
-
## Completion Log
|
|
57
|
-
|
|
58
|
-
| Date | Task | Commit | Notes |
|
|
59
|
-
|------|------|--------|-------|
|
|
60
|
-
| | | | |
|
|
61
|
-
|
|
62
|
-
---
|
|
63
|
-
|
|
64
|
-
## Sprint Notes
|
|
65
|
-
|
|
66
|
-
- Sprint initialized. Replace tasks above with your actual Sprint 0 backlog.
|