用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/nikolaj-lat/World-Puppeteer --skill build-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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 triggers
Schema and rules for editing AI instructions
基于 SOC 职业分类
正在显示 SKILL.md
| 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