qwen_agent/skills_autoload/rag-retrieve/.claude-plugin/plugin.json
2026-04-16 20:09:02 +08:00

23 lines
481 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": [
"./skills_autoload/rag-retrieve/rag_retrieve_server.py",
"{bot_id}"
]
}
}
}