一键导入
save-skill
Save the current conversation insight as a reusable skill in the knowledge repo
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Save the current conversation insight as a reusable skill in the knowledge repo
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Switch Claude Code to a different project folder with full context reload
Search episodic memory - sessions, progressions, and documents across all projects
Quick reference card for all Project Intelligence commands
Track evolving understanding of a topic through a sequence of documents
Discover all installed plugins, skills, and commands available in this environment
Track and search what you (or others) have done — GitHub activity, issues, PRs, commits
| name | save-skill |
| description | Save the current conversation insight as a reusable skill in the knowledge repo |
| user_invocable | true |
Save a piece of knowledge, pattern, or workflow from the current conversation as a reusable skill that will be injected into future sessions.
The user invokes /save-skill <skill-name> to save a skill. If no name is given, infer a kebab-case name from the content.
When the user invokes /save-skill:
Identify the content to save. Look at the recent conversation context:
Determine the project. Use the current working directory's project name (basename of CWD).
Format as a skill file with YAML frontmatter:
---
name: <skill-name-kebab-case>
project: <project-name>
generated: <YYYY-MM-DD>
sessions: [<current-session-id-if-available>]
confidence: high
source: manual
---
# <Skill Title>
<The skill content - actionable instructions, steps, patterns, or knowledge>
~/.claude/knowledge/<project>/skills/<skill-name>.md
Create the directory if it doesn't exist (mkdir -p).
cd ~/.claude/knowledge && git add -A && git commit -m "Add skill: <skill-name> for <project>" && git push
/save-skill — Save the last discussed pattern (auto-name it)/save-skill deployment-checklist — Save as "deployment-checklist"/save-skill after user says "that debugging approach was great, remember it" — Capture the approach