@electric-agent/agent 1.4.6 → 1.4.8

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.
@@ -181,9 +181,9 @@ function copyTemplateFiles(srcDir, destDir) {
181
181
  }
182
182
  }
183
183
  const ADDED_DEPENDENCIES = {
184
- "@tanstack/db": "0.5.31",
185
- "@tanstack/react-db": "0.1.75",
186
- "@tanstack/electric-db-collection": "0.2.39",
184
+ "@tanstack/db": "0.5.32",
185
+ "@tanstack/react-db": "0.1.76",
186
+ "@tanstack/electric-db-collection": "0.2.40",
187
187
  "@electric-sql/client": "1.5.12",
188
188
  "drizzle-orm": "0.45.1",
189
189
  "drizzle-zod": "^0.8.3",
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@electric-agent/agent",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "CLI tool that turns natural-language app descriptions into running reactive Electric SQL + TanStack DB applications",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/balegas/create-electric-app",
8
+ "directory": "packages/agent"
9
+ },
5
10
  "type": "module",
6
11
  "bin": {
7
12
  "electric-agent": "./dist/index.js"
@@ -26,8 +31,8 @@
26
31
  "commander": "^13.1.0",
27
32
  "dotenv": "^17.3.1",
28
33
  "zod": "^3.24.1",
29
- "@electric-agent/protocol": "1.8.1",
30
- "@electric-agent/studio": "1.14.0"
34
+ "@electric-agent/protocol": "1.8.2",
35
+ "@electric-agent/studio": "1.14.2"
31
36
  },
32
37
  "devDependencies": {
33
38
  "@types/node": "^22.15.0",
@@ -61,8 +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: README.md & ARCHITECTURE.md
65
- - [ ] Phase 8: Deploy & preview
64
+ - [ ] Phase 7: README.md
65
+ - [ ] Phase 8: Deploy & send `@room REVIEW_REQUEST:` (MANDATORY — pipeline stalls without it)
66
66
 
67
67
  ## Design Conventions
68
68
  - UUID primary keys with defaultRandom()
@@ -207,7 +207,7 @@ Fix until green.
207
207
 
208
208
  ---
209
209
 
210
- ## Phase 7: Deploy & Preview
210
+ ## Phase 7: Deploy & Send Review Request
211
211
 
212
212
  Run migrations and start the dev server:
213
213
  ```bash
@@ -219,7 +219,22 @@ pnpm dev:start
219
219
 
220
220
  After the app is running, write:
221
221
  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.
222
- 2. `ARCHITECTURE.md` — brief reference: entities, routes, components.
222
+
223
+ ### Signal Completion — Send Review Request (MANDATORY)
224
+
225
+ **This is the most important step in the entire pipeline.** If you skip this, the reviewer will never start and the pipeline stalls.
226
+
227
+ After the dev server is running, you MUST send a `@room REVIEW_REQUEST:` message as the **very last thing in your response**. The message must include:
228
+ 1. The repo URL
229
+ 2. The branch name
230
+ 3. A summary of what you built
231
+
232
+ **Exact format:**
233
+ ```
234
+ @room REVIEW_REQUEST: App is live and ready for review. Repo: <url>, Branch: main. Summary: <what you built>.
235
+ ```
236
+
237
+ **Do NOT** finish your response without sending this message. Do NOT assume the system will send it for you — it will not.
223
238
 
224
239
  ---
225
240