用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Setsuna-Agent/setsuna-desktop --skill skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
通过对话收集 MCP 配置,并调用本地工具写入桌面端 MCP 配置。
通过对话创建或更新 Setsuna Plugin Bundle,生成完整 manifest 和 UTF-8 文件快照并调用 configure_plugin。用于用户要求创建、修改或保存由 Skill、MCP、Hook、资源或可执行扩展组成的桌面端插件。
Write and create durable, evidence-checkable thread goals when the user explicitly asks to use Goal mode, set a persistent goal, or continue autonomously across multiple turns. Do not use for ordinary one-turn tasks.
正在显示 SKILL.md
| name | 对话创建Skill |
| description | 通过对话生成完整 SKILL.md 正文,并调用本地工具保存为桌面端用户 Skill。 |
| metadata | {"short-description":"对话创建或更新桌面端 Skill"} |
当用户想在对话中创建、更新、完善或保存桌面端 Skill 时使用本 Skill。能力页点“用对话创建技能”会默认选中本 Skill;你需要基于当前桌面端 Skill 链路保存用户 Skill,而不是只给用户一段模板。
configure_skill 创建或更新用户 Skill。user-skills 目录。configure_skill.content 只接收 SKILL.md 正文,不包含 YAML frontmatter。name 和 description 写入 frontmatter。只追问创建 Skill 必需且用户没有提供的信息。用户已经说清楚时直接生成并保存。
必需字段:
name:展示名称。description:一句话说明这个 Skill 何时应该被使用。content:完整的 SKILL.md 正文。可选字段:
id:稳定标识。用户未指定时由工具根据名称生成。enabled:默认 true。生成的 content 必须是可直接保存的完整 Skill 正文。
--- frontmatter。TODO、待补充、示例步骤 等占位内容。推荐正文结构:
# Skill Name
Use this skill when the user asks for a clearly scoped task that matches this capability.
## Workflow
1. Identify the concrete user goal and required inputs.
2. Inspect only the source files, APIs, documents, or runtime state needed for the task.
3. Apply the established project or product flow for this capability.
4. Validate the result with the relevant command, preview, or consistency check.
5. Report what changed, what was verified, and any remaining limitation.
## Constraints
- Keep edits scoped to the requested capability.
- Prefer existing project conventions over new abstractions.
- Ask for missing required inputs only when they cannot be inferred safely.
你可以把上面的结构改成更适合用户目标的具体内容,但不能保留泛化占位。
content 正文。configure_skill,传入 name、description、content、enabled,以及必要时的 id。