frontier-orchestrator

Orchestrates Claude and GPT model workers with context-based routing and cross-family validation gates.

Updated Jul 3, 2026
One-click install
npx skills add https://github.com/alex-jordan547/agent-setup --skill frontier-orchestrator-alex-jordan547
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: frontier-orchestrator
Source: https://github.com/alex-jordan547/agent-setup/tree/main/archive/frontier-orchestrator
Command: npx skills add https://github.com/alex-jordan547/agent-setup --skill frontier-orchestrator-alex-jordan547

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multiple AI models on large coding tasks wastes tokens and quality when tasks are routed by instinct, the orchestrator writes code itself, or the same model family grades its own work. This Skill enforces a disciplined multi-model workflow where an orchestrator delegates pre-measured slices to the cheapest capable worker and a cross-family oracle validates the result. ## Core Features & Use Cases - Role-based model routing: Assigns work across an oracle (GPT-5.5), an orchestrator (Claude Opus 4.8), and skilled or cheap hands (Sonnet 5, gpt-5.4, Haiku 4.5, gpt-5.4-mini, spark) based on measured context-window fit. - Mandatory pre-flight measurement: Requires counting the exact working-set lines before routing, targeting under 75% of a model's context window to avoid mid-task compaction. - Cross-family oracle gates: Validates plans and finished work with a GPT-family reviewer so Claude-coordinated work is never graded by the family that produced it. - Use Case: When refactoring a large codebase, the orchestrator greps and measures the affected files, splits the work into bounded slices, spawns parallel cheap workers for mechanical edits, and calls the oracle once at the end to verify coherence. ## Quick Start Ask the agent to orchestrate a multi-file code change by delegating bounded slices to the cheapest model workers whose context windows fit the measured working set.

Frequently Asked Questions about frontier-orchestrator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route coding tasks across multiple AI models?

Measure the exact working set in lines, estimate tokens at roughly 10 per line, and route to the cheapest model whose context window holds it under 75% utilization. Precise small edits go to spark or haiku, broad sweeps to gpt-5.4-mini, and harder slices to Sonnet 5 or gpt-5.4.

What is a cross-family oracle gate in multi-model orchestration?

A cross-family oracle gate validates Claude-coordinated work using a GPT-family model with its own tools, so the reviewer's blind spots are uncorrelated with the workers'. Gates fire before final validation, after plan creation, on worker conflicts, and before irreversible changes.

Why should the orchestrator model never write code itself?

The orchestrator's context window is reserved as headroom for coordination, so every file edit is delegated to a worker, even trivial one-liners. If a task involves code changes and zero workers were spawned, the orchestration has failed and work must be sliced and delegated.

How do I size tasks to fit a model's context window?

Count lines of the exact files in the worker's brief with wc -l, multiply by about 10 tokens per line, add the brief and expected output, and keep the total under 75% of the model's window. Oversized tasks are split into smaller slices before escalating to a larger model.

What happens when a delegated task is too big for the worker model?

Workers return a too_big, out_of_scope, or mismatch signal instead of compacting silently. The orchestrator then re-measures, splits the slice first, and only escalates to a larger model if the slice is genuinely not splittable.

When should I use unplanned mode versus planned mode?

Unplanned mode is allowed only for genuinely small tasks where the orchestrator maps the surface itself. If exploration passes about 50% of the orchestrator's context window before a plan exists, it must stop and demand a plan built with the user and oracle.