원클릭으로
add-skill
为用户安装技能。通过 skill_name 绑定已有技能,或通过 url 传入 .zip / skill.md 链接自动注册技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
为用户安装技能。通过 skill_name 绑定已有技能,或通过 url 传入 .zip / skill.md 链接自动注册技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Learns how the user writes from their own sent messages and docs, and builds a voice profile so future drafts sound like them instead of generic AI. The profile is saved as the my-writing-style skill. Use when the user asks to set up, learn, or capture their writing voice, or complains that drafts sound generic or unlike them and no my-writing-style profile exists. Only for drafting text the user will send as themselves, not for Claude's own replies.
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions "deck," "slides," "presentation," or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .xltx, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
Use this skill when replying with a generated or edited image — when a post asks to create, generate, edit, modify, restyle, combine, or stitch images, or whenever attaching a generated or edited image would strengthen the reply.
统一处理网页应用的生成、编辑,以及围绕已生成产物的问答。既负责把自然语言需求端到端转成可运行、可预览、可交付的网页应用产物,也负责在用户追问产物时基于真实产物作答。当用户要生成网站、H5、网页应用、管理后台、数据看板时使用。当用户要编辑已有网页应用、做功能新增、页面调整或 Bug 修复时使用。当用户提供 PRD、文档、截图或素材包并要求产出可预览网页应用时使用。当用户针对已生成的网页应用,要求总结或解读网页内容、查看或分析源码、解释或排查运行报错、查询访问量/用户量/数据报表/发布状态等运营信息时同样使用。
| name | add_skill |
| description | 为用户安装技能。通过 skill_name 绑定已有技能,或通过 url 传入 .zip / skill.md 链接自动注册技能。 |
| version | 0.0.3 |
| author | qqai |
| user-invocable | false |
| disable-model-invocation | false |
| tags | ["skill","install","add","bind","url","upload","zip"] |
| trigger-phrases | ["安装技能","添加技能","给我开通技能","帮我绑定技能","通过链接安装技能"] |
| timeout | 30s |
安装或绑定技能到用户账号。支持两种方式:
.zip 或 skill.md 的下载链接,服务端自动解析并注册两个参数至少提供一个,url 非空时优先使用 URL 模式(skill_name 可省略)。
无需预先读取或校验 URL 内容,直接传入即可,服务端会自行校验并返回错误信息。
必须通过 exec 调用。
exec("add_skill --parameters '{\"skill_name\": \"code_review\"}'")
exec("add_skill --parameters '{\"url\": \"http://example.com/xxx/my_skill.zip\"}'")
exec("add_skill --parameters '{\"url\": \"http://example.com/xxx/skill.md\"}'")
| 字段 | 类型 | 说明 |
|---|---|---|
skill_name / skillName / skill | string | 要安装的技能名称,二选一 |
url | string | 技能资源下载链接(.zip 或 .md),二选一 |
{ "status": "SUCCESS", "result": { "result": "success" } }
失败时返回 Status_FAILED,ErrorCode 为 1,ErrorMessage 包含具体原因(参数缺失、URL 不可访问、zip 格式错误、skill.md 缺少元信息等)。按 error_message 提示用户即可。
skill_name 调用url 调用,不需要先读取链接内容find_skills 搜索,再用返回的 skill_id 安装