orchestration

orchestration is a skill for Claude Code, Codex from Yoshikemolo/mcp-jira-devflow. It costs 29 tokens per session (516 once invoked), scanned A, original, MIT.

A workflow coordinator for multi-step technical tasks that uses plans, validation, state tracking, and rollback.

In plain words
What is it for?
Use it to coordinate several skills or operations in a defined sequence, with approval before execution and recovery steps if something fails.
Why use it?
It makes dependent operations easier to control by requiring a plan, checking inputs, stopping on failures, and reversing completed steps when needed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to coordinate several skills or operations in a defined sequence, with approval before execution and recovery steps if something fails.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yoshikemolo/mcp-jira-devflow/orchestration
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Yoshikemolo/mcp-jira-devflow --skill orchestration
Clone the repo
git clone --depth 1 https://github.com/Yoshikemolo/mcp-jira-devflow

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orchestration

README.md
[![agentmods](https://agentmods.dev/badge/skills/yoshikemolo/mcp-jira-devflow/orchestration/github.svg)](https://agentmods.dev/skills/yoshikemolo/mcp-jira-devflow/orchestration)
Your own site
<a href="https://agentmods.dev/skills/yoshikemolo/mcp-jira-devflow/orchestration"><img src="https://agentmods.dev/badge/skills/yoshikemolo/mcp-jira-devflow/orchestration/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orchestration

Your own site · 80×15
<a href="https://agentmods.dev/skills/yoshikemolo/mcp-jira-devflow/orchestration"><img src="https://agentmods.dev/badge/skills/yoshikemolo/mcp-jira-devflow/orchestration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 516 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00516
Opus 5 $0.00015 $0.00258
Sonnet 5 $0.00006 $0.00103
Haiku 4.5 $0.00003 $0.00052

Measured 9d ago against content hash 9dd36772435d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

orchestration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/orchestration/SKILL.md · 99 lines

What it actually says

Orchestration Skill

Coordinate multi-step workflows with planning, execution, and rollback.

Allowed Operations

  • Create execution plans
  • Execute plans step-by-step
  • Coordinate between skills
  • Track execution state
  • Handle rollbacks

Forbidden Operations

  • Execute without plan approval
  • Skip plan validation
  • Ignore step failures
  • Parallel execution without explicit flag
  • Modify plan during execution

Execution Phases

1. Plan Phase

  • Output all steps
  • Identify tools and risks
  • NO side effects
  • Requires approval

2. Validation Phase

  • Validate all inputs
  • Check permissions
  • Dry-run each step

3. Execution Phase

  • Execute step-by-step
  • Abort on error
  • Track state for rollback

4. Rollback Phase (if needed)

  • Execute in reverse order
  • Log all actions
  • Report final state

Quick Plan Structure

plan:
  id: "plan-001"
  name: "Implement Feature"
  steps:
    - id: "step-1"
      skill: "git-operations"
      action: "create-branch"
      params:
        name: "feature/PROJ-123"
      rollback:
        action: "delete-branch"

    - id: "step-2"
      skill: "jira-write"
      action: "transition"
      params:
        issue: "PROJ-123"
        status: "In Progress"
      dependsOn: ["step-1"]

For complete plan examples, see PLAN-EXAMPLES.md.

For rollback patterns, see ROLLBACK-STRATEGIES.md.

Error Handling

Scenario Action
Single step failure Pause and report
Multiple failures Abort and rollback
Rollback failure Alert for manual intervention

Example Usage

Create a plan to implement feature PROJ-123
Execute the approved plan step by step
Resume plan execution from step 3
Rollback the last failed plan
Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 99 lines · 29 tokens per session scan A 9dd36772435d

Subscribe to this mod's changes

orchestration is a skill published in the GitHub repository Yoshikemolo/mcp-jira-devflow (5 stars, last pushed 5mo ago), licensed MIT. It adds 29 tokens to every session and 516 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ai-ml-development

AI and machine learning development with PyTorch, TensorFlow, and LLM integration. Use when building ML models, training pipelines, fine-tuning LLMs, or implementing AI features.

travisjneuman/.claude · 43 tokens

authentication-patterns

OAuth 2.0, JWT, SSO, MFA, NextAuth/Clerk/Supabase Auth implementation patterns.

travisjneuman/.claude · 28 tokens

case-interview-practice

Interactive consulting case interview practice with structured frameworks, feedback mechanisms, and progressive difficulty. Use when preparing for management consulting interviews, case competitions, or business problem-solving exercises.

travisjneuman/.claude · 39 tokens

finance

Financial analysis expertise for financial modeling (DCF, LBO, M&A), valuation, financial statement analysis, capital allocation, treasury management, and corporate finance decisions. Use when building financial models, analyzing statements, or making investment decisions.

travisjneuman/.claude · 48 tokens

i18n-localization

Internationalization and localization for global applications. Use when adding multi-language support, handling regional formats, or preparing apps for global markets.

travisjneuman/.claude · 32 tokens

leadership

Executive leadership expertise for decision-making, change management, crisis management, stakeholder management, team building, and organizational leadership. Use when leading teams, managing change, navigating crises, or developing leadership skills.

travisjneuman/.claude · 42 tokens