一键导入
sharing-a-spell
Use when exporting a spell for someone else to use. Produces a portable file in either Wizard format or strict (upstream-compatible) format.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when exporting a spell for someone else to use. Produces a portable file in either Wizard format or strict (upstream-compatible) format.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the meta-builder routes to kind=discipline. Generates a discipline spell with the rule, excuses table, warning signs, and hard gates.
Use when the user wants to capture a repeatable task as a reusable spell, or asks "how do I build a workflow / skill / framework for X"
Use when the meta-builder routes to kind=subagent. Generates a spell that dispatches one or more subagents to do work in parallel or in isolation.
Use when the meta-builder routes to kind=workflow. Generates a workflow spell with explicit stages, checkpoints, and loop-back conditions.
Use when composing multiple spells into a chain that runs end-to-end (e.g. brainstorm -> plan -> execute -> verify).
Use when browsing what spells are available - bundled seeds, your personal library, or both. Filter by kind, audience, or update status.
| name | sharing-a-spell |
| description | Use when exporting a spell for someone else to use. Produces a portable file in either Wizard format or strict (upstream-compatible) format. |
| kind | workflow |
| audience | anyone |
| ai-tools | any |
| complexity | simple |
| time | under 2 min |
| version | 1.0.0 |
| source | bundled |
Exports one of your spells as a portable markdown file (or zip with examples) that others can drop into their own library.
Two modes:
Nothing is sent over the network. Sharing means producing a file; you decide how to deliver it.
/share-spell <name>--strict, or --bundle<name>.md file with full frontmatter<name>.md file with only name + description frontmatter<name>.zip containing the SKILL.md and any examples/ and references/ foldersThis is a workflow.
Find it in $WIZARD_HOME or bundled spells/. Reject if not found; offer name suggestions.
If the user didn't specify, ask:
Default mode: copy the SKILL.md verbatim (frontmatter and body).
Strict mode: re-emit frontmatter with only name and description. Strip body sections that don't exist in the upstream format if any. Add a footer comment: <!-- Originally exported from Wizard. -->
Bundle mode: zip the SKILL.md plus any peer folders. Strict-mode flag still applies to the SKILL.md inside the zip.
Default location: ~/Desktop/<name>.md (or .zip). Allow user to override with --out <path>.
Print a one-liner the recipient can run:
mv <name>.md $WIZARD_HOME/personal/<name>/SKILL.md
For strict mode, the upstream Obra-style install path:
mv <name>.md ~/.claude/skills/<name>/SKILL.md
name + descriptionReturn to Stage 2 when the user changes mode mid-stream.
The export is good enough when:
name + description frontmatter/share-spell writing-a-status-update --strict --out ~/Desktop/status.md
Output:
~/Desktop/status.md with frontmatter name: writing-a-status-update and description: Use when... only