Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Setsuna-Agent/setsuna-desktop --skill skill명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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。