using-orchestrator

Solid

Use this skill when dispatching implicit slash-command intent from the user's first message. Inspects the user's first message for implicit slash-command intent and dispatches to the highest-confidence matching entry-point skill via the Skill tool. Only active when `auto-skill-dispatch: true` in Session Config. Silent no-op otherwise.

Code & Development 48 stars 4 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 90/100

Stars 20%
56
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Using-Orchestrator (Auto-Skill Dispatch) > Project-instruction file resolution: `CLAUDE.md` and `AGENTS.md` (Codex CLI) are transparent aliases — see [skills/_shared/instruction-file-resolution.md](../_shared/instruction-file-resolution.md). Wherever this skill mentions `CLAUDE.md`, the alias rule applies. > Internal dispatch meta-skill. Never invoked directly by the user. Called by entry-point > skills once after the bootstrap gate opens, before their Phase 1, when > `auto-skill-dispatch: true` is set in Session Config. ## When This Skill Runs This skill is **opt-in and off by default**. Check the Session Config flag before any action: ```yaml # CLAUDE.md (or AGENTS.md on Codex CLI) — Session Config default auto-skill-dispatch: false ``` When the flag is `false` (or absent), this skill MUST return immediately without reading any messages, without logging, and without side effects. The calling skill continues to its own Phase 1 as if this skill was never invoked. When the flag is `true`, proceed with the dispatch algorithm below. ## Default Behavior When `auto-skill-dispatch: false`: **do nothing. Return silently.** This is the shipped default. Zero behavior change for all existing call sites. ## How Dispatch Works 1. **Read the user's first message** from the current conversation context. "First message" is the earliest human turn in the session — the message that triggered the skill chain. 2. **Run the phrase map** (see section below) against the message te...

Details

Author
Kanevry
Repository
Kanevry/session-orchestrator
Created
1 months ago
Last Updated
yesterday
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

dispatcher

Use this skill when running a Taniwha build from the main Claude Code session. The skill turns the main session into a thin, mechanical executor that follows instructions from ephemeral orchestrator subagents. Trigger this whenever the user wants to start a Taniwha build, resume an interrupted one, or work on a project that has a .taniwha/ directory. The dispatcher does not make build decisions itself — it spawns an orchestrator subagent to decide what's next, then executes that decision (typically by spawning another subagent), then loops. Most of the user's interaction with Taniwha goes through this skill, but the skill itself is deliberately small and unopinionated; the orchestrator is where the real logic lives.

5 Updated today
taniwhaai
AI & Automation Listed

using-claudehut

ClaudeHut workflow + plugin-skill discovery contract for subagents. Preloaded into every dispatch-eligible agent via `skills:` frontmatter so the subagent receives, at startup, (a) the non-negotiable skill-invocation discipline and (b) the catalog of all plugin skills with trigger excerpts. Lets the subagent decide — natively, no hook injection — which skill(s) to invoke when its task touches a domain its preloaded skills do not cover (e.g. builder hitting Kafka, mapping, JPA, WebFlux, ...).

1 Updated yesterday
taipt1504
AI & Automation Listed

orchestrator

Use this skill when running as an ephemeral orchestrator subagent for a Taniwha project. The skill instructs the agent to read project state from disk, decide the single next action the dispatcher should take, write that decision back to disk, and exit. Trigger this whenever the dispatcher has invoked an orchestrator subagent — i.e., when the agent is being asked "what should happen next in this Taniwha build?" The skill assumes filesystem state at .taniwha/ following the Taniwha state layout, and assumes the agent will not run again with the same context (every invocation is fresh). This skill is what makes the build progress; without it, no decisions get made.

5 Updated today
taniwhaai
AI & Automation Solid

docs-orchestrator

Use this skill when orchestrating documentation generation and updates within a session. Maps session scope to audience-specific docs tasks (User / Dev / Vault), dispatches the docs-writer agent with source-grounded prompts, and reports coverage gaps to session-end. Gated on `docs-orchestrator.enabled: true` in Session Config. Zero overhead when disabled.

48 Updated yesterday
Kanevry
AI & Automation Listed

orchestrate

Activate multi-agent orchestration mode

5 Updated today
mazenyassergithub