一键导入
skill-manager
skill查询与管理。列出所有可用skill清单,搜索及查看skill详细用法。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
skill查询与管理。列出所有可用skill清单,搜索及查看skill详细用法。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate a project-specific AGENTS.md draft from the current repository when the user asks to initialize, create, rewrite, or refine AGENTS.md for this repo. Use when the user wants only repo-specific instructions, not generic coding rules. This skill must inspect the current repository, extract its local conventions and boundaries, present a draft first, and wait for user confirmation before writing or overwriting AGENTS.md.
Generic memory and self-improvement skill for user-level or project-level contexts. Use when the user wants Codex to remember stable preferences, workflow patterns, repeated failures, or durable context; when checking whether memory/automation/AGENTS are initialized; when initializing memory infrastructure in ~/.codex or a project root; or when listing, deleting, clearing, or promoting memory records.
小红书爆款文案助手。将技术或职场经历转化为情感共鸣强、极具传播力的故事。遵循S.L.R.A.模型。
将Markdown批量导出固定尺寸的小红书长文图片。适用"md转图片/转小红书长文图"。
将 Markdown 转为适合小红书粘贴的纯文本(去掉
大齐风格文章撰写与初稿生成。模拟通俗有趣、去AI味的专家口吻,输出高质量内容。
| name | skill-manager |
| description | skill查询与管理。列出所有可用skill清单,搜索及查看skill详细用法。 |
此skill用于帮助用户了解和管理当前环境中可用的所有 AI skill。
Agent Execution Instructions:
SKILL_DIR${SKILL_DIR}/scripts/<script-name>.ts${SKILL_DIR} in this document with the actual path仅执行以下单条命令。禁止在执行前运行 ls 或进行其他环境检查:
npx -y bun ${SKILL_DIR}/scripts/list-skills.ts
当用户模糊查询时(如“找一个处理PDF的skill”),可以配合 grep 搜索:
grep -r "PDF" "${SKILL_DIR}/../*/SKILL.md" | cut -d: -f1 | sort | uniq
当用户请求查看具体skill时,直接使用 read_file 读取对应目录下的 SKILL.md。
当列表显示某个 skill 为 ❌ 缺失描述 时,应主动提示修复:
read_file 读取该 skill 的 SKILL.md(注意跳过已有的或错误的 YAML 区域)。name 和 description 的 YAML Front Matter:
---
name: skill-folder-name
description: 简短描述(100字以内,包含主要功能和触发词)
---
SKILL.md 顶部的 YAML Front Matter 中的 description 字段。