with one click
build-skill
Create or update a skill, agent, and reference file
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create or update a skill, agent, and reference file
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Schema and rules for editing AI instructions
Check character counts and limits for Voyage World config files. Use when checking how much space is used, before adding large content, or when approaching size limits.
Schema and rules for creating locations
Schema and rules for editing settings
Schema and rules for creating traits
Schema and rules for creating triggers
| name | build-skill |
| description | Create or update a skill, agent, and reference file |
| context | fork |
| agent | build-skill |
Create skills for editing tabs/*.json config files.
.claude/
├── skills/{name}/
│ ├── SKILL.md # Curated rules and formats
│ └── references/
│ └── {name}-reference.md # Complete schema
└── agents/{name}.md # Agent that uses the skill
---
name: {name}
description: Schema and rules for creating {plural}
context: fork
agent: {name}
---
# {Title}
Edit `tabs/{name}.json`.
## Required Fields
| Field | Requirement |
|-------|-------------|
| `field` | What to put here |
## Conditional Fields
| Field | When to Include |
|-------|-----------------|
| `field` | Only when X |
## Never Include
Omit these fields (auto-set or unused):
- `field1`, `field2`, `field3`
## {fieldName} Format
{Brief description of structure}
Format: "{template with [placeholders]}"
## Schema
\`\`\`typescript
interface {Type} {
field: type
}
\`\`\`
## Reference
For detailed documentation, see [{name}-reference.md](references/{name}-reference.md).
---
name: {name}
description: |
Use this agent when the user wants to add or edit {plural}.
model: haiku
permissionMode: bypassPermissions
skills:
- {name}
---
You create and edit {plural} in `tabs/{name}.json`.
## Chaining
If `{cross-reference}` doesn't exist in `tabs/{other}.json`, spawn **{other}** agent in parallel.
# {Title} Reference
Complete documentation for `tabs/{name}.json`.
## Schema
\`\`\`typescript
interface {Type} {
field: type // ✅ Description
field?: type // ✅ Description with cross-ref to {other}.json
field?: type // ⚠️ Calculated from X if undefined
field: type // ❌ Always set to X
}
\`\`\`
### Legend
- ✅ **Predefine-able**: Can be set in config, preserved via spread
- ⚠️ **Calculated default**: Has fallback logic if not predefined
- ❌ **Always overwritten**: Set by initialization regardless of what exists in config
## {Related Schema if needed}
\`\`\`typescript
interface {RelatedType} {
field: type // Description
}
\`\`\`
{Prose explanation of how it works, stacking rules, etc.}
## {Topic-Specific Section}
| Column | Column | Column |
|--------|--------|--------|
| value | value | value |
Formula: `{formula if applicable}`
## {Task Name}
Only runs when `condition: 'value'` and `otherCondition: true`
Reads `inputField` and generates: outputField1, outputField2, outputField3. Sets `flag` to false when complete.
## Cross-References
| Field | References |
|-------|------------|
| `field` | `tabs/{other}.json` |
Skill (SKILL.md) - Opinionated and curated
Reference ({name}-reference.md) - Comprehensive and neutral
Agent ({name}.md) - Minimal orchestration