Help us improve
Share bugs, ideas, or general feedback.
From rulebook
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.
npx claudepluginhub hivellm/rulebook --plugin rulebookHow this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-skill-disableThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Disable a skill in the project configuration.
Disables a community skill by renaming its SKILL.md to SKILL.md.disabled, stopping hooks while preserving files. Re-enable by running the same command again.
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.
Safely removes plugin assets (skills, agents, rules, scripts, hooks) by detecting dependencies and cleaning up references. Invoke via /safe-remove for decluttering.
Share bugs, ideas, or general feedback.
Disable a skill in the project configuration.
| Parameter | Type | Required | Description |
|---|---|---|---|
skillId | string | Yes | Skill ID to disable (e.g., languages/typescript) |
await mcp.rulebook_skill_disable({ skillId: "languages/typescript" });
{
"success": true,
"skillId": "languages/typescript",
"message": "Skill languages/typescript disabled successfully"
}
{
"success": false,
"error": "Skill languages/typescript is not currently enabled"
}