Plugin Claude Code
Personal Claude Code plugins: git workflows, code quality, agent orchestration, and plugin tooling.
Plugin Claude Code
Personal Claude Code plugins: git workflows, code quality, agent orchestration, and plugin tooling.
Command Claude Code
Commit plugin changes with automatic version bump (semver).
Hook Claude Code
Runs when a session starts, executing version-tracker.sh and setup-check.sh with --quiet (2 commands). From bengous/claude-code-plugins.
Hook Claude Code
Runs before the agent uses a tool for Bash, Edit, Write and Bash tool calls, executing guard-destructive.ts, guard-main-branch.ts, guard-git-push.ts and guard-settings-json.ts via bun (4 commands). From bengous/claude-code-plugins.
Hook Claude Code
Runs after a tool call finishes for Edit and Write tool calls, executing format-and-lint.ts via bun. From bengous/claude-code-plugins.
Settings file Claude Code
Agent settings declaring 3 hook events (SessionStart, PreToolUse, PostToolUse) and 29 allowed tools.
MCP server Claude CodeCodexCursor +2
MCP server "claude-code-docs", hosted remotely at code.claude.com, as configured in bengous/claude-code-plugins.
Instructions file CodexOpenCode
Instructions for bengous/claude-code-plugins, covering claude code plugin marketplace, plugin work, commands, code standards and non-obvious directories.
Instructions file
Instructions for bengous/claude-code-plugins, a project described as: Opinionated plugins and workflow extensions for Claude Code.
Plugin Claude Code
Bridge to the OpenAI Codex CLI for cross-model collaboration.
Skill Claude CodeCodex
Claude Code only. Use when the user explicitly invokes /agents-bridge:codex-orchestrate (or /codex-orchestrate) in Claude Code or asks Claude to orchestrate a large multi-slice plan by delegating implementation to the Codex CLI through agents-bridge. In native Codex, use $slice-runner instead.
Skill Claude CodeCodex
Invoke OpenAI Codex CLI for cross-model collaboration.
Skill Claude CodeCodex
Critical second opinion from Codex (OpenAI) on a proposal Claude just made — confirms what is sound, challenges what is genuinely weak, and suggests a better path with clear reasoning when one exists. Constructive, not contrarian. Use to cross-check a Claude design, refactor, API, or fix with a non-Claude model before…
Skill Claude CodeCodex
Generate or edit images with the Codex CLI's built-in imagegen tool. Use when the user asks to create, generate or draw an image, icon, logo, favicon, illustration or mockup, or to edit an existing image file — restyle, retouch, upscale, add or remove elements.
Skill Claude CodeCodex
Start a session in pair-planning mode where Claude and Codex (read-only) each draft an independent implementation plan for a task, then cross-review through an open-point ledger until consensus, escalating remaining disagreements to the user. Produces one agreed plan; does not write code. Use at the start of a task to…
Agent
Reviews TypeScript system architecture to determine whether Effect (effect-ts) should be used, where it applies, and to what extent. Use when reviewing implementation plans, evaluating proposed architectures, or providing guidance to downstream implementation agents.
Agent
Read-only auditor for silent error swallowing in Effect code. Receives scanner JSON, reads source context, classifies severity, prescribes fixes. Spawned by /null-as-error skill.
Agent
Read-only infrastructure code auditor for /refactorlib. Searches for handcrafted infrastructure code (HTTP, retry, scheduling, platform I/O, CLI, config, concurrency) replaceable by installed library APIs. Use when /refactorlib spawns parallel exploration.
Agent
Read-only utility code auditor for /refactorlib. Searches for handcrafted utility code (string, date, collections, ID generation, encoding, URL parsing, deep clone) replaceable by installed library APIs or native APIs. Use when /refactorlib spawns parallel exploration.
Command
Invoke the null-as-error skill to audit the current project for silent error swallowing in Effect code.
Skill Claude CodeCodex
Audit an Effect codebase for silent error swallowing -- catchAll patterns that collapse errors into sentinel values (null, [], false, void) in the success channel. Runs a scanner script, spawns a read-only auditor, and produces a classified report. NOT for: non-Effect projects, React/frontend code, plain TypeScript…
Skill Claude CodeCodex
Audit a codebase for handcrafted code that duplicates functionality already available in the project's dependencies. Reads package.json, launches parallel exploration agents, verifies replacement feasibility, and produces a structured refactor plan. Audit only -- does not execute changes.
Command
Perform a comprehensive analysis of the git repository to identify branches and worktrees that can be cleaned up. This is a READ-ONLY analysis - no deletions will be performed.
Command
Perform git repository cleanup operations based on the analysis from /git-tools:analyze-git.