Intercepts raw CLI commands and redirects to project-standard just recipes. Includes just skill for bootstrapping, modules, groups, and syntax.
Add a new command redirect to .claude/just-interceptor.json. Use when the user wants to intercept a raw CLI command and redirect it to a just recipe. Walks through category, pattern, just command, and reason via guided questions.
Bootstrap repos with just command runner and enforce recipe usage with the just-interceptor hook. Use when setting up new projects, creating justfiles, adding task automation, organizing recipes with groups and modules, or configuring command interception to redirect raw CLI commands to project-standard just recipes. Provides ./dev bootstrap script, modular justfile structure in just/ directory, recipe conventions, intelligent grouping strategies for fzf-tab completion, and PreToolUse hook configuration for command redirection.
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
Executes bash commands
Hook triggers when Bash tool is used
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub kettleofketchup/claude-just-interceptor --plugin just-interceptorDiscord API interactions, message components, slash commands, modals, webhooks, and embeds. Use when building Discord...
Use when deploying Nextcloud on Kubernetes with Helm, configuring Rook-Ceph storage, Traefik ingress, Authentik SAML ...
Wails v2 Go desktop application framework with web frontend. Use when creating Go desktop apps with web UI (Svelte/Re...
Copyparty portable file server with resumable uploads, dedup, WebDAV, SFTP, FTP, TFTP, SMB, zeroconf, media indexer, ...
Goss YAML-based server validation and testing tool. This skill should be used when writing goss.yaml gossfiles, valid...
Utilities for working with justfiles, including doc comment optimization
Enforces orchestrator context window discipline via PreToolUse hooks and rules. Prevents the orchestrator from reading source files it will not edit, running diagnostic commands that should be delegated, and bypassing delegation with 'small change' rationalizations. Install to structurally prevent investigation escalation anti-patterns.
Claude Code hooks for enforcing best practices and workflow automation
Easily create hooks to prevent unwanted behaviors by analyzing conversation patterns
70+ Claude Code slash commands across 12 development phases with Dagger-based safety system, multi-dimensional validation, and specialized agents
Claude Code Bash tool patterns with hooks, automation, git workflows. Use for PreToolUse hooks, command chaining, CLI orchestration, custom commands, or encountering bash permissions, command failures, security guards, hook configurations.