hivellm

rulebook_skill_search

CLI tool to standardize AI-generated projects with templates, rules enforcement, and automation

hivellm 11 2 Updated 3mo ago
GitHub

Install

npx skillscat add hivellm/rulebook/skills-rulebook-skill-search

Install via the SkillsCat registry.

SKILL.md

rulebook_skill_search

Search for skills by name, description, or tags.

Input Schema

Parameter Type Required Description
query string Yes Search query

Usage

// Search by technology name
await mcp.rulebook_skill_search({ query: "typescript" });

// Search by feature
await mcp.rulebook_skill_search({ query: "quality" });

// Search by tag
await mcp.rulebook_skill_search({ query: "testing" });

Response

{
  "success": true,
  "query": "typescript",
  "skills": [
    {
      "id": "languages/typescript",
      "name": "TypeScript Support",
      "description": "TypeScript language rules and setup",
      "category": "languages",
      "enabled": true
    }
  ],
  "count": 1
}

When to Use

  • Finding skills for a specific technology
  • Discovering skills related to a topic
  • Searching before enabling new skills