@yottagraph-app/aether-instructions 1.1.30 → 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,7 +221,26 @@ 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
|
|
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,7 +130,26 @@ 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
|
|