feat(projman): add plan-then-batch skill optimization #421

Merged
lmiranda merged 51 commits from feat/plan-then-batch-optimization into development 2026-02-04 00:59:04 +00:00
3 changed files with 21 additions and 26 deletions
Showing only changes of commit de6cba5f31 - Show all commits

View File

@@ -1,14 +1,10 @@
{ {
"hooks": { "hooks": {
"SessionStart": [ "SessionStart": [
{
"hooks": [
{ {
"type": "command", "type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh" "command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
} }
]
}
], ],
"PreToolUse": [ "PreToolUse": [
{ {

View File

@@ -1,16 +1,19 @@
{ {
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [ "hooks": [
{ {
"event": "PreToolUse",
"matcher": "Bash",
"type": "command", "type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/branch-check.sh" "command": "${CLAUDE_PLUGIN_ROOT}/hooks/branch-check.sh"
}, },
{ {
"event": "PreToolUse",
"matcher": "Bash",
"type": "command", "type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/commit-msg-check.sh" "command": "${CLAUDE_PLUGIN_ROOT}/hooks/commit-msg-check.sh"
} }
] ]
}
]
}
} }

View File

@@ -1,14 +1,10 @@
{ {
"hooks": { "hooks": {
"SessionStart": [ "SessionStart": [
{
"hooks": [
{ {
"type": "command", "type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh" "command": "${CLAUDE_PLUGIN_ROOT}/hooks/startup-check.sh"
} }
] ]
} }
]
}
} }