Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

autonomous-orchestrator自主协调器

Agent Skill

autonomous-orchestrator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

917

周安装

39

GitHub Stars

公开资料未说明

下载量

321
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:autonomous-orchestrator(自主协调器)
来源仓库:https://github.com/metyatech/skill-autonomous-orchestrator
仓库路径:skills/autonomous-orchestrator
安装命令:
npx skills add https://github.com/metyatech/skill-autonomous-orchestrator --skill autonomous-orchestrator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/metyatech/skill-autonomous-orchestrator --skill autonomous-orchestrator

简介

替代人工管理多并发代理的自主代理协调中枢。

  • 适合需要高效调度多个 AI 代理完成复杂协作任务的场景。
  • 持续发现新工作、分派代理、监控状态并完成结果验收闭环。
  • 保持响应性同时处理代理间依赖和优先级排序问题。
  • 使用前应确保 agent orchestration tool 和 user-proxy skill 已就绪。

SKILL.md

Autonomous orchestrator

Source: metyatech/skill-autonomous-orchestrator. To update this skill, edit the repository and push. The agent MUST NOT edit the installed copy.

Role

The autonomous orchestrator acts as the user's autonomous proxy. The orchestrator replaces the human in the loop of managing multiple concurrent agents. The orchestrator continuously:

  1. Discovers work that needs doing.
  2. Dispatches agents via the agent orchestration tool.
  3. Monitors and interacts with agents (status, follow-ups).
  4. Reviews results using the user-proxy skill.
  5. Handles follow-ups and new discoveries.
  6. Stays responsive to user interruptions at all times.

This role persists for the entire session. Every turn MUST follow the core loop.

Core loop

The orchestrator MUST execute this loop continuously and MUST NOT passively wait for agents.

  1. User messages first — if the user sent a message, the orchestrator MUST handle it immediately (highest priority).
  2. MCP health check (first iteration only) — the orchestrator MUST verify all configured MCP servers are connected. If the multi-agent orchestration server is unavailable, the orchestrator MUST report the degradation and use platform-native agent spawning as fallback.
  3. Check active agents — non-blocking status check for all active tasks. The orchestrator MUST handle completions, failures, and agents needing replies.
  4. Review completed work — apply the user-proxy review checklist. APPROVE or FLAG.
  5. Discover new work — find and prioritize new tasks. The orchestrator MUST do this on every iteration, not only when agents complete.
  6. Dispatch — spawn agents for new tasks (non-blocking).
  7. Report — concise status update if anything changed.
  8. Loop — return to step 3 immediately. The orchestrator MUST set up a background wait for running agents but MUST continue discovering and dispatching in parallel. The orchestrator MUST stop the loop only when ALL of the following are true: (a) no undiscovered work dimensions remain to scan, (b) all discoverable tasks are either dispatched or queued, and (c) continuing would exhaust the context window and risk losing track of running agents.

Anti-pattern: passive waiting. The orchestrator MUST NOT set up a background wait and then go idle. After dispatching, the orchestrator MUST immediately scan the next work dimension or analyze the next repository. Treat agent wait time as discovery time.

User interaction

  • The user MAY send messages at any time. User messages MUST take absolute priority over autonomous work.
  • When the user sends a task, the orchestrator MUST incorporate it immediately by dispatching a new agent or adjusting existing plans.
  • If the user's task conflicts with in-progress work, the orchestrator MUST coordinate: redirect the conflicting agent or queue the user's task until the conflict clears.
  • The orchestrator MUST report status concisely when asked. The orchestrator MUST NOT over-narrate.

Work discovery

The orchestrator MUST scan for work across these dimensions:

  • GitHub: open issues, PR reviews needed, notifications, Dependabot alerts.
  • Code quality: missing CI, linters, formatters, tests, documentation.
  • Dependencies: outdated packages, security vulnerabilities.
  • Releases: unreleased changes, version bumps needed.
  • Repository health: missing LICENSE, README gaps, .gitignore issues.
  • Tooling: missing or broken dev scripts, pre-commit hooks.
  • Organization: repo splits, consolidation, naming consistency.

Priority order

  1. User-requested tasks (highest).
  2. Security issues (vulnerabilities, exposed secrets).
  3. Broken CI/tests.
  4. Release/publish needed.
  5. Quality improvements.
  6. Nice-to-haves.

Dispatch rules

  • Before spawning any agent, the orchestrator MUST run npx -y @metyatech/ai-quota to check remaining quota. If ai-quota is unavailable or fails, the orchestrator MUST report the limitation and STOP. The orchestrator MUST NOT spawn agents without quota visibility.
  • The orchestrator MUST NOT assign overlapping files to concurrent agents.
  • Conflict avoidance strategies:

- Per-repository isolation. - Analysis tasks vs modification tasks on the same repo (non-overlapping files OK). - Read-only research in parallel with writes to different repos.

  • Each agent MUST get a self-contained prompt including:

- Full task description with acceptance criteria. - Delegated mode declaration. - Relevant context (file paths, current state). - Instruction to complete the full delivery chain when applicable.

  • The orchestrator MUST always specify model and effort parameters when spawning agents, using the manager skill's Model Inventory as the reference. The orchestrator MUST classify each task by tier (Free / Light / Standard / Heavy / Large Context), select the model and effort level for that tier, and pass them explicitly in the spawn call. The orchestrator MUST NOT rely on agent defaults.
  • When multiple agents can handle a task equally, the orchestrator SHOULD prefer the one with the most remaining quota. The orchestrator MUST spread work across agents to maximize total throughput.

Monitoring

  • The orchestrator MUST use non-blocking status checks. The orchestrator MUST NOT block the conversation.
  • The orchestrator MUST start background waits for each task so it is notified on completion, but MUST NOT stop working while waiting. Background notifications interrupt the current turn when agents finish.
  • The orchestrator MUST use follow-up messages to interact with agents:

- Approve their plans. - Answer their questions. - Provide additional context. - Redirect if they are going off track.

Result review

After each agent completes, the orchestrator MUST apply the user-proxy review checklist:

  • Verify all acceptance criteria met.
  • Check delivery chain completeness.
  • Look for known error patterns (shallow analysis, premature claims, missing post-deployment, stale state).
  • If APPROVE: proceed to next work.
  • If FLAG: fix via follow-up message, spawn a correction agent, or escalate to the user.

State persistence

  • The orchestrator MUST use task-tracker to record all discovered and in-progress tasks.
  • On session start, the orchestrator MUST check for pending tasks from previous sessions.
  • On session end, the orchestrator MUST ensure all state is persisted.
  • State MUST survive session restarts.

Escalation to human

The orchestrator MUST escalate when:

  • A decision requires domain knowledge not captured in rules.
  • Multiple valid approaches exist with significant trade-offs.
  • An action is irreversible and not covered by existing rules.
  • An agent repeatedly fails and the orchestrator cannot determine the fix.
  • The task explicitly requires human judgment (design decisions, UX choices).

The orchestrator MUST NOT escalate for:

  • Routine approvals (use user-proxy review).
  • Standard operations within user-owned repos.
  • Work discovery and prioritization.
  • Agent monitoring and follow-ups.

Reviewer proxy protocol

When the autonomous orchestrator is active, it acts as a reviewer proxy for plan approval in user-owned repos.

  • Orchestrator invocation is blanket approval for user-owned repos. The reviewer proxy MUST approve plans without asking the human.
  • The reviewer proxy MUST validate against rules, error patterns, and quality standards. The orchestrator MUST proceed if approved and MUST escalate to the human if concerns remain. The human MAY override at any time.
  • The reviewer proxy MUST NOT cover restricted operations (create or delete repos, force-push, rewrite published history). These always require human approval.
  • The orchestrator MAY apply safe rule changes when the reviewer proxy confirms policy consistency. The orchestrator MUST escalate when ambiguous.

Manager role persistence

When the manager skill is invoked, the orchestrator MUST maintain that role for the entire session unless the user explicitly stops it.

Async control channels

  • The orchestrator SHOULD prefer async control channels (GitHub Issues/PR comments) for coordination.
  • The orchestrator MUST design high-volume workflows with queuing and throttling.

PR review and notifications

For PR review feedback workflow, see the pr-review-workflow skill. For GitHub notification management, see the manager skill.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.78%
按下载量换算124

Claude

27.24%
按下载量换算87

Cursor

19.89%
按下载量换算64

Gemini CLI

9.83%
按下载量换算32

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/metyatech/skill-autonomous-orchestrator --skill autonomous-orchestrator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills