@yottagraph-app/aether-instructions 1.1.50 → 1.1.51
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/AGENTS.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
**Source of truth:** `DESIGN.md` -- read before starting work, update when changing features. The starter UI is placeholder -- replace freely. Feature docs in `design/` for implementation planning.
|
|
14
14
|
|
|
15
|
-
**Git:** Commit meaningful units of work. Run `npm run format` before commit. Message format: `[Agent commit] {summary}`. Push directly to `main` with `git push origin main` — do NOT create PRs, do NOT run `gh pr create`, and do NOT use feature branches.
|
|
15
|
+
**Git:** Commit meaningful units of work. Run `npm run format` before commit. Message format: `[Agent commit] {summary}`. Push directly to `main` with `git push origin main` — do NOT create PRs, do NOT run `gh pr create`, and do NOT use feature branches. This project's `main` is not protected; Vercel auto-deploys on push to `main`, and that's how the app gets live. A PR blocks the auto-deploy and breaks the smooth first-run flow.
|
|
16
16
|
|
|
17
17
|
**First action for a new project:** Run `/build_my_app`.
|
|
18
18
|
|
package/commands/build_my_app.md
CHANGED
|
@@ -233,10 +233,9 @@ git commit -m "[Agent commit] Initial app build from project brief"
|
|
|
233
233
|
|
|
234
234
|
Vercel auto-deploys on push to `main`, which is how this project gets
|
|
235
235
|
live. Creating a PR blocks that auto-deploy and breaks the smooth
|
|
236
|
-
first-run experience the user is expecting from the wizard.
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
`aether-dev` template (which IS PR-only) — do not import that habit.
|
|
236
|
+
first-run experience the user is expecting from the wizard. This
|
|
237
|
+
project's `main` is **not** protected — `git push origin main` will
|
|
238
|
+
succeed.
|
|
240
239
|
|
|
241
240
|
```bash
|
|
242
241
|
git push origin main
|
package/package.json
CHANGED
|
@@ -41,18 +41,13 @@ If a user asks about this error, explain the `npm run format` requirement.
|
|
|
41
41
|
## Pushing
|
|
42
42
|
|
|
43
43
|
**Push directly to main.** Vercel auto-deploys on push to `main`, which
|
|
44
|
-
is how this project gets live. Creating a PR
|
|
45
|
-
|
|
44
|
+
is how this project gets live. Creating a PR blocks that auto-deploy
|
|
45
|
+
and disrupts the smooth first-run experience.
|
|
46
46
|
|
|
47
47
|
**Do NOT create pull requests** — do not run `gh pr create`, do not
|
|
48
48
|
create a feature branch, and do not push to anything other than `main`.
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
> Note: tenant repos follow a different policy than the upstream
|
|
53
|
-
> `aether-dev` template. `aether-dev` is PR-only because its `main` is
|
|
54
|
-
> protected; tenant projects deliberately are not. Do not import the
|
|
55
|
-
> `aether-dev` habit when working in a tenant repo.
|
|
49
|
+
This project's `main` is **not** protected; `git push origin main`
|
|
50
|
+
will succeed.
|
|
56
51
|
|
|
57
52
|
```bash
|
|
58
53
|
git push origin main
|
|
@@ -174,10 +174,9 @@ git commit -m "[Agent commit] Initial app build from project brief"
|
|
|
174
174
|
|
|
175
175
|
Vercel auto-deploys on push to `main`, which is how this project gets
|
|
176
176
|
live. Creating a PR blocks that auto-deploy and breaks the smooth
|
|
177
|
-
first-run experience the user is expecting from the wizard.
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
`aether-dev` template (which IS PR-only) — do not import that habit.
|
|
177
|
+
first-run experience the user is expecting from the wizard. This
|
|
178
|
+
project's `main` is **not** protected — `git push origin main` will
|
|
179
|
+
succeed.
|
|
181
180
|
|
|
182
181
|
```bash
|
|
183
182
|
git push origin main
|