Skip to content

Commit d97422e

Browse files
sylvansysclaude
andauthored
fix(project-context): Remove prompt-based Stop hook (#341)
* fix(project-context): Remove prompt-based Stop hook Remove the only prompt-based hook (session-stop-review) from the project-context plugin. All hooks now use command-based execution exclusively. Closes #340 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: Disable constellos review agents until actions are published The constellos-review workflow references actions in constellos/github-agents that don't exist yet, causing CI failures on every PR. Disable the agents via config until the actions are available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 67af237 commit d97422e

3 files changed

Lines changed: 10 additions & 12 deletions

File tree

.constellos/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"agents": {
3+
"requirements": {
4+
"enabled": false
5+
},
6+
"code-quality": {
7+
"enabled": false
8+
}
9+
}
10+
}

plugins/project-context/CLAUDE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Automatic CLAUDE.md discovery, .claude structure validation, and rule-based chec
2929
| track-task-scope | PostToolUse[Write\|Edit] | No | Advisory when file outside task scope |
3030
| add-folder-context | PostToolUse[Read] | No | Discovers CLAUDE.md files |
3131
| review-subagent-completion | SubagentStop | Yes* | Reviews subagent work, blocks Plan without plan file |
32-
| session-stop-review | Stop | Yes | Prompt-based review of session completion |
3332

3433
## Skills
3534

plugins/project-context/hooks/hooks.json

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -119,17 +119,6 @@
119119
}
120120
]
121121
}
122-
],
123-
"Stop": [
124-
{
125-
"hooks": [
126-
{
127-
"type": "prompt",
128-
"prompt": "Review if this Claude Code session should stop. Evaluate:\n\n1. Was the user's original request addressed?\n2. Were all requested tasks completed?\n3. Are there unfinished items or errors needing attention?\n\nFor exploration/review requests: can complete without code changes.\nFor implementation requests: verify code was written and tested.\n\nReturn {\"ok\": true} to allow stopping, or {\"ok\": false, \"reason\": \"what remains\"} to continue.",
129-
"timeout": 60
130-
}
131-
]
132-
}
133122
]
134123
},
135124
"_planned_features": [

0 commit comments

Comments
 (0)