chore(agent hooks): remind on new React effects and memos

This commit is contained in:
Tommaso Casaburi
2026-04-15 13:31:13 +07:00
parent 431f84b871
commit 3fc9f0fa19
9 changed files with 217 additions and 0 deletions
+8
View File
@@ -9,6 +9,10 @@
{
"command": ".claude/hooks/yarn-install.sh",
"timeout": 120
},
{
"command": ".claude/hooks/react-pattern-review.sh",
"timeout": 10
}
],
"stop": [
@@ -16,6 +20,10 @@
"command": ".claude/hooks/sync-git-branches.sh",
"timeout": 60
},
{
"command": ".claude/hooks/react-pattern-review.sh",
"timeout": 10
},
{
"command": ".claude/hooks/verify.sh",
"timeout": 60
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
repo_root="$(cd "$(dirname "$0")/../.." && pwd)"
exec "$repo_root/scripts/agent-hooks/react-pattern-review.sh" --skill-dir .claude/skills --scope-prefix src/ "$@"