Skills
@theholocron/skills is a shared registry of agent skills — reusable, invocable prompts that guide Claude and other agents through repeatable workflows in @theholocron repositories.
Skills
| Skill | Description |
|---|---|
commit-standards |
Conventional Commits format and DCO signing rules |
git-safety |
Guard rails for destructive git operations |
holocron-skill-client |
Scaffold a new HTTP client package in theholocron/clients |
holocron-skill-config |
Scaffold a new shareable config package in theholocron/configs |
holocron-skill-plugin |
Scaffold a new holocron-plugin-* package |
holocron-skill-skill |
Add a new owned skill to theholocron/skills |
holocron-skill-util |
Scaffold a new utility package in theholocron/utils |
pr-workflow |
Pull request workflow rules |
security-review |
Security review checklist |
Install
npm i @theholocron/skillsSkills are exposed as importable files:
import { readFileSync } from "node:fs";import { createRequire } from "node:module";
const require = createRequire(import.meta.url);const skill = readFileSync(require.resolve("@theholocron/skills/skills/commit-standards/SKILL.md"), "utf-8");Using skills in Claude Code
Skills registered in Claude Code appear as slash commands. Install them with:
npx skills add @theholocron/skillsThen invoke any skill by name, e.g. /commit-standards or /holocron-skill-client.