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

v1.0.0

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need orchestrator — lightweight routing layer. Lokalisierte Zusammenfassung: Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Funktionen

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:

# Core Topics

cordsjon cordsjon
[1]
[0]
Updated: 3/17/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Geeigneter Einsatz: Ideal for AI agents that need orchestrator — lightweight routing layer. Lokalisierte Zusammenfassung: Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Warum diese Fähigkeit verwenden

Empfehlung: agentflow-orchestrator helps agents orchestrator — lightweight routing layer. Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Am besten geeignet für

Geeigneter Einsatz: Ideal for AI agents that need orchestrator — lightweight routing layer.

Handlungsfähige Anwendungsfälle for agentflow-orchestrator

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

! Sicherheit & Einschränkungen

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

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is agentflow-orchestrator?

Geeigneter Einsatz: Ideal for AI agents that need orchestrator — lightweight routing layer. Lokalisierte Zusammenfassung: Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install agentflow-orchestrator?

Run the command: npx killer-skills add cordsjon/20_agentflow. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for agentflow-orchestrator?

Key use cases include: Anwendungsfall: Applying Orchestrator — Lightweight Routing Layer, Anwendungsfall: Applying Removes the human as the routing bottleneck between triage and execution, Anwendungsfall: Applying The orchestrator is a phase , not a daemon — it runs at defined trigger points inside the.

Which IDEs are compatible with agentflow-orchestrator?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for agentflow-orchestrator?

Einschraenkung: Requires repository-specific context from the skill documentation. Einschraenkung: Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add cordsjon/20_agentflow. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use agentflow-orchestrator immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

agentflow-orchestrator

Lokalisierte Zusammenfassung: Route tasks to agents using capability scoring, detect stalls, and manage dependency cascades. This AI agent skill supports

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

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.

Verwandte Fähigkeiten

Looking for an alternative to agentflow-orchestrator or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: 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. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: 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. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: 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. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler