Agent skill
rulebook-skill-list
List all available Rulebook skills, optionally filtered by category or enabled status. Use to discover what skills are available for the project.
Install this agent skill to your Project
npx add-skill https://github.com/hivellm/rulebook/tree/main/skills/rulebook-skill-list
SKILL.md
rulebook_skill_list
List all available skills with optional filtering.
Input Schema
| 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) |
Usage
// 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 });
Response
{
"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"
}
When to Use
- Discover available skills for the project
- Check which skills are currently enabled
- Browse skills by category
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
DAG Workflow
Maintain a clean dependency graph (DAG) to prevent circular dependencies and ensure maintainable architecture.
Documentation Rules
All documentation in English. Root README concise, detailed docs in `/docs`.
Quality Enforcement
These rules are NON-NEGOTIABLE and MUST be followed without exception.
Rulebook Task Management
Spec-driven task management for features and breaking changes with OpenSpec-compatible format
Agent Automation
Mandatory workflow that AI agents MUST execute after EVERY implementation.
C
Execute these commands after EVERY implementation (see AGENT_AUTOMATION module for full workflow).
Didn't find tool you were looking for?