chore(ai tooling): sync harness configs

This commit is contained in:
Tommaso Casaburi
2026-04-23 14:14:55 +07:00
parent 0366a16844
commit 76a3a763a5
18 changed files with 66 additions and 38 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ If your AI coding assistant supports lifecycle hooks, configure these for this r
- New `useEffect`/memo additions get an explicit second look before the agent finishes
- Build/lint/type issues caught early
- Security visibility via `corepack yarn npm audit`
- One shared hook implementation for both Codex and Cursor
- One shared hook implementation for Codex, Cursor, and Claude
- Temporary task branches stay aligned with the repo's worktree workflow
## Example Hook Scripts
@@ -85,4 +85,4 @@ exit 0
Configure hook wiring according to your agent tool docs (`hooks.json`, equivalent, etc.).
In this repo, `.codex/hooks/*.sh` and `.cursor/hooks/*.sh` should stay as thin wrappers that delegate to the shared implementations under `scripts/agent-hooks/`.
In this repo, `.codex/hooks/*.sh`, `.cursor/hooks/*.sh`, and `.claude/hooks/*.sh` should stay as thin wrappers that delegate to the shared implementations under `scripts/agent-hooks/`. Harness-specific startup hooks such as Claude's `SessionStart` can live alongside those wrappers when the other harnesses do not have an equivalent entry point.
+1
View File
@@ -54,6 +54,7 @@ playwright-cli install --skills
Skill install locations:
- `.codex/skills/playwright-cli/`
- `.cursor/skills/playwright-cli/`
- `.claude/skills/playwright-cli/`