English | 中文
Practical agent skills for real engineering workflows.
Repository: https://github.com/lencamo/skills
| Skill | When | What it does |
|---|---|---|
doc-feat-desc |
When an implemented feature needs user-facing documentation | Generates three docs under doc/<requirement-name>/ from the real implementation |
draft-to-project |
When a UI draft such as a screenshot, HTML draft, local file:// prototype, or mockup should be implemented in a real project page |
Reuses existing components and styles while keeping the provided draft layout structure close to the source |
git-smart-commit |
When a commit message needs to match repo conventions | Detects commit rules and drafts a short matching commit header |
global-project-rules |
When a project needs always-on agent behavior rules | Enforces Chinese replies, senior engineer style, simple maintainable solutions, and protected git changes |
split-pencil-file |
When a large imported Pencil .pen file should be split into one folder per top-level Frame |
Generates <frame-name>/index.pen folders and copies each frame's local image assets |
Each skill lives in its own folder instead of a single markdown file. A skill can include bundled references and helper resources when needed.
This repository follows the standard skills layout and can be installed with the skills CLI for multiple agents. Common -a <agent> values include codex, claude-code, cursor, opencode, gemini-cli, continue, windsurf, and trae; for the full and current list, check the skills CLI docs or run npx skills --help.
List available skills:
npx skills add lencamo/skills --listInstall all skills for Codex:
npx skills add lencamo/skills -a codex -g -yInstall all skills for Claude Code:
npx skills add lencamo/skills -a claude-code -g -yInstall selected skills for a specific agent:
npx skills add lencamo/skills -a codex -g -y -s doc-feat-desc
npx skills add lencamo/skills -a codex -g -y -s draft-to-project
npx skills add lencamo/skills -a codex -g -y -s global-project-rules
npx skills add lencamo/skills -a claude-code -g -y -s git-smart-commit
npx skills add lencamo/skills -a claude-code -g -y -s split-pencil-fileUse the local repository during development:
git clone git@github.com:lencamo/skills.git
cd skills
npx skills add . -a codex -g -yThis repository is released under the MIT License. See LICENSE for the full text.
.
├── AGENTS.md
├── CLAUDE.md
├── LICENSE
├── marketplace.json
├── README.md
├── README.zh-CN.md
└── skills
└── example-skill
├── SKILL.md
├── agents
├── references
├── scripts
└── templates