| name | lw-orchestrator |
| description | Coordinator skill for the reusable LLM Wiki framework. Selects and sequences the appropriate lifecycle skills for initializing, cloning from a Git URL into raw/upstream, ingesting, compiling, linting, reflecting, syncing from a repo, querying, and output generation. Use this as the top-level skill when an agent needs to build, maintain, or answer from a wiki for an arbitrary project. |
| trigger | /lw-orchestrator |
LLM Wiki Orchestrator
Use this as the top-level coordinator skill when an agent is asked to build, maintain, or answer from a wiki for an arbitrary project or code repository.
Purpose
This skill does not replace the individual skills. It tells the agent which specialized skill to use and in what order.
Canonical workspace contract
Every wiki workspace should use:
Optional:
outputs/ for non-canonical artifacts when the workspace needs exports, reports, slides, charts, or automation logs
Every wiki workspace should also define:
.llm-wiki/profile.json
- an active project profile markdown file
- workspace instructions such as
AGENTS.md and optionally CLAUDE.md, SOUL.md, or IDENTITY.md
Which skill to use
Initialize a new wiki workspace
Use:
lw-init
- choose or create a project profile
- add workspace instructions from the templates
Ingest new source material
Use:
lw-ingest
lw-compile
lw-lint
lw-reflect when the change is broad or synthesis-worthy
Sync from a repo
Use:
lw-sync-repo
lw-compile
lw-lint
lw-reflect when needed
Build or refresh from a Git URL (no existing local checkout)
Use when the user supplies only a remote URL (or the workspace mirror is missing).
lw-init if the workspace layout does not exist yet
lw-clone-repo — clone into raw/upstream, bind repo_sync in the profile and manifest
lw-sync-repo
lw-compile
lw-lint
lw-reflect when needed
Answer questions from the wiki
Use:
lw-ask
lw-output only when the user wants a non-canonical artifact/export rather than a canonical wiki page
Produce durable outputs
Use:
lw-ask if discovery is needed first
lw-output
Repair or audit the wiki
Use:
lw-lint
lw-reflect
lw-merge when duplicates or overlap should be consolidated
Agent rules
- Read
wiki/SCHEMA.md, wiki/index.md, and recent wiki/log.md before major work.
- Use the active profile to decide authority ranking, taxonomy, watched paths, and drift rules.
- Do not write compiled knowledge outside
wiki/.
- Do not bypass
raw/ and manifest state for new source ingestion.
- Keep contradiction handling explicit.
- For repo-backed wikis, do not mutate the source repo unless the user explicitly asks.
- Treat
outputs/ as non-canonical; promote durable knowledge from outputs into wiki/ during maintenance when needed.