Agent Plugins Marketplace
All plugins

razorback

v0.30.0

Miller-powered development workflow for Claude Code, Codex, and OpenCode.

CodexClaude Code25 Skills

By anorthamLicense: MIT2 GitHub starsUpdated last month

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
25 skill or MCP entries
Source updated
Aug 8, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install razorback for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add razorback@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/anortham/razorback

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

razorback/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/architecture-quality/SKILL.md
├── skills/brainstorming/SKILL.md
├── skills/claude-cli/SKILL.md
├── skills/codex-cli/SKILL.md
├── skills/cursor-agent/SKILL.md
├── skills/dispatching-parallel-agents/SKILL.md
├── skills/executing-plans/SKILL.md
├── skills/finishing-a-development-branch/SKILL.md
├── skills/fixing-small-issues/SKILL.md
├── skills/grok-cli/SKILL.md
├── skills/grounding-in-current-docs/SKILL.md
├── skills/harvesting-debt/SKILL.md
├── skills/pre-merge-review/SKILL.md
├── skills/prototyping/SKILL.md
├── skills/receiving-code-review/SKILL.md
├── skills/requesting-code-review/SKILL.md
├── skills/security-review/SKILL.md
├── skills/subagent-driven-development/SKILL.md
├── skills/systematic-debugging/SKILL.md
├── skills/test-driven-development/SKILL.md
├── skills/using-git-worktrees/SKILL.md
├── skills/using-razorback/SKILL.md
├── skills/verification-before-completion/SKILL.md
├── skills/writing-plans/SKILL.md
└── skills/writing-skills/SKILL.md

Included Skills25

architecture-qualityskills/architecture-quality/SKILL.md

Use when planning or reviewing non-trivial code changes, refactoring architecture, evaluating module boundaries, repeated findings reveal coupling, tests are hard to write because interfaces are unclear, or the user asks for codebase design improvements, complexity reduction, deduplication, or cleanup of existing code.

brainstormingskills/brainstorming/SKILL.md

Use when starting any creative work - creating a feature, building a component, adding functionality, or changing designed behavior - before writing code or invoking any implementation skill. Small defect repairs and tweaks triage through razorback:fixing-small-issues first.

claude-cliskills/claude-cli/SKILL.md

Use when the user says "ask claude", "fresh claude review", "second opinion from another claude", "have another claude look at this", "delegate to a fresh claude", or any variation naming Claude as the second perspective they want.

codex-cliskills/codex-cli/SKILL.md

Use when the user says "ask codex", "get codex's take", "codex review", "have codex look at this", "delegate to codex", or any variation naming Codex/OpenAI as the perspective they want. Also use for a generic "second opinion from a different model" when no other model is named.

cursor-agentskills/cursor-agent/SKILL.md

Use when the user explicitly asks to use Cursor Agent, Cursor CLI, Composer, Composer 2.5, or to delegate implementation work to Cursor from another harness.

dispatching-parallel-agentsskills/dispatching-parallel-agents/SKILL.md

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

executing-plansskills/executing-plans/SKILL.md

Use when executing a written implementation plan single-agent — separate-session, single-task, or no-delegation runs.

finishing-a-development-branchskills/finishing-a-development-branch/SKILL.md

Use when implementation is complete, branch verification passes, and you need to decide how to integrate the work

fixing-small-issuesskills/fixing-small-issues/SKILL.md

Use when a reported defect or requested tweak looks small and local — a button not disabled, a double-submit, an off-by-one, a wrong label, CSS/styling adjustments, copy changes, config value fixes — before invoking brainstorming, creating a worktree, or running any test suite.

grok-cliskills/grok-cli/SKILL.md

Use when the user says "ask grok", "get grok's take", "grok review", "have grok look at this", "delegate to grok", or any variation naming Grok/xAI as the perspective they want.

grounding-in-current-docsskills/grounding-in-current-docs/SKILL.md

Use when writing code against an external framework, library, or API — especially a version or feature newer than your training data, an unfamiliar dependency, or behavior that may have changed (new directives, breaking changes, renamed options, deprecations, changed defaults).

harvesting-debtskills/harvesting-debt/SKILL.md

Use when the user says "razorback debt", "harvesting-debt", "debt ledger", "what did we defer", "list the shortcuts", or "what did we mark to do later" — any request to account for deliberate shortcuts marked with `razorback:` comments.

pre-merge-reviewskills/pre-merge-review/SKILL.md

Use after all tasks are complete and branch verification passes, before finishing-a-development-branch, when a pre-merge external reviewer was chosen for the run (codex or claude).

prototypingskills/prototyping/SKILL.md

Use when a design question resists discussion — a state model with more edge cases than fit in your head, a UI the user keeps flip-flopping on because nobody can picture it, or behavior only knowable by running it — before writing a design doc or implementation plan for that question.

receiving-code-reviewskills/receiving-code-review/SKILL.md

Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable

requesting-code-reviewskills/requesting-code-review/SKILL.md

Use when the lead needs inline-review criteria during plan execution, or when reviewing work done outside an approved plan - ad-hoc features, baseline checks before a refactor, or when stuck. Not for planned pre-merge external review — that's razorback:pre-merge-review.

security-reviewskills/security-review/SKILL.md

Use when running a security review, a secrets scan, or a dependency/CVE audit, when the branch gate needs its security scopes, when checking or declaring the external-model policy, or when asking "can I send this diff to codex/claude/grok/cursor".

subagent-driven-developmentskills/subagent-driven-development/SKILL.md

Use when executing an approved implementation plan in the current session and the harness can launch subagents.

systematic-debuggingskills/systematic-debugging/SKILL.md

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes

test-driven-developmentskills/test-driven-development/SKILL.md

Use when implementing any feature or bugfix, before writing implementation code

using-git-worktreesskills/using-git-worktrees/SKILL.md

Use when starting feature work that needs isolation from the current workspace, or before executing implementation plans

using-razorbackskills/using-razorback/SKILL.md

Use when starting any conversation, before any response or action including clarifying questions.

verification-before-completionskills/verification-before-completion/SKILL.md

Use when about to claim work is complete, fixed, or passing, before committing or creating PRs

writing-plansskills/writing-plans/SKILL.md

Use when you have a spec or requirements for a multi-step task, before touching code

writing-skillsskills/writing-skills/SKILL.md

Use when creating new skills, editing existing skills, or verifying skills work before deployment

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "razorback",
  "version": "0.30.0",
  "description": "Miller-powered development workflow for Claude Code, Codex, and OpenCode.",
  "author": {
    "name": "anortham"
  },
  "homepage": "https://github.com/anortham/razorback",
  "repository": "https://github.com/anortham/razorback",
  "license": "MIT",
  "keywords": [
    "skills",
    "tdd",
    "debugging",
    "miller",
    "workflows"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Razorback",
    "shortDescription": "Miller-powered development workflow skills.",
    "longDescription": "Development workflow skills for Codex with Miller-first orientation, TDD discipline, and subagent-driven execution.",
    "developerName": "anortham",
    "category": "Productivity",
    "capabilities": [
      "Write"
    ],
    "websiteURL": "https://github.com/anortham/razorback",
    "defaultPrompt": [
      "Plan a code change with Miller-first repo grounding.",
      "Run a TDD fix with worker verification and a concise report.",
      "Review a diff for regressions, contract drift, and missing tests."
    ],
    "brandColor": "#B31B1B",
    "composerIcon": "./assets/app-icon.png",
    "logo": "./assets/razorback-small.svg",
    "logoDark": "./assets/razorback-small.svg"
  }
}
.claude-plugin/plugin.json
{
  "name": "razorback",
  "description": "Miller-powered development workflow with subagent-driven execution, inline review, and Miller-first codebase orientation.",
  "version": "0.30.0",
  "author": {
    "name": "anortham"
  },
  "homepage": "https://github.com/anortham/razorback",
  "license": "MIT",
  "keywords": [
    "skills",
    "tdd",
    "debugging",
    "miller",
    "workflows"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[razorback on Agent Plugins Marketplace](https://pluginsmp.com/plugins/razorback)