@electric-agent/agent 1.4.0 → 1.4.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@electric-agent/agent",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "CLI tool that turns natural-language app descriptions into running reactive Electric SQL + TanStack DB applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"commander": "^13.1.0",
|
|
27
27
|
"dotenv": "^17.3.1",
|
|
28
28
|
"zod": "^3.24.1",
|
|
29
|
-
"@electric-agent/
|
|
30
|
-
"@electric-agent/
|
|
29
|
+
"@electric-agent/studio": "1.12.1",
|
|
30
|
+
"@electric-agent/protocol": "1.8.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^22.15.0",
|
|
@@ -61,7 +61,8 @@ Write a `PLAN.md` file with this structure:
|
|
|
61
61
|
- [ ] Phase 4: Collections & API routes
|
|
62
62
|
- [ ] Phase 5: UI components
|
|
63
63
|
- [ ] Phase 6: Build, lint & test
|
|
64
|
-
- [ ] Phase 7:
|
|
64
|
+
- [ ] Phase 7: README.md & ARCHITECTURE.md
|
|
65
|
+
- [ ] Phase 8: Deploy & preview
|
|
65
66
|
|
|
66
67
|
## Design Conventions
|
|
67
68
|
- UUID primary keys with defaultRandom()
|
|
@@ -211,7 +212,9 @@ pnpm dev:start
|
|
|
211
212
|
|
|
212
213
|
**IMPORTANT**: Always use `pnpm dev:start` from the project directory.
|
|
213
214
|
|
|
214
|
-
After the app is running, write
|
|
215
|
+
After the app is running, write:
|
|
216
|
+
1. `README.md` — overwrite the scaffold README with a project-specific one: app name, one-line description, screenshot placeholder, how to run (`pnpm install && pnpm dev:start`), tech stack (Electric SQL, TanStack DB, Drizzle, TanStack Start), and a brief feature list.
|
|
217
|
+
2. `ARCHITECTURE.md` — brief reference: entities, routes, components.
|
|
215
218
|
|
|
216
219
|
Then invoke the UI design skill for interactive refinement:
|
|
217
220
|
```
|