Context
Multiple PRs updated the Replicator scaffold:
What changed
Plural directory paths
- Commands moved from
.opencode/command/ (singular) to .opencode/commands/ (plural)
- Skills moved from
.opencode/skill/ (singular) to .opencode/skills/ (plural)
- Anyone with the old singular paths in their setup has broken references
Skill discoverability fix
What needs updating
- Update any references to
.opencode/command/ → .opencode/commands/ and .opencode/skill/ → .opencode/skills/
- Document what
replicator init actually scaffolds (currently only mentions creating .uf/replicator/ directory)
- Note that the skill
name: field is required for OpenCode skill discovery
- Consider expanding the
replicator init section to list the full directory structure it creates:
.uf/replicator/ — SQLite work tracking DB
.opencode/agents/ — coordinator.md, worker.md, background-worker.md (mode: subagent)
.opencode/commands/ — slash commands (in uf.* namespace per website#220)
.opencode/skills/ — 7 skills with proper name: frontmatter
Affected pages
content/docs/projects/replicator.md — lines 50–52, replicator init section
- Any setup or quickstart guide that references the Replicator scaffold directory structure
Note
The command namespace rename from unprefixed to uf.* is tracked separately in website#220.
Context
Multiple PRs updated the Replicator scaffold:
.opencode/command/→.opencode/commands/(plural).opencode/skill/→.opencode/skills/(plural)name:field to 7 scaffolded skill templatesWhat changed
Plural directory paths
.opencode/command/(singular) to.opencode/commands/(plural).opencode/skill/(singular) to.opencode/skills/(plural)Skill discoverability fix
replicator initwere missing thename:YAML frontmatter fieldskilltool requires bothnameanddescriptionto register a skillname, skills like/review-council,/review-pr, and/unleashfailed with "Skill not found"What needs updating
.opencode/command/→.opencode/commands/and.opencode/skill/→.opencode/skills/replicator initactually scaffolds (currently only mentions creating.uf/replicator/directory)name:field is required for OpenCode skill discoveryreplicator initsection to list the full directory structure it creates:.uf/replicator/— SQLite work tracking DB.opencode/agents/— coordinator.md, worker.md, background-worker.md (mode: subagent).opencode/commands/— slash commands (inuf.*namespace per website#220).opencode/skills/— 7 skills with propername:frontmatterAffected pages
content/docs/projects/replicator.md— lines 50–52,replicator initsectionNote
The command namespace rename from unprefixed to
uf.*is tracked separately in website#220.