@siliconoid/agent-skills
v0.0.1
Published
Curated collection of AI agent skills — reusable instruction sets for Claude Code, Cursor, Codex, and more
Maintainers
Readme
@siliconoid/agent-skills
Curated collection of AI agent skills — reusable instruction sets for Claude Code, Cursor, Codex, and more.
Install
npm install @siliconoid/agent-skillsAvailable Skills
| Skill | Description | Tags |
|-------|-------------|------|
| adr | Record Architecture Decision Records with context, alternatives, and consequences | architecture, decisions |
| devlog | Append structured changelog entries — what, why, impact, gotchas | changelog, documentation |
| git-commit-convention | Enforce conventional commit messages with scope, type, and emoji prefix | git, conventions |
| worktree-start | Create isolated Git worktree for parallel development | git, worktree |
| worktree-commit | Auto-analyze changes and generate smart commits in worktrees | git, worktree |
| worktree-merge | Merge worktree branches back to main with conflict resolution | git, worktree |
| wrap-up | End-of-session memory sync — changelog, ADR, context, all at once | workflow, documentation |
Usage
With npx skills
npx skills install @siliconoid/agent-skillsProgrammatic
import { listSkills } from '@siliconoid/agent-skills';
const skills = listSkills();
console.log(skills);CLI
# List all available skills
npx @siliconoid/agent-skills list
# Show details of a specific skill
npx @siliconoid/agent-skills info git-commit-convention
# Validate skills format
npx @siliconoid/agent-skills validateManual
Copy any skills/<name>/SKILL.md into your project's .claude/skills/ directory (or equivalent for your AI agent).
Skill Format
Each skill is a directory under skills/ containing:
skills/<name>/
├── SKILL.md # Anthropic standard format (YAML frontmatter + instructions)
└── manifest.yaml # Metadata (name, description, tags)Contributing
- Create a new directory under
skills/ - Add
SKILL.mdwith YAML frontmatter (name+description) and instructions - Add
manifest.yamlwith metadata and tags - Run
npx @siliconoid/agent-skills validateto check format - Submit a PR
License
MIT
