docs(framework): add agency & persistence patterns to config + guides (#543)
ci/woodpecker/push/ci Pipeline was canceled
ci/woodpecker/push/publish Pipeline was canceled

Co-authored-by: Jason Woltje <[email protected]>
Co-committed-by: Jason Woltje <[email protected]>
This commit was merged in pull request #543.
This commit is contained in:
2026-06-21 01:43:36 +00:00
committed by jason.woltje
parent e834bbb83c
commit b354bc8fae
5 changed files with 37 additions and 0 deletions
@@ -102,6 +102,10 @@ If a project's `playwright.config.ts` does not explicitly set `headless: true`,
1. Do NOT stop at "tests pass" if acceptance criteria are not verified.
2. Do NOT write narrow tests that only satisfy assertions while missing real workflow behavior.
3. Do NOT claim completion without situational evidence for impacted surfaces.
4. Do NOT edit tests to make them pass; assume the root cause is in the code under test unless the task is explicitly to fix the test.
5. Do NOT fabricate sample data, stub responses, or mock around a real failure to produce a green result.
6. Do NOT simplify, comment out, or narrow the feature/logic to dodge an error — debug the actual root cause.
7. Do NOT reason about or claim behavior of code you have not opened and read.
## Reporting