Skip to main content
Compendium / AI Collaboration / Composition / Orchestrator Pip
#645

Orchestrator Pip

A small badge that marks an agent as the orchestrator of a composed run.

STABLE CO
#badge #real-content #dark-mode-tested #responsive
Live

// run · RUN-118

orchestrator

Coordinates dispatch, collects results, decides termination. Exactly one per run.

Spec

Intent

In a multi-agent run there is exactly one orchestrator. This pip is the visual claim — a small, ink-on-co marker that distinguishes the coordinating role from the specialists it dispatches.

Acceptance Criteria

  • [ ] Pill with co-pillar fill and ink text
  • [ ] Star or asterisk glyph as the orchestrator mark
  • [ ] Label "ORCHESTRATOR" in tracked uppercase
  • [ ] Negative: does NOT scale with content (fixed pill)

Constraints

  • Pure markup
  • Theme-aware via tokens
// orchestrator-pip.astro
---
import type { CompendiumMeta } from '../../../data/types';

export const meta: CompendiumMeta = {
  id: 645,
  slug: 'orchestrator-pip',
  name: 'Orchestrator Pip',
  category: 'ai-collaboration',
  subcategory: 'composition',
  pillar: 'co',
  description: 'A small badge that marks an agent as the orchestrator of a composed run.',
  spec: `## Intent
In a multi-agent run there is exactly one orchestrator. This pip is the visual claim — a small, ink-on-co marker that distinguishes the coordinating role from the specialists it dispatches.

## Acceptance Criteria
- [ ] Pill with co-pillar fill and ink text
- [ ] Star or asterisk glyph as the orchestrator mark
- [ ] Label "ORCHESTRATOR" in tracked uppercase
- [ ] Negative: does NOT scale with content (fixed pill)

## Constraints
- Pure markup
- Theme-aware via tokens`,
  tags: ['badge', 'real-content', 'dark-mode-tested', 'responsive'],
  status: 'stable',
  health: { ics: 86, a11y: 'aa', themed: true, animated: false },
};
---

<div data-this-component class="w-full bg-paper text-black border-4 border-black p-4 overflow-hidden">
  <p class="font-mono text-[10px] uppercase tracking-widest opacity-60 mb-3">// run · RUN-118</p>
  <div class="inline-flex items-center gap-2 px-3 py-1.5 border-4 border-black bg-co text-black">
    <span aria-hidden="true" class="font-black text-[14px] leading-none">&#9733;</span>
    <span class="font-black text-[10px] uppercase tracking-widest">orchestrator</span>
  </div>
  <p class="mt-3 text-[11px] leading-snug opacity-80">
    Coordinates dispatch, collects results, decides termination. Exactly one per run.
  </p>
</div>