Agent skill

rulebook-skill-validate

Validate the current skills configuration for conflicts, missing dependencies, and errors. Use to ensure skills are properly configured.

Stars 10
Forks 1

Install this agent skill to your Project

npx add-skill https://github.com/hivellm/rulebook/tree/main/skills/rulebook-skill-validate

SKILL.md

rulebook_skill_validate

Validate the current skills configuration.

Input Schema

No parameters required.

Usage

typescript
await mcp.rulebook_skill_validate({});

Response

json
{
  "success": true,
  "valid": true,
  "errors": [],
  "warnings": ["Skill 'languages/typescript' depends on 'nodejs' which is not enabled"],
  "conflicts": [],
  "enabledCount": 5
}

Checks Performed

  • Missing dependencies between skills
  • Conflicting skills enabled simultaneously
  • Invalid or malformed skill configurations
  • Orphaned skill references

When to Use

  • After enabling or disabling skills
  • During project setup to verify configuration
  • As a health check for skill configuration

Didn't find tool you were looking for?

Be as detailed as possible for better results