qwen_agent/skills/autoload/support/rag-retrieve/.claude-plugin/plugin.json
2026-04-18 23:36:32 +08:00

23 lines
452 B
JSON

{
"name": "rag-retrieve",
"description": "Provides RAG and table RAG retrieval tools through a PrePrompt hook and MCP server.",
"hooks": {
"PrePrompt": [
{
"type": "command",
"command": "python hooks/pre_prompt.py"
}
]
},
"mcpServers": {
"rag_retrieve": {
"transport": "stdio",
"command": "python",
"args": [
"./rag_retrieve_server.py",
"{bot_id}"
]
}
}
}