skills/rulebook-skill-list/SKILL.md
List all available Rulebook skills, optionally filtered by category or enabled status. Use to discover what skills are available for the project.
npx skillsauth add hivellm/rulebook rulebook-skill-listInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
List all available skills with optional filtering.
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| category | enum | No | Filter: languages, frameworks, modules, services, workflows, ides, core, cli, git, hooks |
| enabledOnly | boolean | No | Show only enabled skills (default: false) |
// List all skills
await mcp.rulebook_skill_list({});
// List only language skills
await mcp.rulebook_skill_list({ category: "languages" });
// List only enabled skills
await mcp.rulebook_skill_list({ enabledOnly: true });
{
"success": true,
"skills": [
{
"id": "languages/typescript",
"name": "TypeScript Support",
"description": "TypeScript language rules and setup",
"category": "languages",
"enabled": true,
"version": "1.0.0",
"tags": ["typescript", "strict", "esm"]
}
],
"count": 1,
"category": "languages"
}
research
Create structured analyses with numbered findings, execution plans, and task materialization
research
Author a rulebook task spec interactively — research, draft, ask the user clarifying questions, confirm, then create the tasks in rulebook ready for /rulebook-driver. Use when the user wants to plan/spec a feature before implementing.
development
Behavioral guidelines to reduce common LLM coding mistakes — overcomplication, sloppy refactors, hidden assumptions, weak goals. Use when writing, reviewing, or refactoring code. Auto-applies; invoke explicitly via /karpathy-guidelines or 'follow karpathy discipline'.
data-ai
Autonomous AI agent loop for iterative task implementation (@hivehub/rulebook ralph)