workflow-execute

workflow-execute is a skill for Claude Code, Codex from catlog22/Claude-Code-Workflow. It costs 31 tokens per session (6,302 once invoked), scanned A, original, MIT.

A workflow coordinator that finds or resumes a work session, assigns tasks to agents, tracks progress, and runs the workflow to completion.

In plain words
What is it for?
Use it to run an existing workflow, resume a paused session, or optionally commit completed tasks as they finish.
Why use it?
It removes the need to manually manage each task, session, and progress update during a larger coding workflow.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/catlog22/claude-code-workflow/workflow-execute
Any agent
npx skills add catlog22/Claude-Code-Workflow --skill workflow-execute
Clone the repo
git clone --depth 1 https://github.com/catlog22/Claude-Code-Workflow

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 workflow-execute

README.md
[![agentmods](https://agentmods.dev/badge/skills/catlog22/claude-code-workflow/workflow-execute.svg)](https://agentmods.dev/skills/catlog22/claude-code-workflow/workflow-execute)
Your own site
<a href="https://agentmods.dev/skills/catlog22/claude-code-workflow/workflow-execute"><img src="https://agentmods.dev/badge/skills/catlog22/claude-code-workflow/workflow-execute.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,302 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00031 $0.06302
Opus 5 $0.00015 $0.03151
Sonnet 5 $0.00006 $0.01260
Haiku 4.5 $0.00003 $0.00630

Measured yesterday against content hash aecb2fed9c05, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

workflow-execute 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 yesterday.

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.

.claude/skills/workflow-execute/SKILL.md · 626 lines

How it starts

The opening of the file, as written. The whole thing — 626 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workflow Execute

Orchestrates autonomous workflow execution through systematic task discovery, agent coordination, and progress tracking. Executes entire workflow without user interruption (except initial session selection if multiple active sessions exist), providing complete context to agents and ensuring proper flow control execution with comprehensive TodoWrite tracking.

Resume Mode: When called with --resume-session flag, skips discovery phase and directly enters TodoWrite generation and agent execution for the specified session.

Usage

# Interactive mode (with confirmations)
/workflow-execute
/workflow-execute --resume-session="WFS-auth"

# Auto mode (skip confirmations, use defaults)
/workflow-execute --yes
/workflow-execute -y
/workflow-execute -y --resume-session="WFS-auth"

# With auto-commit (commit after each task completion)
/workflow-execute --with-commit
/workflow-execute -y --with-commit
/workflow-execute -y --with-commit --resume-session="WFS-auth"

Auto Mode Defaults

When --yes or -y flag is used:

  • Session Selection: Automatically selects the first (most recent) active session
  • Completion Choice: Automatically completes session (runs /workflow:session:complete --yes)

When --with-commit flag is used:

  • Auto-Commit: After each agent task completes, commit changes based on summary document
  • Commit Principle: Minimal commits - only commit files modified by the completed task
  • Commit Message: Generated from task summary with format: "feat/fix/refactor: {task-title} - {summary}"

Flag Parsing:

// ★ 统一 auto mode 检测:-y/--yes 从 $ARGUMENTS 或 ccw 传播
const autoYes = /\b(-y|--yes)\b/.test($ARGUMENTS)
const withCommit = $ARGUMENTS.includes('--with-commit')

Performance Optimization Strategy

Lazy Loading: Task JSONs read on-demand during execution, not upfront. TODO_LIST.md + IMPL_PLAN.md provide metadata for planning.

Loading Strategy:

  • TODO_LIST.md: Read in Phase 3 (task metadata, status, dependencies for TodoWrite generation)
  • IMPL_PLAN.md: Check existence in Phase 2 (normal mode), parse execution strategy in Phase 4A
  • Task JSONs: Lazy loading - read only when task is about to execute (Phase 4B)

Read the full file on GitHub · 626 lines

Files

What ships with it

1 file 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. yesterday First seen · 626 lines · 31 tokens per session scan A aecb2fed9c05

Subscribe to this mod's changes

workflow-execute is a skill published in the GitHub repository catlog22/Claude-Code-Workflow (2,133 stars, last pushed 2mo ago), licensed MIT. It adds 31 tokens to every session and 6,302 once invoked, about $0.0002 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-09-03.