Back to list
benbrastmckie

skill-orchestrator

by benbrastmckie

NeoVim configuration optimized for writing in LaTeX with AI integration for Avante, Lectic, and Claude-Code

432🍴 463📅 Jan 15, 2026

SKILL.md


name: skill-orchestrator description: Route commands to appropriate workflows based on task language and status. Invoke when executing /task, /research, /plan, /implement commands. allowed-tools: Read, Glob, Grep, Task context:

  • core/orchestration/routing.md
  • core/orchestration/delegation.md
  • core/orchestration/state-lookup.md

Orchestrator Skill

Central routing intelligence for the task management system.

Trigger Conditions

This skill activates when:

  • A slash command needs language-based routing
  • Task context needs to be gathered before delegation
  • Multi-step workflows require coordination

Core Responsibilities

1. Task Lookup

Given a task number, retrieve full context:

1. Read .claude/specs/state.json
2. Find task by project_number
3. Extract: language, status, project_name, description, priority
4. Read TODO.md for additional context if needed

2. Language-Based Routing

Route to appropriate skill based on task language:

LanguageResearch SkillImplementation Skill
luaskill-neovim-researchskill-neovim-implementation
generalskill-researcherskill-implementer
metaskill-researcherskill-implementer
markdownskill-researcherskill-implementer

3. Status Validation

Before routing, validate task status allows the operation:

OperationAllowed Statuses
researchnot_started, planned, partial, blocked
plannot_started, researched, partial
implementplanned, implementing, partial, researched
reviseplanned, implementing, partial, blocked

4. Context Preparation

Prepare context package for delegated skill:

{
  "task_number": 10,
  "task_name": "task_slug",
  "language": "lua",
  "status": "planned",
  "description": "Full task description",
  "artifacts": {
    "research": ["path/to/research.md"],
    "plan": "path/to/plan.md"
  },
  "focus_prompt": "Optional user-provided focus"
}

Execution Flow

1. Receive command context (task number, operation type)
2. Lookup task in state.json
3. Validate status for operation
4. Determine target skill by language
5. Prepare context package
6. Invoke target skill via Task tool
7. Receive and validate result
8. Return result to caller

Neovim Configuration Routing

Lua Tasks

  • Research: skill-neovim-research

    • Neovim API exploration
    • Plugin documentation research
    • Lua pattern discovery
  • Implementation: skill-neovim-implementation

    • TDD workflow with busted/plenary
    • lazy.nvim plugin patterns
    • Module structure creation

General Tasks

  • Research: skill-researcher

    • Web search
    • Documentation exploration
  • Implementation: skill-implementer

    • Direct code changes
    • Non-Lua modifications

Language Detection Keywords

Keywords in DescriptionDetected Language
lua, neovim, nvim, plugin, lazy, telescope, lsp, configlua
agent, command, skill, meta, orchestratormeta
(default)general

Return Format

{
  "status": "completed|partial|failed",
  "routed_to": "skill-name",
  "task_number": 259,
  "result": {
    "artifacts": [],
    "summary": "..."
  }
}

Error Handling

  • Task not found: Return clear error with suggestions
  • Invalid status: Return error with current status and allowed operations
  • Skill invocation failure: Return partial result with error details

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

+5
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon