You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,16 +32,16 @@ The root `package.json` is the orchestration manifestgit co for this repo. It do
32
32
33
33
Agent guidance:
34
34
35
-
- Before adding or removing a workspace, update the root `workspaces` array and ensure CI scripts still succeed with `npm run lint`, `npm run typecheck`, and `npm run test:unit` at the repo root.
36
-
- When adding repo-wide scripts, keep names consistent with existing patterns (e.g. `lint`, `lint:fix`, `typecheck`, `test:unit`, `build-archive`) and prefer `--workspaces` fan-out.
35
+
- Before adding or removing a workspace, update the root `workspaces` array in `pnpm-workspace.yaml`and ensure CI scripts still succeed with `pnpm run lint`, `pnpm run typecheck`, and `pnpm run test:unit` at the repo root.
36
+
- When adding repo-wide scripts, keep names consistent with existing patterns (e.g. `lint`, `lint:fix`, `typecheck`, `test:unit`, `build-archive`) and prefer `pnpm -r run` fan-out.
37
37
- Do not publish from the root. If adding a new workspace intended for publication, mark that workspace package as `private: false` and keep the root as private.
38
38
- Validate changes by running the repo pre-commit hooks: `make githooks-run`.
39
39
40
40
Success criteria for changes affecting the root `package.json`:
41
41
42
-
-`npm run lint`, `npm run typecheck`, and `npm run test:unit` pass at the repo root.
43
-
- Workspace discovery is correct (new projects appear under `npm run typecheck --workspaces`).
44
-
- No regression in lambda build tooling (`npm run build-archive`).
42
+
-`pnpm run lint`, `pnpm run typecheck`, and `pnpm run test:unit` pass at the repo root.
43
+
- Workspace discovery is correct (new projects appear under `pnpm run typecheck`).
44
+
- No regression in lambda build tooling (`pnpm run build:archive`).
0 commit comments