Help us improve
Share bugs, ideas, or general feedback.
From rulebook
Enables a specified skill in the project configuration after checking for conflicts with existing skills. Use for adding languages, frameworks, quality rules, or integration modules.
npx claudepluginhub hivellm/rulebook --plugin rulebookHow this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-skill-enableThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Enable a skill in the project configuration.
Disables a skill by ID in the project configuration, removing its rules from the next AGENTS.md generation. Use to prune unused languages, frameworks, or conflicting rules.
Creates and extends harness skills with structured phases for defining purpose, choosing type, writing skill.yaml and SKILL.md, validating, and testing.
Create, update, and manage Claude Code skills including SKILL.md files, slash commands, directory structures, frontmatter, substitutions, and invocation controls.
Share bugs, ideas, or general feedback.
Enable a skill in the project configuration.
| Parameter | Type | Required | Description |
|---|---|---|---|
skillId | string | Yes | Skill ID to enable (e.g., languages/typescript) |
await mcp.rulebook_skill_enable({ skillId: "languages/typescript" });
{
"success": true,
"skillId": "languages/typescript",
"message": "Skill languages/typescript enabled successfully",
"warnings": [],
"conflicts": []
}