agentflow-orchestrator — for Claude Code agentflow-orchestrator, 20_agentflow, community, for Claude Code, ide skills, @agent, Orchestrator, Lightweight, Routing, Removes

v1.0.0

关于此技能

适用场景: orchestrator — lightweight routing layer. 本地化技能摘要: Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. Claude Code, Cursor, and Windsurf workflows.

功能特性

Orchestrator — Lightweight Routing Layer
Removes the human as the routing bottleneck between triage and execution.
The orchestrator is a phase, not a daemon — it runs at defined trigger points inside the
Autopilot Cycle Start
After reading next [ ] item, before DOR check:

# 核心主题

cordsjon cordsjon
[1]
[0]
更新于: 3/17/2026

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

适用场景: orchestrator — lightweight routing layer. 本地化技能摘要: Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. Claude Code, Cursor, and Windsurf workflows.

核心价值

推荐说明: agentflow-orchestrator helps agents orchestrator — lightweight routing layer. Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. Claude Code, Cursor, and Windsurf workflows.

适用 Agent 类型

适用场景: orchestrator — lightweight routing layer.

赋予的主要能力 · agentflow-orchestrator

适用任务: Orchestrator — Lightweight Routing Layer
适用任务: Removes the human as the routing bottleneck between triage and execution
适用任务: The orchestrator is a phase, not a daemon — it runs at defined trigger points inside the

! 使用限制与门槛

  • 限制说明: Requires repository-specific context from the skill documentation
  • 限制说明: Works best when the underlying tools and dependencies are already configured

关于来源内容

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

agentflow-orchestrator 是什么?

适用场景: orchestrator — lightweight routing layer. 本地化技能摘要: Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. Claude Code, Cursor, and Windsurf workflows.

如何安装 agentflow-orchestrator?

运行命令:npx killer-skills add cordsjon/20_agentflow。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

agentflow-orchestrator 适用于哪些场景?

典型场景包括:适用任务: Orchestrator — Lightweight Routing Layer、适用任务: Removes the human as the routing bottleneck between triage and execution、适用任务: The orchestrator is a phase, not a daemon — it runs at defined trigger points inside the。

agentflow-orchestrator 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

agentflow-orchestrator 有哪些限制?

限制说明: Requires repository-specific context from the skill documentation;限制说明: Works best when the underlying tools and dependencies are already configured。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add cordsjon/20_agentflow。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    agentflow-orchestrator 已启用,可立即在当前项目中调用。

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

Upstream Repository Material

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

agentflow-orchestrator

安装 agentflow-orchestrator,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。

SKILL.md
Readonly
Upstream Repository Material
The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Orchestrator — Lightweight Routing Layer

Removes the human as the routing bottleneck between triage and execution. The orchestrator is a phase, not a daemon — it runs at defined trigger points inside the autopilot loop.

When It Runs

1. Autopilot Cycle Start

After reading next [ ] item, before DOR check:

  1. Stall check — is the current/last item stuck?
  2. Assignment check — does item have @agent? If not, route it
  3. Unblock scan — did a recently completed item satisfy any needs: dependency?
  4. Context preload — assemble file refs, risk flags, prior art into _Context:_ line

2. Task Completion

After moving item to DONE-Today:

  1. Dependency cascade — check BACKLOG for items with needs: <completed_item>. If found and Ready, suggest queuing
  2. Stall reset — clear stall:N counter
  3. Planning trigger — if queue has <= 1 unchecked item, suggest planning round

Routing Scoring

For each registered agent:

score = sum(keyword_match(task_keywords, agent.strengths))
      + context_bonus(task_files, agent.context_access)    (+2)
      - constraint_penalty(task_requirements, agent.constraints)  (-10)

Confidence Thresholds

  • > 0.7 — auto-route to best agent
  • 0.3 - 0.7 — suggest agent, human confirms
  • < 0.3 — tag as @unrouted, skip to next routable item

Stall Detection

A task is stalled when:

  1. Time-based: no activity file changes for > 10min (30min for requirements sessions)
  2. Error-loop: same error pattern 3+ times in console tail
  3. Explicit: agent writes STALLED: <reason>

Escalation Ladder

LevelTriggerAction
stall:1First detectionLog warning, increment counter
stall:2Second consecutive checkWrite stall warning
stall:3Third consecutive checkPause autopilot, escalate to human

On multi-agent setup: if another agent has capability, suggest re-routing.

Context Preloading

The orchestrator assembles:

  1. File references — files mentioned in task description or spec
  2. Related threads — if task originated from a message, include thread
  3. Prior art — related completed items from DONE-Today or archives
  4. Risk flags — if task touches a known risk, surface the risk entry

Result Validation

After execution, before commit:

  1. Greenlight — project test suite must pass
  2. Known patterns scan — check diff against anti-patterns
  3. Constraint check — verify no project constraint violations

See routing.md for detailed scoring examples.

相关技能

寻找 agentflow-orchestrator 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

本地化技能摘要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

本地化技能摘要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

本地化技能摘要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. Claude Code, Cursor, and Windsurf workflows.

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

本地化技能摘要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. Claude Code, Cursor, and Windsurf workflows.

98.6k
0
开发者工具