howone 0.1.19 → 0.1.20
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/package.json +1 -1
- package/templates/vite/AGENTS.md +10 -1
package/package.json
CHANGED
package/templates/vite/AGENTS.md
CHANGED
|
@@ -85,4 +85,13 @@ After meaningful code changes:
|
|
|
85
85
|
3. Run `bun run build` when the change affects app wiring, SDK integration, routes, or production bundling.
|
|
86
86
|
4. If validation fails, inspect the smallest failing surface before widening context.
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
## Delivery Loop
|
|
89
|
+
|
|
90
|
+
For implementation work that changes the running app:
|
|
91
|
+
|
|
92
|
+
1. Complete the requested code changes.
|
|
93
|
+
2. Run the relevant validation.
|
|
94
|
+
3. Start the app with `start_dev_server` from the app root.
|
|
95
|
+
4. Return the preview URL in the final response.
|
|
96
|
+
|
|
97
|
+
Work is complete when the requested change is implemented, relevant validation has been run, a preview URL has been produced for the running app, and any remaining blocker is reported clearly.
|