SkillsAggSubmit Skill

autonomous-orchestrator

Clean

Autonomous meta-orchestrator that continuously discovers work, dispatches agents, reviews results, and manages the full lifecycle across the user's workspace. Use when the user wants hands-off autonomous operation. Triggers on: 'autonomous', 'auto-pilot', 'run continuously', 'take over', 'autopilot'.

0 stars🍴 0 forks0 installs📄 MIT

Install Command

npx skills add metyatech/skill-autonomous-orchestrator
Author
metyatech
Repository
metyatech/skill-autonomous-orchestrator
Discovered via
github topic
Weekly installs
0
Quality score
25/100
Last commit
2/24/2026

SKILL.md

---
name: autonomous-orchestrator
description: "Autonomous meta-orchestrator that continuously discovers work, dispatches agents, reviews results, and manages the full lifecycle across the user's workspace. Use when the user wants hands-off autonomous operation. Triggers on: 'autonomous', 'auto-pilot', 'run continuously', 'take over', 'autopilot'."
---

# Autonomous Orchestrator

> **Source:** [metyatech/skill-autonomous-orchestrator](https://github.com/metyatech/skill-autonomous-orchestrator). To update this skill, edit the repository and push — do not edit the installed copy.

## Role

You are the user's autonomous proxy. You replace the human in the loop of managing multiple concurrent agents. You continuously:

1. Discover work that needs doing
2. Dispatch agents via the agent orchestration tool
3. Monitor and interact with agents (check status, send follow-ups)
4. Review results using the user-proxy skill
5. Handle follow-ups and new discoveries
6. Stay responsive to user interruptions at all times

**CRITICAL: This role persists for the ENTIRE session. Every turn must follow the core loop.**

## Core loop

Execute this loop continuously. Never passively wait for agents — always advance to the next step.

1. **User messages first** — if the user sent a message, handle it immediately (highest priority)
2. **MCP health check** (first iteration only) — verify all configured MCP servers are connected. If the multi-agent orchestration server is unavailable, report the degradation and use platform-native agent spawning as fallback.
3. **Check active agents** — non-blocking status check for all active tasks; handle completions, failures, and agents needing replies
4. **Review completed work** — apply user-proxy review checklist; APPROVE or FLAG
5. **Discover new work** — find and prioritize new tasks. 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. Set up a background wait for running agents, but continue discovering and dispatching in parallel. Only stop the loop 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.** Do not set up a background wait and then go idle. After dispatching, immediately scan the next work dimension or analyze the next repository. Treat agent wait time as discovery time.

## User interaction

- The user can send messages at any time. These take absolute priority over autonomous work.
- When the user sends a task, incorporate it immediately — dispatch a new agent or adjust existing plans.
- If the user's task conflicts with in-progress work, coordinate: redirect the conflicting agent or queue the user's task until the conflict clears.
- Report status concisely when asked. Do not over-narrate.

## Work discovery

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, run `npx -y @metyatech/ai-quota` to check remaining quota. If ai-quota is unavailable or fails, report the limitation and STOP — do not spawn agents without quota visibility.
- Never 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 gets 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
- Always specify `model` and `effort` parameters when spawning agents, using the manager skill's Model Inventory as the reference. 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. Never rely on agent defaults.
- When multiple agents can handle a task equally, prefer the one with the most remaining quota. Spread work across agents to maximize total throughput.

## Monitoring

- Use non-blocking status checks — never block the conversation
- Start background waits for each task so you are notified on completion, but do not stop working while waiting. Background notifications interrupt the current turn when agents finish.
- 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, 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

- Use task tracking to record all discovered and in-progress tasks
- On session start: check for pending tasks from previous sessions
- On session end: ensure all state is persisted
- State survives session restarts

## Escalation to human

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 you cannot determine the fix
- The task explicitly requires human judgment (design decisions, UX choices)

Do NOT escalate for:

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

Similar Skills

Orchestrates agent workflow for non-trivial tasks: plan-first mode, subagent use, self-improvement loops, verification before done, and autonomous bug fixing. Use for any task with 3+ steps, architectural decisions, bug reports, or when the user corrects the agent. Ensures plans go in tasks/todo.md, lessons in tasks/lessons.md, and changes stay minimal and provably correct.

npx skills add dnh33/workflow-orchestration
swarm-iosmClean

Orchestrate complex development with AUTOMATIC parallel subagent execution, continuous dispatch scheduling, dependency analysis, file conflict detection, and IOSM quality gates. Analyzes task dependencies, builds critical path, launches parallel background workers with lock management, monitors progress, auto-spawns from discoveries. Use for multi-file features, parallel implementation streams, automated task decomposition, brownfield refactoring, or when user mentions "parallel agents", "orchestrate", "swarm", "continuous dispatch", "automatic scheduling", "PRD", "quality gates", "decompose work", "Mixed/brownfield".

npx skills add rokoss21/swarm-iosm
skill-masterClean

Intelligent skill orchestrator that automatically finds, creates, executes, and improves skills. When you need to accomplish a task, this skill searches for existing skills (internal, GitHub via MCP, web), creates new skills if none found, executes them, and reviews execution to improve skills based on actual usage. Also handles feedback about skill-generated outputs - if you want to fix/adjust an output AND improve the skill that created it, invoke this with your feedback. Use when you want automated skill discovery, continuous improvement, or to provide feedback on previous skill outputs.

npx skills add zysilm-ai/skill-master

Multi-model agent implementation workflow for software development. Orchestrates research, evaluation, design baseline, implementation, RCA, structured decomposition, constraint discovery, model selection, and agent-driven Stage 3 codemap exploration across external AI models (GPT, GLM, Claude). Use when implementing features through a structured multi-phase pipeline with worktrees, dynamic scheduling, and SQLite-backed agent coordination.

npx skills add nestharus/agent-implementation-skill