@yottagraph-app/aether-instructions 1.1.29 → 1.1.31
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/commands/build_my_app.md
CHANGED
|
@@ -210,7 +210,7 @@ Implement the plan:
|
|
|
210
210
|
|
|
211
211
|
---
|
|
212
212
|
|
|
213
|
-
## Step 7: Verify
|
|
213
|
+
## Step 7: Verify and Commit
|
|
214
214
|
|
|
215
215
|
After building, check dependencies are installed and run a build:
|
|
216
216
|
|
|
@@ -221,15 +221,46 @@ npm run build
|
|
|
221
221
|
|
|
222
222
|
Fix any build errors.
|
|
223
223
|
|
|
224
|
-
Then
|
|
224
|
+
Then format and commit:
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
npm run format
|
|
228
|
+
git add -A
|
|
229
|
+
git commit -m "[Agent commit] Initial app build from project brief"
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
**Push directly to main.** Vercel auto-deploys on push to main, so this
|
|
233
|
+
gets the app live immediately. Do NOT try to create a pull request via
|
|
234
|
+
`gh pr create` — in Cursor Cloud environments, the GitHub integration
|
|
235
|
+
token lacks PR permissions (known Cursor issue). Pushing to main is the
|
|
236
|
+
correct workflow.
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
git push origin main
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
If running locally (not in Cursor Cloud), the user may prefer a PR-based
|
|
243
|
+
workflow — ask before pushing directly to main in that case.
|
|
225
244
|
|
|
226
245
|
---
|
|
227
246
|
|
|
228
|
-
## Step 8: Next Steps
|
|
247
|
+
## Step 8: Deploy Agents and Next Steps
|
|
248
|
+
|
|
249
|
+
If the app includes agents in `agents/`, offer to deploy them now:
|
|
250
|
+
|
|
251
|
+
> Your app is built! I see you have an agent in `agents/`. Want me to
|
|
252
|
+
> deploy it now? I can run the deployment for you.
|
|
253
|
+
|
|
254
|
+
If the user agrees (or if this is an automated build), run `/deploy_agent`
|
|
255
|
+
to deploy each agent. Don't just tell the user to type the command — do it
|
|
256
|
+
for them.
|
|
257
|
+
|
|
258
|
+
Then present next steps:
|
|
229
259
|
|
|
230
|
-
>
|
|
260
|
+
> Here's what you can do next:
|
|
231
261
|
>
|
|
232
262
|
> - **Preview locally** with `npm run dev`
|
|
233
263
|
> - **Push to deploy** -- Vercel auto-deploys on push to main
|
|
234
|
-
> - **Deploy
|
|
235
|
-
>
|
|
264
|
+
> - **Deploy agents** -- I can deploy them for you, or use the Deploy
|
|
265
|
+
> button on the Broadchurch portal's project page
|
|
266
|
+
> - **Deploy MCP servers** -- same as above, from the portal or ask me
|
package/package.json
CHANGED
|
@@ -121,7 +121,7 @@ Match the brief: dashboards from `/api/...`, **chat** as primary, or both. No El
|
|
|
121
121
|
|
|
122
122
|
---
|
|
123
123
|
|
|
124
|
-
## Step 7: Verify
|
|
124
|
+
## Step 7: Verify and Commit
|
|
125
125
|
|
|
126
126
|
After building, ensure dependencies are installed and run a production build:
|
|
127
127
|
|
|
@@ -130,17 +130,48 @@ test -d node_modules || npm install
|
|
|
130
130
|
npm run build
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
Fix any build errors. Then
|
|
133
|
+
Fix any build errors. Then format and commit:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
npm run format
|
|
137
|
+
git add -A
|
|
138
|
+
git commit -m "[Agent commit] Initial app build from project brief"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
**Push directly to main.** Vercel auto-deploys on push to main, so this
|
|
142
|
+
gets the app live immediately. Do NOT try to create a pull request via
|
|
143
|
+
`gh pr create` — in Cursor Cloud environments, the GitHub integration
|
|
144
|
+
token lacks PR permissions (known Cursor issue). Pushing to main is the
|
|
145
|
+
correct workflow.
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
git push origin main
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
If running locally (not in Cursor Cloud), the user may prefer a PR-based
|
|
152
|
+
workflow — ask before pushing directly to main in that case.
|
|
134
153
|
|
|
135
154
|
Deploy agents as needed; if the brief relies on **materialized** data, run or schedule the relevant agents before expecting full UI data.
|
|
136
155
|
|
|
137
156
|
---
|
|
138
157
|
|
|
139
|
-
## Step 8: Next
|
|
158
|
+
## Step 8: Deploy Agents and Next Steps
|
|
159
|
+
|
|
160
|
+
If the app includes agents in `agents/`, offer to deploy them now:
|
|
161
|
+
|
|
162
|
+
> Your app is built! I see you have an agent in `agents/`. Want me to
|
|
163
|
+
> deploy it now? I can run the deployment for you.
|
|
164
|
+
|
|
165
|
+
If the user agrees (or if this is an automated build), run `/deploy_agent`
|
|
166
|
+
to deploy each agent. Don't just tell the user to type the command — do it
|
|
167
|
+
for them. Ensure MCP is configured for the agent runtime per `agents-data`.
|
|
168
|
+
|
|
169
|
+
Then present next steps:
|
|
140
170
|
|
|
141
|
-
>
|
|
171
|
+
> Here's what you can do next:
|
|
142
172
|
>
|
|
143
173
|
> - **Preview locally** with `npm run dev`
|
|
144
174
|
> - **Push to deploy** — Vercel auto-deploys on push to main
|
|
145
|
-
> - **
|
|
146
|
-
>
|
|
175
|
+
> - **Deploy agents** — I can deploy them for you, or use the Deploy
|
|
176
|
+
> button on the Broadchurch portal's project page
|
|
177
|
+
> - **MCP servers** — same as above, from the portal or ask me
|