vibefast-cli 0.2.1 → 0.2.3

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 (115) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/DOCS-CLEANUP-SUMMARY.md +140 -0
  3. package/DOCS.md +141 -0
  4. package/ERROR-MESSAGE-CLEANUP.md +64 -0
  5. package/IMPLEMENTATION-COMPLETE.md +6 -5
  6. package/MANUAL-STEPS-GUIDE.md +385 -0
  7. package/MANUAL-STEPS-USER-FLOW.md +231 -0
  8. package/PLAN-VS-IMPLEMENTATION.md +248 -0
  9. package/PUBLISHED-0.2.2.md +65 -0
  10. package/README.md +24 -2
  11. package/START-HERE.md +115 -0
  12. package/dist/commands/add.d.ts.map +1 -1
  13. package/dist/commands/add.js +0 -2
  14. package/dist/commands/add.js.map +1 -1
  15. package/dist/commands/devices.d.ts.map +1 -1
  16. package/dist/commands/devices.js +1 -3
  17. package/dist/commands/devices.js.map +1 -1
  18. package/dist/commands/list.d.ts.map +1 -1
  19. package/dist/commands/list.js +1 -3
  20. package/dist/commands/list.js.map +1 -1
  21. package/dist/core/http.d.ts.map +1 -1
  22. package/dist/core/http.js +61 -33
  23. package/dist/core/http.js.map +1 -1
  24. package/docs/next-steps.md +12 -0
  25. package/package.json +10 -1
  26. package/recipes/audio-recorder@latest.zip +0 -0
  27. package/recipes/charts/apps/native/src/app/charts/index.tsx +3 -0
  28. package/recipes/charts/apps/native/src/features/charts/app/preview.tsx +3 -0
  29. package/recipes/charts/apps/native/src/features/charts/components/area-chart.tsx +3 -0
  30. package/recipes/charts/apps/native/src/features/charts/components/bar-chart.tsx +3 -0
  31. package/recipes/charts/apps/native/src/features/charts/components/candlestick-chart.tsx +3 -0
  32. package/recipes/charts/apps/native/src/features/charts/components/chart-card.tsx +3 -0
  33. package/recipes/charts/apps/native/src/features/charts/components/column-chart.tsx +3 -0
  34. package/recipes/charts/apps/native/src/features/charts/components/doughnut-chart.tsx +3 -0
  35. package/recipes/charts/apps/native/src/features/charts/components/index.ts +3 -0
  36. package/recipes/charts/apps/native/src/features/charts/components/line-chart.tsx +3 -0
  37. package/recipes/charts/apps/native/src/features/charts/components/radar-chart.tsx +3 -0
  38. package/recipes/charts/apps/native/src/features/charts/components/radial-bar-chart.tsx +3 -0
  39. package/recipes/charts/apps/native/src/features/charts/components/stacked-area-chart.tsx +3 -0
  40. package/recipes/charts/apps/native/src/features/charts/components/stacked-bar-chart.tsx +3 -0
  41. package/recipes/charts/apps/native/src/features/charts/data/mock-data.ts +3 -0
  42. package/recipes/charts/apps/native/src/features/charts/types/index.ts +3 -0
  43. package/recipes/charts/recipe.json +7 -1
  44. package/recipes/charts@latest.zip +0 -0
  45. package/recipes/chatbot/apps/native/src/app/chatbot/index.tsx +1 -0
  46. package/recipes/chatbot/apps/native/src/features/chatbot/app/index.tsx +1 -0
  47. package/recipes/chatbot/apps/native/src/features/chatbot/components/chat-header-buttons.tsx +1 -0
  48. package/recipes/chatbot/apps/native/src/features/chatbot/components/chat-input-bar.tsx +1 -0
  49. package/recipes/chatbot/apps/native/src/features/chatbot/components/chat-markdown.tsx +1 -0
  50. package/recipes/chatbot/apps/native/src/features/chatbot/components/chat-message-bubble.tsx +1 -0
  51. package/recipes/chatbot/apps/native/src/features/chatbot/components/chat-settings-modal.tsx +1 -0
  52. package/recipes/chatbot/apps/native/src/features/chatbot/components/image-preview-list.tsx +1 -0
  53. package/recipes/chatbot/apps/native/src/features/chatbot/components/markdown/code-block.tsx +1 -0
  54. package/recipes/chatbot/apps/native/src/features/chatbot/components/markdown/index.ts +1 -0
  55. package/recipes/chatbot/apps/native/src/features/chatbot/components/markdown/table-renderer.tsx +1 -0
  56. package/recipes/chatbot/apps/native/src/features/chatbot/components/message-error-boundary.tsx +1 -0
  57. package/recipes/chatbot/apps/native/src/features/chatbot/components/message-list.tsx +1 -0
  58. package/recipes/chatbot/apps/native/src/features/chatbot/components/model-selector.tsx +1 -0
  59. package/recipes/chatbot/apps/native/src/features/chatbot/components/report-content-modal.tsx +1 -0
  60. package/recipes/chatbot/apps/native/src/features/chatbot/components/suggested-messages.tsx +1 -0
  61. package/recipes/chatbot/apps/native/src/features/chatbot/constants/models.ts +1 -0
  62. package/recipes/chatbot/apps/native/src/features/chatbot/constants/report-reasons.ts +1 -0
  63. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-attachment-cache.ts +1 -0
  64. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-chat-config.ts +1 -0
  65. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-chat-handlers.ts +1 -0
  66. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-chatbot-settings.ts +1 -0
  67. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-conversation.ts +1 -0
  68. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-image-picker.ts +1 -0
  69. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-keyboard-coordinator.ts +1 -0
  70. package/recipes/chatbot/apps/native/src/features/chatbot/hooks/use-smart-scroll-manager.ts +1 -0
  71. package/recipes/chatbot/apps/native/src/features/chatbot/models/index.ts +1 -0
  72. package/recipes/chatbot/apps/native/src/features/chatbot/models/models.ts +1 -0
  73. package/recipes/chatbot/apps/native/src/features/chatbot/models/providers.ts +1 -0
  74. package/recipes/chatbot/apps/native/src/features/chatbot/models/types.ts +1 -0
  75. package/recipes/chatbot/apps/native/src/features/chatbot/services/file-uploader.ts +1 -0
  76. package/recipes/chatbot/apps/native/src/features/chatbot/services/message-handler-service.ts +1 -0
  77. package/recipes/chatbot/apps/native/src/features/chatbot/types/index.ts +1 -0
  78. package/recipes/chatbot/apps/native/src/features/chatbot/utils/chat-telemetry.ts +1 -0
  79. package/recipes/chatbot/packages/backend/convex/chatbot/index.ts +30 -0
  80. package/recipes/chatbot/recipe.json +16 -1
  81. package/recipes/chatbot@latest.zip +0 -0
  82. package/recipes/image-generator@latest.zip +0 -0
  83. package/recipes/quiz@latest.zip +0 -0
  84. package/recipes/tracker-app@latest.zip +0 -0
  85. package/recipes/voice-bot@latest.zip +0 -0
  86. package/scripts/create-recipes.mjs +33 -1
  87. package/src/commands/add.ts +0 -2
  88. package/src/commands/devices.ts +1 -3
  89. package/src/commands/list.ts +1 -3
  90. package/src/core/http.ts +62 -36
  91. package/MONITORING-AND-ANNOUNCEMENT-GUIDE.md +0 -669
  92. package/PRE-PUBLISH-CHECKLIST.md +0 -558
  93. package/PUBLISHED-SUCCESS.md +0 -282
  94. package/READY-TO-PUBLISH.md +0 -419
  95. package/RECIPES-READY.md +0 -172
  96. package/cloudflare-worker/mini-native@latest.zip +0 -0
  97. package/cloudflare-worker/test-recipe/apps/native/src/app/mini/index.tsx +0 -15
  98. package/cloudflare-worker/test-recipe/recipe.json +0 -16
  99. package/text.md +0 -27
  100. /package/{AUTO-DETECT-DEPS.md → docs/archive/AUTO-DETECT-DEPS.md} +0 -0
  101. /package/{FINAL-PACKAGE-STRATEGY.md → docs/archive/FINAL-PACKAGE-STRATEGY.md} +0 -0
  102. /package/{FINAL-SIMPLE-PLAN.md → docs/archive/FINAL-SIMPLE-PLAN.md} +0 -0
  103. /package/{FINAL-STATUS.md → docs/archive/FINAL-STATUS.md} +0 -0
  104. /package/{FLOW-DIAGRAM.md → docs/archive/FLOW-DIAGRAM.md} +0 -0
  105. /package/{GOTCHAS-AND-RISKS.md → docs/archive/GOTCHAS-AND-RISKS.md} +0 -0
  106. /package/{IMPLEMENTATION-PLAN.md → docs/archive/IMPLEMENTATION-PLAN.md} +0 -0
  107. /package/{PLAN.md → docs/archive/PLAN.md} +0 -0
  108. /package/{PRODUCTION-READINESS.md → docs/archive/PRODUCTION-READINESS.md} +0 -0
  109. /package/{PRODUCTION-TEST-RESULTS.md → docs/archive/PRODUCTION-TEST-RESULTS.md} +0 -0
  110. /package/{SIMPLIFIED-PLAN.md → docs/archive/SIMPLIFIED-PLAN.md} +0 -0
  111. /package/{STATUS.md → docs/archive/STATUS.md} +0 -0
  112. /package/{SUCCESS.md → docs/archive/SUCCESS.md} +0 -0
  113. /package/{TEST-SUMMARY.md → docs/archive/TEST-SUMMARY.md} +0 -0
  114. /package/{TESTING-CHECKLIST.md → docs/archive/TESTING-CHECKLIST.md} +0 -0
  115. /package/{USER-MODIFICATIONS.md → docs/archive/USER-MODIFICATIONS.md} +0 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to VibeFast CLI will be documented in this file.
4
4
 
5
+ ## [0.2.2] - 2024-11-14
6
+
7
+ ### Fixed
8
+ - **Error Messages**: Removed nested error wrapping that caused confusing messages
9
+ - Error messages are now clean and single-level with helpful context
10
+ - Improved error display in `list`, `devices`, and `add` commands
11
+
5
12
  ## [0.2.0] - 2024-11-13
6
13
 
7
14
  ### Added
@@ -0,0 +1,140 @@
1
+ # Documentation Cleanup Summary
2
+
3
+ ## What Was Done
4
+
5
+ ### 📦 Archived (moved to `docs/archive/`)
6
+ Planning and development docs that are no longer actively needed:
7
+ - AUTO-DETECT-DEPS.md
8
+ - FINAL-PACKAGE-STRATEGY.md
9
+ - FINAL-SIMPLE-PLAN.md
10
+ - FINAL-STATUS.md
11
+ - FLOW-DIAGRAM.md
12
+ - GOTCHAS-AND-RISKS.md
13
+ - IMPLEMENTATION-PLAN.md
14
+ - PLAN.md
15
+ - PRODUCTION-READINESS.md
16
+ - PRODUCTION-TEST-RESULTS.md
17
+ - SIMPLIFIED-PLAN.md
18
+ - STATUS.md
19
+ - SUCCESS.md
20
+ - TEST-SUMMARY.md
21
+ - TESTING-CHECKLIST.md
22
+ - USER-MODIFICATIONS.md
23
+
24
+ ### 🗑️ Deleted
25
+ Temporary/duplicate docs:
26
+ - text.md
27
+ - RECIPES-READY.md
28
+ - READY-TO-PUBLISH.md
29
+ - PUBLISHED-SUCCESS.md
30
+ - PRE-PUBLISH-CHECKLIST.md
31
+ - MONITORING-AND-ANNOUNCEMENT-GUIDE.md
32
+
33
+ ### ✅ Kept (Active Documentation)
34
+ **User Documentation:**
35
+ - **README.md** - Main user guide (updated with manual steps info)
36
+ - **CHANGELOG.md** - Version history
37
+ - **DOCS.md** - Documentation index (NEW)
38
+
39
+ **Technical Documentation:**
40
+ - **HOW-IT-WORKS.md** - Architecture and internals
41
+ - **IMPLEMENTATION-COMPLETE.md** - Implementation details
42
+
43
+ **Recipe Creator Documentation:**
44
+ - **MANUAL-STEPS-GUIDE.md** - Guide for adding manual steps
45
+ - **MANUAL-STEPS-USER-FLOW.md** - How users access manual steps (NEW)
46
+
47
+ **Release Documentation:**
48
+ - **ERROR-MESSAGE-CLEANUP.md** - v0.2.2 error fixes
49
+ - **PUBLISHED-0.2.2.md** - v0.2.2 release notes
50
+ - **PLAN-VS-IMPLEMENTATION.md** - Implementation status
51
+
52
+ ---
53
+
54
+ ## New Documentation Structure
55
+
56
+ ```
57
+ vibefast-cli/
58
+ ├── README.md # START HERE - User guide
59
+ ├── DOCS.md # Documentation index
60
+ ├── CHANGELOG.md # Version history
61
+
62
+ ├── HOW-IT-WORKS.md # Technical architecture
63
+ ├── IMPLEMENTATION-COMPLETE.md # Implementation details
64
+
65
+ ├── MANUAL-STEPS-GUIDE.md # For recipe creators
66
+ ├── MANUAL-STEPS-USER-FLOW.md # How users access manual steps
67
+
68
+ ├── ERROR-MESSAGE-CLEANUP.md # v0.2.2 fixes
69
+ ├── PUBLISHED-0.2.2.md # v0.2.2 release
70
+ ├── PLAN-VS-IMPLEMENTATION.md # Implementation status
71
+
72
+ └── docs/
73
+ └── archive/ # Historical planning docs
74
+ ├── IMPLEMENTATION-PLAN.md
75
+ ├── FLOW-DIAGRAM.md
76
+ └── ... (16 archived docs)
77
+ ```
78
+
79
+ ---
80
+
81
+ ## Quick Reference
82
+
83
+ **I want to...**
84
+
85
+ | Goal | Read This |
86
+ |------|-----------|
87
+ | Use the CLI | [README.md](README.md) |
88
+ | See what's new | [CHANGELOG.md](CHANGELOG.md) |
89
+ | Find a specific doc | [DOCS.md](DOCS.md) |
90
+ | Understand internals | [HOW-IT-WORKS.md](HOW-IT-WORKS.md) |
91
+ | Create recipes with manual steps | [MANUAL-STEPS-GUIDE.md](MANUAL-STEPS-GUIDE.md) |
92
+ | Understand how users see manual steps | [MANUAL-STEPS-USER-FLOW.md](MANUAL-STEPS-USER-FLOW.md) |
93
+ | Check implementation status | [PLAN-VS-IMPLEMENTATION.md](PLAN-VS-IMPLEMENTATION.md) |
94
+
95
+ ---
96
+
97
+ ## Benefits
98
+
99
+ ### Before Cleanup
100
+ - 29 markdown files in root
101
+ - Confusing mix of planning, temp, and user docs
102
+ - Hard to find what you need
103
+ - Outdated information
104
+
105
+ ### After Cleanup
106
+ - 10 focused docs in root
107
+ - Clear separation: user docs, technical docs, recipe creator docs
108
+ - Easy navigation with DOCS.md index
109
+ - All docs are current and relevant
110
+
111
+ ---
112
+
113
+ ## Maintenance
114
+
115
+ ### When to Archive
116
+ Move docs to `docs/archive/` when:
117
+ - Planning phase is complete
118
+ - Implementation is done
119
+ - Information is historical/reference only
120
+
121
+ ### When to Delete
122
+ Delete docs when:
123
+ - They're temporary (test results, checklists)
124
+ - They're duplicates
125
+ - They're empty or placeholder files
126
+
127
+ ### When to Keep
128
+ Keep docs when:
129
+ - Users need them (README, CHANGELOG)
130
+ - Developers need them (HOW-IT-WORKS)
131
+ - Recipe creators need them (MANUAL-STEPS-GUIDE)
132
+ - They document releases (PUBLISHED-*.md)
133
+
134
+ ---
135
+
136
+ **Cleanup completed:** November 14, 2024
137
+ **Files archived:** 16
138
+ **Files deleted:** 6
139
+ **Active docs:** 10
140
+ **New docs created:** 2 (DOCS.md, MANUAL-STEPS-USER-FLOW.md)
package/DOCS.md ADDED
@@ -0,0 +1,141 @@
1
+ # VibeFast CLI Documentation Index
2
+
3
+ Quick reference to all documentation files.
4
+
5
+ ## 📖 User Documentation
6
+
7
+ ### [README.md](README.md) - **START HERE**
8
+ Complete user guide with all commands, options, and examples.
9
+
10
+ **Read this if you want to:**
11
+ - Install and use the CLI
12
+ - Learn all available commands
13
+ - Understand how to add/remove features
14
+ - Troubleshoot common issues
15
+
16
+ ---
17
+
18
+ ### [CHANGELOG.md](CHANGELOG.md)
19
+ Version history and release notes.
20
+
21
+ **Read this if you want to:**
22
+ - See what's new in each version
23
+ - Check if a bug was fixed
24
+ - Understand breaking changes
25
+
26
+ ---
27
+
28
+ ## 🔧 Technical Documentation
29
+
30
+ ### [HOW-IT-WORKS.md](HOW-IT-WORKS.md)
31
+ Technical architecture and implementation details.
32
+
33
+ **Read this if you want to:**
34
+ - Understand the CLI internals
35
+ - Learn about the authentication flow
36
+ - See how recipes are delivered
37
+ - Understand the journal system
38
+
39
+ ---
40
+
41
+ ### [IMPLEMENTATION-COMPLETE.md](IMPLEMENTATION-COMPLETE.md)
42
+ Complete implementation details of all features.
43
+
44
+ **Read this if you want to:**
45
+ - See what features are implemented
46
+ - Understand the recipe format
47
+ - Learn about the journal structure
48
+ - See code examples
49
+
50
+ ---
51
+
52
+ ## 🎨 Recipe Creator Documentation
53
+
54
+ ### [MANUAL-STEPS-GUIDE.md](MANUAL-STEPS-GUIDE.md)
55
+ Guide for adding manual setup steps to recipes.
56
+
57
+ **Read this if you want to:**
58
+ - Create recipes for services (Sentry, PostHog, etc.)
59
+ - Add environment variable requirements
60
+ - Show setup instructions to users
61
+ - See real-world examples
62
+
63
+ ---
64
+
65
+ ### [MANUAL-STEPS-USER-FLOW.md](MANUAL-STEPS-USER-FLOW.md)
66
+ How users discover and access manual setup steps.
67
+
68
+ **Read this if you want to:**
69
+ - Understand how users see manual steps
70
+ - Learn the user journey
71
+ - See complete examples
72
+
73
+ ---
74
+
75
+ ## 📝 Release Documentation
76
+
77
+ ### [ERROR-MESSAGE-CLEANUP.md](ERROR-MESSAGE-CLEANUP.md)
78
+ Documentation of error message improvements in v0.2.2.
79
+
80
+ **Read this if you want to:**
81
+ - Understand the error message cleanup
82
+ - See before/after examples
83
+
84
+ ---
85
+
86
+ ### [PUBLISHED-0.2.2.md](PUBLISHED-0.2.2.md)
87
+ Release notes for v0.2.2.
88
+
89
+ **Read this if you want to:**
90
+ - See what was fixed in v0.2.2
91
+ - Verify installation
92
+
93
+ ---
94
+
95
+ ### [PLAN-VS-IMPLEMENTATION.md](PLAN-VS-IMPLEMENTATION.md)
96
+ Comparison of planned vs implemented features.
97
+
98
+ **Read this if you want to:**
99
+ - See if all planned features are complete
100
+ - Understand what was simplified
101
+ - Check implementation status
102
+
103
+ ---
104
+
105
+ ## 📦 Archived Documentation
106
+
107
+ Historical planning and development docs are in `docs/archive/`:
108
+ - Implementation plans
109
+ - Testing checklists
110
+ - Production readiness docs
111
+ - Flow diagrams
112
+ - Status updates
113
+
114
+ **These are kept for reference but are no longer actively maintained.**
115
+
116
+ ---
117
+
118
+ ## Quick Navigation
119
+
120
+ **I want to...**
121
+
122
+ - **Use the CLI** → [README.md](README.md)
123
+ - **See what's new** → [CHANGELOG.md](CHANGELOG.md)
124
+ - **Understand how it works** → [HOW-IT-WORKS.md](HOW-IT-WORKS.md)
125
+ - **Create a recipe with manual steps** → [MANUAL-STEPS-GUIDE.md](MANUAL-STEPS-GUIDE.md)
126
+ - **See implementation details** → [IMPLEMENTATION-COMPLETE.md](IMPLEMENTATION-COMPLETE.md)
127
+ - **Check if a feature is done** → [PLAN-VS-IMPLEMENTATION.md](PLAN-VS-IMPLEMENTATION.md)
128
+
129
+ ---
130
+
131
+ ## Contributing
132
+
133
+ When adding new documentation:
134
+ 1. Add it to this index
135
+ 2. Keep it focused and concise
136
+ 3. Link to it from relevant places
137
+ 4. Archive old docs when they become outdated
138
+
139
+ ---
140
+
141
+ **Last Updated:** November 14, 2024
@@ -0,0 +1,64 @@
1
+ # Error Message Cleanup - Complete ✅
2
+
3
+ ## Problem
4
+ Error messages were being nested multiple times, creating confusing output like:
5
+ ```
6
+ Failed to list recipes: Failed to connect to...: Failed to fetch recipes: license_key not found
7
+ ```
8
+
9
+ ## Root Cause
10
+ Three layers of error wrapping:
11
+ 1. **Worker** returns: `"license_key not found"`
12
+ 2. **http.ts** wrapped it: `"Failed to fetch recipes: license_key not found"`
13
+ 3. **Command** wrapped again: `"Failed to list recipes: Failed to connect to..."`
14
+
15
+ ## Solution
16
+ Cleaned up error handling at each layer:
17
+
18
+ ### 1. http.ts (Core Layer)
19
+ - `listRecipes()`: Returns clean error messages without "Failed to fetch recipes" prefix
20
+ - `listDevices()`: Returns clean error messages without "Failed to manage devices" prefix
21
+ - `fetchRecipe()`: Returns structured response with clean error/message fields
22
+ - Network errors: Simple "Network error: ..." format
23
+
24
+ ### 2. Commands (UI Layer)
25
+ - **list.ts**: Removed "Failed to list recipes" prefix
26
+ - **devices.ts**: Removed "Failed to manage devices" prefix
27
+ - **add.ts**: Removed "Failed to fetch recipe" prefix
28
+ - All commands now display the clean error from http.ts directly
29
+
30
+ ### 3. User-Friendly Error Display
31
+ Commands still provide helpful context:
32
+ - ❌ Clear error icon and message
33
+ - 📋 Actionable steps to fix the issue
34
+ - 🔗 Support contact information
35
+ - 💡 Helpful tips and commands
36
+
37
+ ## Result
38
+ Clean, single-level error messages:
39
+ ```
40
+ ❌ Invalid or expired license key
41
+
42
+ Your license key may be:
43
+ • Incorrect or mistyped
44
+ • Expired
45
+ • Not yet activated
46
+
47
+ To fix this:
48
+ 1. Check your license key from your purchase receipt
49
+ 2. Run: vf logout
50
+ 3. Run: vf login --token YOUR_LICENSE_KEY
51
+
52
+ Need help? Contact support@vibefast.pro
53
+ ```
54
+
55
+ ## Files Modified
56
+ - ✅ `src/core/http.ts` - Clean error throwing
57
+ - ✅ `src/commands/list.ts` - Removed error prefix
58
+ - ✅ `src/commands/devices.ts` - Removed error prefix
59
+ - ✅ `src/commands/add.ts` - Removed error prefix
60
+
61
+ ## Testing
62
+ - ✅ All unit tests pass (34/34)
63
+ - ✅ Error messages are now clean and user-friendly
64
+ - ✅ No nested error wrapping
@@ -445,11 +445,12 @@ The CLI is now production-ready and can be shipped!
445
445
 
446
446
  ## Next Steps
447
447
 
448
- 1. **Test with real features** - Create test recipes and try the full flow
449
- 2. **Update documentation** - Update README with new commands and flags
450
- 3. **Create example recipes** - Charts, Sentry, PostHog, etc.
451
- 4. **Publish to npm** - Bump version and publish
452
- 5. **Get user feedback** - Ship and iterate based on real usage
448
+ Remaining work is tracked in [`docs/next-steps.md`](docs/next-steps.md), which keeps these priority items discoverable for future contributors.
449
+
450
+ ## Automated Test Runs
451
+
452
+ - `npm run test` (watch mode) initially timed out because Vitest remained in watch mode.
453
+ - `CI=1 npm run test` runs a single pass; all `34` tests complete successfully (`prompt`, `validate`, `hash`, `journal`, `fsx` suites).
453
454
 
454
455
  ---
455
456