add-skill
4
总安装量
3
周安装量
#48936
全站排名
安装命令
npx skills add https://github.com/joelhooks/joelclaw --skill add-skill
Agent 安装分布
opencode
3
gemini-cli
3
codebuddy
3
github-copilot
3
codex
3
kimi-cli
3
Skill 文档
Add Skill
Create a new joelclaw skill. Skills are modular instruction sets that extend agent capabilities with specialized knowledge, workflows, or tool integrations.
Process
1. Create the skill directory
mkdir -p ~/Code/joelhooks/joelclaw/skills/<skill-name>
2. Write SKILL.md
Every skill needs a SKILL.md with frontmatter and instructions:
---
name: <skill-name>
displayName: <Human Readable Name>
description: <One-line description. This shows in the skill list and is used for trigger matching.>
version: 0.1.0
author: joel
tags:
- <relevant>
- <tags>
---
# <Skill Title>
<Instructions for the agent. Write for another Claude instance â include non-obvious procedural knowledge, domain-specific details, gotchas, and reusable patterns.>
## When to Use
<Trigger phrases and situations that should activate this skill.>
## Operations
<Step-by-step procedures, commands, API calls, etc.>
## Rules
<Constraints, safety boundaries, things to never do.>
3. Add references (optional)
For complex skills, add supporting files:
skills/<skill-name>/
âââ SKILL.md # Required
âââ references/ # Optional â detailed docs, examples
â âââ operations.md
âââ scripts/ # Optional â helper scripts
âââ assets/ # Optional â logos, templates
âââ small-logo.svg # For Codex desktop
âââ large-logo.png # For Codex desktop
4. Symlink to all consumer directories
ln -sf ~/Code/joelhooks/joelclaw/skills/<skill-name> ~/.pi/agent/skills/<skill-name>
ln -sf ~/Code/joelhooks/joelclaw/skills/<skill-name> ~/.agents/skills/<skill-name>
ln -sf ~/Code/joelhooks/joelclaw/skills/<skill-name> ~/.claude/skills/<skill-name>
5. Slog it
slog write --action configure --tool skills --detail "created <skill-name> skill: <what it does>" --reason "<why>"
6. Commit
The skills/ directory is sacred and fully git-tracked. Every skill must be committed.
cd ~/Code/joelhooks/joelclaw
git add skills/<skill-name>
git commit -m "feat(skills): add <skill-name> â <short description>"
Key Rules
- Repo is canonical:
~/Code/joelhooks/joelclaw/skills/is the source of truth. Home dirs symlink to it. - Directory name must match
namefield in SKILL.md frontmatter. Mismatch causes[Skill conflicts]warning on pi load. - Never copy skills â always symlink.
cat > symlinkwrites through and destroys the target. - External/third-party skill packs stay external (global install), not copied into repo unless intentionally curated.
- Pi extensions load at session startup only â new skills are available immediately (loaded on demand), but if you modify an existing skill mid-session, run
/reload. - One skill per concern â don’t overload a skill with unrelated capabilities. Split into focused skills.
- Write for another agent â the consumer is another Claude instance, not Joel. Include what’s non-obvious.
- Include trigger phrases in the description â this is how pi matches user requests to skills.
Updating Existing Skills
- Edit the SKILL.md (or references) in the repo copy
- Symlinks mean all consumers see the change immediately
- Slog the change
- Commit
Codex Desktop Metadata (optional)
For skills that should appear in Codex desktop:
skills/<skill-name>/
âââ agents/
â âââ openai.yaml # Codex agent config
âââ assets/
âââ small-logo.svg
âââ large-logo.png