Are you the author? Sign in to claim
Multi-model AI orchestration pipeline as a Claude Code skill: orchestrator + executors + cross-vendor adversarial review
Claude Code skill, который превращает загрузивший его агент в ОРКЕСТРАТОРА конвейера разработки: сам он не пишет код, а разведывает задачу, режет её на независимые куски, пишет брифы для воркеров-исполнителей (EXECUTORS), сам перепроверяет их результаты (перезапускает тесты, читает диффы — не верит отчётам на слово), отправляет результат на ревью модели другого вендора (REVIEWER, read-only), арбитрирует находки ревью и полностью владеет git-операциями (PR/merge/deploy).
Смысл разделения ролей: агент, который одновременно пишет код и сам его оценивает, не видит собственных слепых зон. Кросс-вендорное ревью (например Claude оркеструет → Codex ревьюит, или наоборот) даёт независимую вторую пару глаз без общих слепых зон с исполнителем.
Скопируйте директорию целиком:
# Глобально — доступно во всех проектах
cp -r multi-model-pipeline-skill ~/.claude/skills/multi-model-pipeline
# Или только в конкретном проекте
cp -r multi-model-pipeline-skill <project>/.claude/skills/multi-model-pipeline
После этого Claude Code сам подхватит skill по описанию в SKILL.md — активируется, когда вы
попросите что-то вроде «запусти конвейер», «прогони через воркеров с ревью», «orchestrate with
workers and external review».
codex exec -s read-only), если
оркестрируете Claude'ом. Без второго вендора шаг ревью можно пропускать только для
механически проверяемых изменений (см. SKILL.md, пункт про DEFERRED/skip review) — но тогда
теряется всё преимущество независимой проверки.multi-model-pipeline-skill/
├── SKILL.md # ядро: роли, workflow, принципы (для агента)
├── references/
│ ├── executor-brief-template.md # шаблон брифа для EXECUTOR (заполнить и скопировать)
│ ├── review-brief-template.md # шаблон адверсариального брифа для REVIEWER
│ └── pitfalls.md # известные ловушки конвейера, по одному предложению
└── README.md # этот файл
SKILL.md держит методологию компактной — конкретные шаблоны брифов и список ловушек вынесены в
references/, чтобы агент подгружал их по необходимости, не раздувая основной контекст.
A Claude Code skill that turns the agent that loads it into the ORCHESTRATOR of a development pipeline: it never writes code itself. Instead it scouts the task, slices it into independent units, writes briefs for worker EXECUTORS, independently verifies their results (reruns tests, reads diffs — never trusts a report at face value), sends the result for review by a model from another vendor (REVIEWER, read-only), arbitrates the review findings, and owns all git operations (PR/merge/deploy) end to end.
The point of the role split: an agent that both writes and grades its own work misses its own blind spots. Cross-vendor review (e.g. Claude orchestrates → Codex reviews, or the reverse) gives you a genuinely independent second opinion instead of an echo chamber.
Copy the whole directory:
# Global — available in every project
cp -r multi-model-pipeline-skill ~/.claude/skills/multi-model-pipeline
# Or scoped to one project
cp -r multi-model-pipeline-skill <project>/.claude/skills/multi-model-pipeline
Claude Code picks it up automatically from the description in SKILL.md — it triggers when you
ask something like "run the pipeline", "orchestrate with workers and external review", or
"конвейер".
codex exec -s read-only) if you're orchestrating
with Claude. Without a second vendor, the review step should only be skipped for mechanically
verifiable changes (see the DEFERRED/skip-review note in SKILL.md) — skipping it otherwise
gives up the whole point of independent verification.multi-model-pipeline-skill/
├── SKILL.md # core: roles, workflow, principles (agent-facing)
├── references/
│ ├── executor-brief-template.md # fill-in brief template for EXECUTORS
│ ├── review-brief-template.md # adversarial review brief template for REVIEWER
│ └── pitfalls.md # known pipeline traps, one sentence each
└── README.md # this file
SKILL.md stays concise — concrete brief templates and the pitfalls list live in references/
so the agent loads them on demand instead of bloating its main context.
A tool-agnostic AI-assisted development framework template. Structured workflow (Spec → Plan → Implement → Review) with
CLAUDE.md + PROGRESS.md templates for AI-assisted productivity
Opinionated, agent-native Rails template — the production Rails starter ZAR uses internally, packaged with a CLAUDE.md o
Claude Code governance templates by tech stack : CLAUDE.md, scoped rules, architecture docs, cost control & dev-level ad