بنقرة واحدة
build-skill
Create or update a skill, agent, and reference file
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create or update a skill, agent, and reference file
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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