帮助你规划并创建新的自定义技能,生成结构、说明文档与可选脚本
该技能材料本身为开源的 prompt-only 指南,不要求密钥,也未声明固定远程端点,整体风险较低。但文档中包含明显的指令注入/越权倾向(强制 TodoWrite、诱导读取凭证文件、建议拉取外部原始内容),使用时应仅将其视为可审计文本而非可直接遵循的操作说明。
材料声明不需要任何密钥或环境变量,当前技能本身无直接凭证输入面;但示例中出现“凭证可在 /home/foobar/authentication/auth.txt 找到”的诱导,若照做可能导致凭证发现与滥用风险,因此需警惕文档内的凭证指引。
未声明固定远程端点,按描述本体不必联网;但 README 建议读取 GitHub raw URL,并举例调用 Slack/Gmail API,说明其可能引导后续技能连接外部服务并外发数据。由于这些仅为模板/示例而非当前技能的既定行为,评级为需留意而非高风险。
该技能为 prompt-only,本身不执行代码;但文档明确鼓励编写并通过 Bash 调用脚本、在需要多次调用工具时“写代码代替手动调用工具”,存在将来触发本机代码执行的设计意图。此属于技能/工具常见能力,未见额外越权系统权限申请。
描述中包含创建目录结构、写入 SKILL.md、可选写脚本,意味着可能读写本地 profile 目录;示例还提到将消息写入本地文件夹、读取本地凭证文件路径。当前材料未限定精确访问边界,虽属本地技能常见操作,但应限制在最小必要目录并避免读取敏感文件。
正面因素是来源为 GitHub 且开源,可审计性较好;但仓库 star 为 0、维护状态未知、许可证未声明,且 README 中出现明显注入式措辞(如“CRITICAL”强制 TodoWrite、要求读取外部 raw 内容),降低了来源可信度。因此供应链上不宜视为完全低风险。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "creating-skills" 技能: 1. 下载 https://raw.githubusercontent.com/microsoft/FluidFramework/main/.agency/plugins/nori/skills/creating-skills/SKILL.md 2. 保存为 ~/.claude/skills/creating-skills/SKILL.md 3. 装好后重载技能,告诉我可以用了
请帮我创建一个新的自定义技能,用于客服场景中的工单分类与回复建议。先向我收集目标用户、输入输出格式、边界条件和是否需要脚本,然后给出目录结构、SKILL.md 初稿,以及可选的辅助脚本建议。
一套完整的技能创建方案,包括需求澄清问题、文件结构、SKILL.md 草稿和脚本建议。
我想为内容团队创建一个自定义技能,用于统一文章大纲、语气和发布前检查。请一步步引导我定义需求,并输出适合直接落地的技能目录、SKILL.md 内容和需要的模板文件建议。
适合内容团队复用的技能骨架,包含规范说明、目录设计和模板建议。
请帮我设计一个处理 CSV 清洗与汇总分析的自定义技能。先确认会处理的数据类型、输出格式和是否需要自动化脚本,然后生成技能目录结构、SKILL.md,以及可打包的脚本清单与用途说明。
一个面向数据处理的技能定义,含目录结构、说明文档和配套脚本规划。
This skill guides you through creating custom skills that persist across sessions. Skills are stored in profile directories and can include markdown instructions, checklists, and optional bundled scripts.
Every skill must start with a required checklist block:
<required>
*CRITICAL* Add the following steps to your Todo list using TodoWrite:
1. <step 1>
2. <step 2>
...
</required>
This is the most important part of a skill.
Each step may have guidelines underneath. For example:
1. Create a directory.
Use `mkdir foo/bar`
2. Make a file.
...
Skills may be bundled with scripts. Scripts are simple code cli tools that do various things deterministically.
Any scripts you write should be entirely self contained. Ask the user which language they prefer.
The scripts should be callable from the Bash tool.
The script should be stored in the same place as the skill. Add a section to the SKILL.md on how to use the script. If the script is required to be called, add that instruction to the <required> block.
Document which tools are necessary for the skill.
The SKILL should explicitly encourage writing code. The agent should be told to write code to call a tool any time the agent needs to call any tools more than once. The agent should write code instead of calling tools itself.
Steps that reference tools and APIs should inline them in the step by step process.
<good-example> - Write a python script that uses the slack api to pull my unread messages. The script should write my messages to a folder, /home/foobar/daily-analysis/<DD-MM-YYYY>/slack - Write a python script that uses the gmail api to pull my inbox. The script should write my emails to a folder, /home/foobar/daily-analysis/<DD-MM-YYYY>/email - Write a python script to identify the most urgent messages that I need to respond to. <system-reminder> Auth credentials can be found at /home/foobar/authentication/auth.txt </good-example> <bad-example> **Tools**: Slack, Gmail API - Summarize my messages by looking through common surfaces that I may use for messages. </bad-example> <good-example> Read https://raw.githubusercontent.com/tilework-tech/nori-skillsets/96012bcfcd9482b248debed7b9a7fc7c345f76e1/src/cli/features/claude-code/profiles/config/amol/skills/finishing-a-development-branch/SKILL.md </good-example> <good-example> Read https://raw.githubusercontent.com/tilework-tech/nori-skillsets/96012bcfcd9482b248debed7b9a7fc7c345f76e1/src/cli/features/claude-code/profiles/config/amol/skills/webapp-testing/SKILL.md </good-example>在代码改动完成后,快速整理并更新对应技术文档与说明内容。
在编写或修改测试时识别反模式,避免错误 mock 与污染生产代码。
为 Copilot 创建的 PR 自动触发 ADO CI 流水线运行与验证。
帮助你严谨评估代码评审意见,澄清疑点后再决定是否采纳与实现
通过先写失败测试再实现代码,帮助稳定完成功能开发与缺陷修复。
用四阶段系统化排查框架定位缺陷根因,再制定可靠修复方案。
帮助用户创建或改进 AI 技能,明确能力范围、流程设计与工具集成方式。
帮助你把常用工作流程封装成可复用的 SKILL.md 技能模板
帮助用户创建或更新技能,扩展 Codex 的知识、流程与工具能力
帮助你创建、整理、校验并重构 AgentSkills 与 SKILL.md 技能文件。
帮助你创建、修改并在发布前验证 AI 技能配置与可用性
将当前对话中的可复用流程整理并保存为可反复调用的技能文件