@codebakers/mcp 5.6.1 → 5.7.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/dist/cli.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +22 -3
- package/dist/index.js.map +1 -1
- package/dist/tools/get-context.js +3 -3
- package/dist/tools/get-context.js.map +1 -1
- package/dist/tools/map-dependencies.js +21 -0
- package/dist/tools/map-dependencies.js.map +1 -1
- package/dist/tools/map-mlm-dependencies.d.ts +19 -0
- package/dist/tools/map-mlm-dependencies.d.ts.map +1 -0
- package/dist/tools/map-mlm-dependencies.js +451 -0
- package/dist/tools/map-mlm-dependencies.js.map +1 -0
- package/dist/tools/run-interview.d.ts +4 -2
- package/dist/tools/run-interview.d.ts.map +1 -1
- package/dist/tools/run-interview.js +13 -11
- package/dist/tools/run-interview.js.map +1 -1
- package/dist/tools/start.js +6 -6
- package/package.json +2 -1
- package/templates/BUILD-STATE.md +76 -0
- package/templates/BUSINESS-RULES-TEMPLATE.md +750 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Build State
|
|
2
|
+
|
|
3
|
+
**Project:** [Project Name]
|
|
4
|
+
**Type:** [Email Client / CRM / Dashboard / etc.]
|
|
5
|
+
**Domain:** [email / crm / dashboard / etc.]
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Current Status
|
|
10
|
+
|
|
11
|
+
**Current Phase:** 0
|
|
12
|
+
**Phase Name:** Domain Research & Specification
|
|
13
|
+
**Progress:** 0%
|
|
14
|
+
|
|
15
|
+
**Current Task:** Generate PROJECT-SPEC.md with Gates 0-5
|
|
16
|
+
|
|
17
|
+
**Last Updated:** [ISO Date]
|
|
18
|
+
**Created:** [ISO Date]
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Phase Progress
|
|
23
|
+
|
|
24
|
+
- [ ] Phase 0: Domain Research & Spec
|
|
25
|
+
- [ ] Phase 1: UI Mockup & Design
|
|
26
|
+
- [ ] Phase 2: Mock Analysis & Schema
|
|
27
|
+
- [ ] Phase 3: Foundation Build
|
|
28
|
+
- [ ] Phase 4: Feature Build
|
|
29
|
+
- [ ] Phase 5: Testing & Verification
|
|
30
|
+
- [ ] Phase 6: Deployment & Ops
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Recent Decisions
|
|
35
|
+
|
|
36
|
+
_Chronological log of major decisions made during build_
|
|
37
|
+
|
|
38
|
+
### [Date] - Decision: [What]
|
|
39
|
+
|
|
40
|
+
**Context:** [Why this came up]
|
|
41
|
+
**Options Considered:** [List]
|
|
42
|
+
**Chosen:** [X]
|
|
43
|
+
**Reasoning:** [Why]
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Active Blockers
|
|
48
|
+
|
|
49
|
+
_Current issues blocking progress_
|
|
50
|
+
|
|
51
|
+
### [Type] - [Description]
|
|
52
|
+
|
|
53
|
+
**Impact:** [What's blocked]
|
|
54
|
+
**Solutions:** [How to fix]
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Next Actions
|
|
59
|
+
|
|
60
|
+
1. [Next immediate action]
|
|
61
|
+
2. [Following action]
|
|
62
|
+
3. [After that]
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## Session Resume Information
|
|
67
|
+
|
|
68
|
+
**If Session Crashes:**
|
|
69
|
+
- Current phase: 0
|
|
70
|
+
- Current task: [specific task]
|
|
71
|
+
- Resume by: Loading this file and continuing from [specific point]
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
_This file is auto-loaded at the start of every AI session_
|
|
76
|
+
_Updated by: CodeBakers MCP Server_
|