← Back to list

rulebook-mcp
by hivellm
CLI tool to standardize AI-generated projects with templates, rules enforcement, and automation
⭐ 5🍴 0📅 Jan 8, 2026
SKILL.md
name: rulebook-mcp description: MCP server integration for programmatic task and skill management. Use when managing tasks via MCP protocol, enabling/disabling skills programmatically, or integrating Rulebook with AI assistants through Model Context Protocol. version: "1.0.0" category: core author: "HiveLLM" tags: ["mcp", "model-context-protocol", "server", "integration"] dependencies: [] conflicts: []
Rulebook MCP Server
Setup
rulebook mcp init
Starting the Server
rulebook-mcp
Task Management Functions
// Create task
await mcp.rulebook_task_create({ taskId: "my-task" });
// List tasks
await mcp.rulebook_task_list({});
// Show task
await mcp.rulebook_task_show({ taskId: "my-task" });
// Update task file
await mcp.rulebook_task_update({
taskId: "my-task",
file: "tasks.md",
content: "## Tasks\n- [ ] Item 1"
});
// Validate task
await mcp.rulebook_task_validate({ taskId: "my-task" });
// Archive task
await mcp.rulebook_task_archive({ taskId: "my-task" });
// Delete task
await mcp.rulebook_task_delete({ taskId: "my-task" });
Skill Management Functions
// List skills
await mcp.rulebook_skill_list({});
// Show skill
await mcp.rulebook_skill_show({ skillId: "languages/typescript" });
// Enable skill
await mcp.rulebook_skill_enable({ skillId: "languages/typescript" });
// Disable skill
await mcp.rulebook_skill_disable({ skillId: "languages/typescript" });
// Search skills
await mcp.rulebook_skill_search({ query: "typescript" });
// Validate skills
await mcp.rulebook_skill_validate({});
MCP Configuration
For Cursor (.cursor/mcp.json):
{
"mcpServers": {
"rulebook": {
"command": "rulebook-mcp",
"args": [],
"env": {}
}
}
}
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

