Intercepts raw CLI commands and redirects to project-standard just recipes. Includes just skill for bootstrapping, modules, groups, and syntax.
npx claudepluginhub kettleofketchup/claude-just-interceptorIntercepts raw CLI commands and redirects to project-standard just recipes. Includes just skill for bootstrapping, modules, groups, and syntax.
Claude Code plugin that intercepts raw CLI commands and redirects to project-standard just recipes.
When Claude tries to run npm install, docker compose up, or any command you've mapped, the hook denies it and tells Claude to use the corresponding just recipe instead.
Add the marketplace and install:
/plugin marketplace add kettleofketchup/claude-just-interceptor
/plugin install just-interceptor@claude-just-interceptor
Create .claude/just-interceptor.json in your project root with command mappings:
{
"redirects": [
{
"category": "npm",
"enabled": true,
"pattern": "^npm install",
"just_command": "just npm::install",
"reason": "Project-standard npm install with correct working directory"
},
{
"category": "docker",
"enabled": true,
"pattern": "^docker compose up",
"just_command": "just docker::up",
"reason": "Uses project-specific compose configuration"
}
]
}
| Field | Type | Description |
|---|---|---|
category | string | Grouping label shown in the redirect message |
enabled | boolean | Set false to disable without removing |
pattern | string | Regex matched against the full command string |
just_command | string | The just recipe to suggest |
reason | string | Explanation shown to Claude |
PreToolUse event before every Bash tool call.claude/just-interceptor.jsonMIT
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
No description available.
Code intelligence powered by a knowledge graph — execution flows, blast radius, and semantic search