tlor-initlisted
Install: claude install-skill twjohnwu/tlor-orchestration
# /tlor-init — Orchestration Framework Setup
Initialize or upgrade the tlor-orchestration orchestration framework. Installs agent
roles, dispatch rules, CLAUDE.md/AGENTS.md routing, and optional guard hooks.
## Workflow
### Step 1: Detect existing installation
Scan for existing tlor-orchestration files:
```bash
# Check common locations for existing agents
for dir in ~/.claude/agents .claude/agents agents; do
if [ -d "$dir" ] && ls "$dir"/rohirrim-outrider.md 2>/dev/null; then
echo "Found existing installation at: $dir"
fi
done
```
If found, compare `version:` frontmatter in each installed file against the
bundled versions in the plugin. List any files with version differences:
| File | Installed | Bundled | Action needed |
|------|-----------|---------|---------------|
| (name) | (local ver) | (plugin ver) | update/skip |
This version comparison is orientation only — a quick heads-up for what's
likely to change. The authoritative per-file decision is Step 3's `cmp -s`
byte comparison, not this version-string diff (a version bump with no
content change, or a hand-edit with no version bump, both fall through to
whatever Step 3 actually finds).
### Step 2: Choose installation level
Ask the user which installation level to use:
- **User level** (`~/.claude/`): agents at `~/.claude/agents/`, rules at
`~/.claude/rules/`, CLAUDE.md at user root — available to ALL projects
- **Project level** (`.claude/`): agents at `.claude/agents/`, rules at
`.claude/rules/`,