tya5/rag
v0.1.0
Builtin turnkey user RAG (ADR 0064 P5): chunker + vector-store MCP servers, ingest/query pipelines, and its RAG skill (install, embedding-provider setup, the ingest/query workflow, and corpus internals, all bundled with references). External sqlite store the operator names and owns (FP-0057 C2) -- distinct from reyn's own OS-internal index (not agent-callable, FP-0066 P1b).
MCP servers
Declared configuration, as published in mcp.json. The directory shows indexed content; it never connects to or executes these servers.
reyn_chunkerstdio
{
"type": "stdio",
"command": "python",
"args": [
"${PLUGIN_ROOT}/scripts/chunker_server.py"
],
"env": {
"FASTMCP_SHOW_SERVER_BANNER": "false",
"FASTMCP_CHECK_FOR_UPDATES": "off"
}
}reyn_vector_storestdio
{
"type": "stdio",
"command": "python",
"args": [
"${PLUGIN_ROOT}/scripts/vector_store_server.py"
],
"env": {
"FASTMCP_SHOW_SERVER_BANNER": "false",
"FASTMCP_CHECK_FOR_UPDATES": "off"
}
}What this package declares
The files a client reads when it loads this plugin, exactly as this revision carries them.
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "rag",
"version": "0.1.0",
"description": "Builtin turnkey user RAG (ADR 0064 P5): chunker + vector-store MCP servers, ingest/query pipelines, and its RAG skill (install, embedding-provider setup, the ingest/query workflow, and corpus internals, all bundled with references). External sqlite store the operator names and owns (FP-0057 C2) -- distinct from reyn's own OS-internal index (not agent-callable, FP-0066 P1b)."
}