@orderful/droid 0.38.0 → 0.39.1

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 (30) hide show
  1. package/.claude-plugin/plugin.json +2 -0
  2. package/CHANGELOG.md +16 -0
  3. package/README.md +17 -0
  4. package/dist/bin/droid.js +136 -3
  5. package/dist/commands/auth.d.ts +3 -0
  6. package/dist/commands/auth.d.ts.map +1 -0
  7. package/dist/lib/secrets.d.ts +7 -0
  8. package/dist/lib/secrets.d.ts.map +1 -0
  9. package/dist/tools/status-update/.claude-plugin/plugin.json +22 -0
  10. package/dist/tools/status-update/TOOL.yaml +21 -0
  11. package/dist/tools/status-update/commands/status-update.md +27 -0
  12. package/dist/tools/status-update/skills/status-update/SKILL.md +253 -0
  13. package/dist/tools/status-update/skills/status-update/references/formatting.md +203 -0
  14. package/dist/tools/tech-design/skills/tech-design/SKILL.md +47 -10
  15. package/dist/tools/tech-design/skills/tech-design/references/draft.md +8 -0
  16. package/dist/tools/tech-design/skills/tech-design/references/publish.md +164 -48
  17. package/dist/tools/tech-design/skills/tech-design/references/summary-template.md +94 -0
  18. package/package.json +1 -1
  19. package/src/bin/droid.ts +19 -0
  20. package/src/commands/auth.ts +150 -0
  21. package/src/lib/secrets.ts +12 -0
  22. package/src/tools/status-update/.claude-plugin/plugin.json +22 -0
  23. package/src/tools/status-update/TOOL.yaml +21 -0
  24. package/src/tools/status-update/commands/status-update.md +27 -0
  25. package/src/tools/status-update/skills/status-update/SKILL.md +253 -0
  26. package/src/tools/status-update/skills/status-update/references/formatting.md +203 -0
  27. package/src/tools/tech-design/skills/tech-design/SKILL.md +47 -10
  28. package/src/tools/tech-design/skills/tech-design/references/draft.md +8 -0
  29. package/src/tools/tech-design/skills/tech-design/references/publish.md +164 -48
  30. package/src/tools/tech-design/skills/tech-design/references/summary-template.md +94 -0
@@ -0,0 +1,94 @@
1
+ # {Feature Name} - Summary
2
+
3
+ > **Quick Overview:** {2-3 sentences: what we're building, why it matters, expected impact}
4
+
5
+ **Related Documents:**
6
+ - [Full Tech Design](./TECH-DESIGN.md) - Complete technical design with all decisions
7
+ - [PRD](./PRD.md) - Product requirements
8
+ - [Thought Doc](./artifacts/thought-doc.md) - Full exploration and working notes
9
+
10
+ ---
11
+
12
+ ## The Problem
13
+
14
+ {2-3 paragraphs: current pain, impact if not solved, who's affected}
15
+
16
+ ---
17
+
18
+ ## The Solution
19
+
20
+ ### Core Concept
21
+
22
+ {1-2 paragraphs: high-level approach, how it works}
23
+
24
+ **Flow:**
25
+ ```
26
+ {Simple diagram or step-by-step flow}
27
+ ```
28
+
29
+ ### Key Components
30
+
31
+ {3-5 bullet points with brief explanations of main pieces}
32
+
33
+ ---
34
+
35
+ ## Scope
36
+
37
+ ### In Scope (MVP)
38
+ ✅ {Feature 1}
39
+ ✅ {Feature 2}
40
+ ✅ {Feature 3}
41
+
42
+ ### Out of Scope
43
+ ❌ {Deferred feature 1}
44
+ ❌ {Deferred feature 2}
45
+
46
+ ---
47
+
48
+ ## Key Design Decisions
49
+
50
+ ### 1. {Decision Topic}
51
+ {What we chose}
52
+
53
+ **Why:** {Brief rationale}
54
+
55
+ ### 2. {Decision Topic}
56
+ {What we chose}
57
+
58
+ **Why:** {Brief rationale}
59
+
60
+ ---
61
+
62
+ ## Implementation Timeline
63
+
64
+ {Brief phase overview with status}
65
+
66
+ See [Full Tech Design](./TECH-DESIGN.md) for complete details.
67
+
68
+ ---
69
+
70
+ ## Success Metrics
71
+
72
+ **MVP Success Criteria:**
73
+ - {Metric 1}
74
+ - {Metric 2}
75
+ - {Metric 3}
76
+
77
+ **Long-Term Impact:**
78
+ - {Goal 1}
79
+ - {Goal 2}
80
+
81
+ ---
82
+
83
+ ## Risks & Mitigations
84
+
85
+ | Risk | Mitigation |
86
+ |------|------------|
87
+ | {Risk} | {How we handle it} |
88
+
89
+ ---
90
+
91
+ ## For More Details
92
+
93
+ - **Full technical design:** [TECH-DESIGN.md](./TECH-DESIGN.md)
94
+ - **{Additional artifact}:** [artifacts/{file}.md](./artifacts/{file}.md)