Agent Plugins Marketplace
All plugins

orka

v1.7.0

Orka is a multi-agent engineering harness for Codex and Claude Code: resilient Jira sprint scheduling, ticket decomposition, isolated implementation, bounded reviews, and merge-on-green.

CodexClaude Code8 Skills

By Dusty MumphreyLicense: MIT0 GitHub starsUpdated 6 days ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
8 skill or MCP entries
Source updated
Sep 17, 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 orka 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 orka@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/Dusttoo/orka

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

orka/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/gate-pr/SKILL.md
├── skills/orchestrate-sprint/SKILL.md
├── skills/orchestrate-ticket/SKILL.md
├── skills/orchestration-init/SKILL.md
├── skills/orchestration-report/SKILL.md
├── skills/recover-agent-work/SKILL.md
├── skills/release-integration/SKILL.md
└── skills/scope-ticket/SKILL.md

Included Skills8

gate-prskills/gate-pr/SKILL.md

Run the independent review gates on an existing PR and merge it only after code-review, required security review, configured verification, and CI are green. Use when the user asks to gate a PR, review and merge a PR through the orchestration pipeline, run merge-on-green, or run the equivalent of the Claude /gate command.

orchestrate-sprintskills/orchestrate-sprint/SKILL.md

Run every actionable Jira ticket in a configured sprint through the reusable orchestrate-ticket pipeline with bounded concurrency, dependency-aware scheduling, durable checkpoints, restart recovery, and final completed/blocked/user-action summaries. Use when the user asks to orchestrate, run, resume, or finish a sprint or multiple Jira tickets in parallel. Do not use for a single ticket or for trackers other than a repository-configured Jira project.

orchestrate-ticketskills/orchestrate-ticket/SKILL.md

Drive one ticket or change end-to-end through the full multi-agent orchestration pipeline (isolated implementation, independent code review, security review when warranted, optional verification, and merge on green). Use when the user asks in natural language to "orchestrate" a ticket, "run it through the pipeline", "take it end to end", or otherwise wants the gated implement-review-merge flow rather than a plain one-off edit. This is the natural-language entry to the same flow as the Claude /orchestrate command and Codex orchestration skill. Do NOT trigger for an ordinary implementation request ("just fix this", "make this change") where the user did not ask for the full gated pipeline.

orchestration-initskills/orchestration-init/SKILL.md

Bootstrap the orchestration harness in a target repo by creating configuration, checking project acceptance criteria, and wiring plugin-owned guardrails. Use when the user asks to initialize, install, bootstrap, or set up orchestration in a repository, including the equivalent of the Claude /orchestration-init command.

orchestration-reportskills/orchestration-report/SKILL.md

Report orchestration cost and performance from the API usage ledger and recommend concrete config changes. Use when the user asks how much orchestration is costing, where tokens or money are going, which role or ticket is expensive, whether prompt caching is working, why runs are slow or rate-limited, or for usage insights over a time window, including the equivalent of the Claude /orchestration-report command.

recover-agent-workskills/recover-agent-work/SKILL.md

Recover the uncommitted work of a background or subagent that died, was rate-limited, crashed, timed out, or was interrupted mid-task, instead of re-running it from scratch. Use when an implementer agent stopped without opening its PR, when you see a rate-limit or crash on a spawned agent, or when a worktree has changes but no commit. The work is almost always still on disk in the agent's worktree.

release-integrationskills/release-integration/SKILL.md

Advance a configured release or candidate workflow through the shared orchestration engine. The skill name is retained for compatibility; release policy comes from repository configuration, not from this skill.

scope-ticketskills/scope-ticket/SKILL.md

Turn a thin or vague ticket into one you can write a failing test from, before any branch is cut. Use when about to implement a ticket whose description is underspecified, when asked to scope/refine/groom a ticket, or when a task lacks clear acceptance criteria or a defined entry point. The bar is a single question - could you write a red test from this cold? If not, it is not ready to implement.

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "orka",
  "version": "1.7.0",
  "description": "Orka is a multi-agent engineering harness for Codex and Claude Code: resilient Jira sprint scheduling, ticket decomposition, isolated implementation, bounded reviews, and merge-on-green.",
  "author": {
    "name": "Dusty Mumphrey",
    "url": "https://github.com/Dusttoo"
  },
  "homepage": "https://github.com/Dusttoo/orka",
  "repository": "https://github.com/Dusttoo/orka",
  "license": "MIT",
  "keywords": [
    "orchestration",
    "agents",
    "code-review",
    "gates",
    "worktrees",
    "ci",
    "merge-guard",
    "codex",
    "claude-code",
    "jira",
    "sprint"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Orka",
    "shortDescription": "Run gated ticket and sprint workflows",
    "longDescription": "Drive one ticket or a dependency-linked Jira sprint through isolated implementation, independent review and security gates, optional verification, merge-on-green, configured release/candidate workflows, ticket scoping, and resumable recovery. Codex uses the natural-language skills and shared controllers; Claude Code can also use the slash commands and hook metadata bundled in this repository.",
    "developerName": "Dusty Mumphrey",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://github.com/Dusttoo/orka",
    "defaultPrompt": [
      "Orchestrate this ticket end to end",
      "Orchestrate the configured Jira sprint",
      "Run the gates on PR 123"
    ],
    "brandColor": "#111111",
    "composerIcon": "./assets/orka-logo.png",
    "logo": "./assets/orka-logo.png"
  }
}
.claude-plugin/plugin.json
{
  "name": "orka",
  "version": "1.7.0",
  "description": "Orka is a multi-agent engineering harness for Claude Code and Codex: resilient Jira sprint scheduling, isolated implementation, bounded reviews, and mechanical merge-on-green.",
  "author": {
    "name": "Dusty Mumphrey"
  },
  "keywords": [
    "orchestration",
    "agents",
    "code-review",
    "gates",
    "worktrees",
    "ci",
    "merge-guard",
    "jira",
    "sprint"
  ]
}

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

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