claude-omo-agentflow: Skill for Claude Code

.claude/skills/agentflow/SKILL.md

agentflow is a skill for Claude Code from wangjialiang678/claude-omo-agentflow. It costs 139 tokens per session (1,295 once invoked), scanned A, original, MIT.

A system for coordinating several specialized AI agents on one software task. It can run agents in stages or in parallel, with different agents assigned to planning, coding, review, research, and documentation.

In plain words
What is it for?
Use it to run pipeline workflows, parallel swarms, or autopilot tasks involving code exploration, planning, implementation, review, fixes, verification, and summaries.
Why use it?
It divides large tasks into focused pieces and provides repeatable workflows for implementation, review, research, and debugging.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Codex.

This is wangjialiang678/claude-omo-agentflow's own configuration. It tells Claude Code how to work on claude-omo-agentflow itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-omo-agentflow configures →

Reuse

Borrowing it

Nothing to install: this file belongs to wangjialiang678/claude-omo-agentflow. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/wangjialiang678/claude-omo-agentflow/main/.claude/skills/agentflow/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/wangjialiang678/claude-omo-agentflow

Made for: Claude Code.

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 agentflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/wangjialiang678/claude-omo-agentflow/agentflow/github.svg)](https://agentmods.dev/skills/wangjialiang678/claude-omo-agentflow/agentflow)
Your own site
<a href="https://agentmods.dev/skills/wangjialiang678/claude-omo-agentflow/agentflow"><img src="https://agentmods.dev/badge/skills/wangjialiang678/claude-omo-agentflow/agentflow/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 agentflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/wangjialiang678/claude-omo-agentflow/agentflow"><img src="https://agentmods.dev/badge/skills/wangjialiang678/claude-omo-agentflow/agentflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,295 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.00139 $0.01295
Opus 5 $0.00069 $0.00647
Sonnet 5 $0.00028 $0.00259
Haiku 4.5 $0.00014 $0.00129

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

Security

Grade A, and why

agentflow 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 8d 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.

.claude/skills/agentflow/SKILL.md · 140 lines

How it starts

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

掌天瓶 (Agentflow) — 异构多代理系统

代理委派策略

当需要执行以下类型的任务时,使用对应的子代理:

任务类型 委派给 模型路由 权限
后端代码实现 backend-coder Codex (via CCR) Server-side only
前端 UI/UX 实现 frontend-coder Gemini Pro (via CCR) Client-side only
代码审核/Review reviewer Codex (via CCR) Read-only + test
技术调研 researcher Gemini Flash (via CCR) Read-only + web
代码搜索/文件查找 explorer Gemini Flash (via CCR) Read-only
文档撰写 doc-writer Gemini Flash (via CCR) .md only
需求规划 planner Claude Opus (native) Read-only
核心代码 主代理自行处理 Claude Opus (native) Full

完整注册表见 .claude/agentflow/agents.md

三种执行模式

Pipeline(流水线)

多阶段链式执行,每阶段委派给不同代理。

触发方式

  • "按 review 流水线审查 {target}"
  • "按 implement 流水线实现 {feature}"
  • "按 research 流水线调研 {topic}"
  • "按 debug 流水线修复 {bug}"

可用预设(定义在 .claude/agentflow/workflows/):

预设 阶段
review explore → review → fix → verify
implement plan → implement → review
research explore → research → summarize
debug explore → analyze → fix

执行流程

  1. 读取 .claude/agentflow/workflows/{预设}.yaml
  2. 设置 workflow-state.json: active=true, 记录 stages
  3. 按顺序委派每个 stage 给对应代理
  4. 每个 stage 完成后更新 state
  5. Stop Hook 自动阻止中途停止
  6. 全部完成 → active=false → 允许停止

Autopilot(自主模式)

planner 规划 → 自动按计划执行。

触发方式

  • "@plan {需求描述}"
  • "规划并实现 {feature}"

执行流程

  1. 调用 planner 子代理生成 current-plan.md(含 TODO 列表)
  2. 按 TODO 逐项委派给合适的代理
  3. 每完成一项更新 checkbox
  4. Stop Hook 检查未勾选 TODO → 阻止停止
  5. 全部完成 → 允许停止

Swarm(蜂群并行)

多 worker 从共享任务池并行处理。

触发方式

  • "并行修复所有 {问题类型}"
  • "并行处理以下任务: {task1}, {task2}, ..."

执行流程

  1. 分解为原子任务,写入 task-pool.json
  2. 启动多个子代理(background task)
  3. 每个子代理调用 claim-task.sh 原子认领
  4. 完成后调用 complete-task.sh
  5. Stop Hook 检查 task-pool → 阻止停止
  6. 全部完成 → 允许停止

任务池脚本.claude/agentflow/scripts/):

  • create-pool.sh <name> <tasks-file> — 创建任务池
  • claim-task.sh <worker-id> [agent] — 原子认领
  • complete-task.sh <task-id> [result] — 标记完成
  • release-timeout.sh [seconds] — 释放超时任务
  • pool-status.sh — 查看状态

Read the full file on GitHub · 140 lines

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. 8d ago First seen · 140 lines · 139 tokens per session scan A 1c853f776251

Subscribe to this mod's changes

agentflow is a skill published in the GitHub repository wangjialiang678/claude-omo-agentflow (2 stars, last pushed 6mo ago), licensed MIT. It adds 139 tokens to every session and 1,295 once invoked, about $0.0007 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

systematic-debugging

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

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens