opencodekit 0.17.0 → 0.17.2

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.
Files changed (27) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/AGENT_ALIGNMENT.md +564 -0
  3. package/dist/template/.opencode/agent/build.md +140 -0
  4. package/dist/template/.opencode/agent/general.md +89 -0
  5. package/dist/template/.opencode/agent/plan.md +175 -0
  6. package/dist/template/.opencode/agent/review.md +96 -0
  7. package/dist/template/.opencode/command/create.md +57 -15
  8. package/dist/template/.opencode/command/init-context.md +259 -0
  9. package/dist/template/.opencode/command/init-user.md +103 -0
  10. package/dist/template/.opencode/command/init.md +53 -39
  11. package/dist/template/.opencode/command/plan.md +200 -16
  12. package/dist/template/.opencode/command/ship.md +251 -17
  13. package/dist/template/.opencode/command/start.md +35 -4
  14. package/dist/template/.opencode/dcp.jsonc +80 -80
  15. package/dist/template/.opencode/memory/_templates/PROJECT.md +58 -0
  16. package/dist/template/.opencode/memory/_templates/ROADMAP.md +93 -0
  17. package/dist/template/.opencode/memory/_templates/STATE.md +89 -0
  18. package/dist/template/.opencode/memory/_templates/tech-stack.md +35 -0
  19. package/dist/template/.opencode/memory/project/project.md +92 -0
  20. package/dist/template/.opencode/memory/project/roadmap.md +142 -0
  21. package/dist/template/.opencode/memory/project/state.md +84 -0
  22. package/dist/template/.opencode/opencode.json +1030 -1104
  23. package/dist/template/.opencode/package.json +1 -1
  24. package/dist/template/.opencode/skill/context-initialization/SKILL.md +60 -0
  25. package/dist/template/.opencode/skill/systematic-debugging/SKILL.md +76 -0
  26. package/dist/template/.opencode/skill/writing-plans/SKILL.md +68 -0
  27. package/package.json +1 -1
@@ -0,0 +1,84 @@
1
+ ---
2
+ purpose: Current project state, active decisions, blockers, and position tracking
3
+ updated: 2026-02-12
4
+ ---
5
+
6
+ # State
7
+
8
+ ## Current Position
9
+
10
+ **Active Bead:** (none active)
11
+ **Status:** Ready for new work
12
+ **Started:** 2026-02-12
13
+ **Phase:** Scale
14
+
15
+ ## Recent Completed Work
16
+
17
+ | Bead | Title | Completed | Summary |
18
+ | ---- | --------------------- | --------- | ------------------------------------------------- |
19
+ | - | Polish phase tasks | 2026-02 | Error handling, docs, validation, UX improvements |
20
+ | - | Extend phase commands | 2026-02 | Ship, plan, resume, handoff, status commands |
21
+ | - | MVP core features | 2026-02 | Init command, template bundling, CLI prompts |
22
+
23
+ ## Active Decisions
24
+
25
+ | Date | Decision | Rationale | Impact |
26
+ | ---------- | ----------------- | ------------------------------------------ | ------------------------------- |
27
+ | 2026-02-12 | Scale phase focus | Core complete, ready for advanced features | Plugin system, custom templates |
28
+
29
+ ## Blockers
30
+
31
+ | Bead | Blocker | Since | Owner |
32
+ | ---- | ------- | ----- | ----- |
33
+ | - | (none) | - | - |
34
+
35
+ ## Open Questions
36
+
37
+ | Question | Context | Blocking | Priority |
38
+ | -------------------------------- | ------------------------------ | -------- | -------- |
39
+ | What plugin system architecture? | Scale phase planning | Yes | High |
40
+ | How to handle custom templates? | User-defined templates feature | Yes | High |
41
+
42
+ ## Context Notes
43
+
44
+ ### Technical
45
+
46
+ - Bun runtime required (>= 1.3.2)
47
+ - TypeScript strict mode enforced
48
+ - Build uses rsync to bundle .opencode/ template
49
+ - oxlint for linting (fast, modern)
50
+
51
+ ### Product
52
+
53
+ - Target: solo developers and teams
54
+ - Key differentiator: validated, ready-to-use templates
55
+ - Integration with beads_rust for task tracking
56
+
57
+ ### Process
58
+
59
+ - Run `npm run lint:fix` before commits
60
+ - Validate with `npm run typecheck`
61
+ - Never modify dist/ directly
62
+
63
+ ## Next Actions
64
+
65
+ 1. [ ] Define plugin system architecture
66
+ 2. [ ] Design custom template API
67
+ 3. [ ] Create Scale phase implementation plan
68
+ 4. [ ] Identify Scale phase beads
69
+
70
+ ## Session Handoff
71
+
72
+ **Last Session:** 2026-02-12
73
+ **Next Session Priority:** Define plugin system architecture
74
+ **Known Issues:** None currently blocking
75
+ **Context Links:**
76
+
77
+ - AGENTS.md - Project rules
78
+ - .opencode/skill/ - Available skills
79
+ - .opencode/command/ - Available commands
80
+
81
+ ---
82
+
83
+ _Update this file at the end of each significant session or when state changes._
84
+ _This file is the "you are here" marker for the project._