CLI tool to standardize AI-generated projects with templates, rules enforcement, and automation
Install
npx skillscat add hivellm/rulebook/skills-rulebook-skill-disable Install via the SkillsCat registry.
SKILL.md
rulebook_skill_disable
Disable a skill in the project configuration.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
skillId |
string | Yes | Skill ID to disable (e.g., languages/typescript) |
Usage
await mcp.rulebook_skill_disable({ skillId: "languages/typescript" });Response
{
"success": true,
"skillId": "languages/typescript",
"message": "Skill languages/typescript disabled successfully"
}Error Response
{
"success": false,
"error": "Skill languages/typescript is not currently enabled"
}When to Use
- Removing a language or framework no longer used
- Disabling rules that conflict with project needs
- Simplifying project configuration