chore(sync): mirror docs from openclaw/openclaw@404c4c1f86

This commit is contained in:
openclaw-docs-sync[bot] 2026-04-23 04:58:50 +00:00
parent d64d50dd24
commit 0cf23f4a53
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"repository": "openclaw/openclaw",
"sha": "112f6e16222ac896a8cb016866b96be1ab79a3dd",
"syncedAt": "2026-04-23T04:58:01.550Z"
"sha": "404c4c1f860568e580c9f13b1d10061c231943bb",
"syncedAt": "2026-04-23T04:58:49.862Z"
}

View File

@ -326,6 +326,7 @@ Think of the suites as “increasing realism” (and increasing flakiness/cost):
- Fast-local iteration note:
- `pnpm changed:lanes` shows which architectural lanes a diff triggers.
- The pre-commit hook runs `pnpm check:changed --staged` after staged formatting/linting, so core-only commits do not pay extension test cost unless they touch public extension-facing contracts. Release metadata-only commits stay on the targeted version/config/root-dependency lane.
- If the exact staged change set was already validated with equal-or-stronger gates, use `scripts/committer --fast "<message>" <files...>` to skip only the changed-scope hook rerun. Staged format/lint still run. Mention the completed gates in your handoff. This is also acceptable after an isolated flaky hook failure is rerun and passes with scoped proof.
- `pnpm test:changed` routes through scoped lanes when the changed paths map cleanly to a smaller suite.
- `pnpm test:max` and `pnpm test:changed:max` keep the same routing behavior, just with a higher worker cap.
- Local worker auto-scaling is intentionally conservative now and also backs off when the host load average is already high, so multiple concurrent Vitest runs do less damage by default.