Files
gh-itmediatech-rag-cli/.claude-plugin/plugin.json
2025-11-29 18:48:40 +08:00

41 lines
973 B
JSON

{
"name": "rag-cli",
"description": "Local RAG system with embedded Multi-Agent Framework for Claude Code plugin",
"version": "2.0.0",
"author": {
"name": "DiaTech",
"email": "support@rag-cli.dev",
"url": "https://github.com/ItMeDiaTech/rag-cli"
},
"skills": [
"./src/rag_cli_plugin/skills"
],
"commands": [
"./src/rag_cli_plugin/commands"
],
"hooks": [
"./.claude-plugin/hooks.json"
],
"mcp": {
"rag-cli": {
"command": "python",
"args": [
"-m",
"rag_cli_plugin.mcp.unified_server"
],
"env": {
"PYTHONUNBUFFERED": "1",
"RAG_CLI_MODE": "claude_code",
"RAG_CLI_ROOT": "${CLAUDE_PLUGIN_ROOT}",
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}:${CLAUDE_PLUGIN_ROOT}/src"
},
"alwaysAllowTrust": false,
"features": {
"autoStart": true,
"retryOnFailure": true,
"maxRetries": 3,
"retryDelayMs": 1000
}
}
}
}