From rag-service
View a single chunk's full content plus related reports, search signals, and edit history. Use when you need to understand a chunk's context before editing, when investigating why a search result appeared, or when reviewing a reported issue. Triggers on "inspect chunk SUP-1234", "show chunk DOC-xxx", "chunk history", "why did this result appear", "look at this chunk". Requires admin scope.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rag-service:zeabur-rag-inspectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get the full picture of a single knowledge base chunk: its content, related reports, search signals that surfaced it, and audit history.
Get the full picture of a single knowledge base chunk: its content, related reports, search signals that surfaced it, and audit history.
Base URL: $ZEABUR_RAG_URL
Auth: Authorization: Bearer $RAG_API_KEY — admin scope required
curl -s "$ZEABUR_RAG_URL/api/admin/chunks/<chunk_id>" \
-H "Authorization: Bearer $RAG_API_KEY"
Input: Chunk ID (e.g. SUP-1234, DOC-deploy-variables-0, LEARNED-1712345678-abc123).
{
"chunk": {
"id": "SUP-1234",
"title": "...",
"question": "...",
"answer": "...",
"text_content": "...",
"tags": ["..."],
"source": "forum",
"verified": true,
"status": "verified",
"visibility": "public",
"parent_id": null,
"created_at": "...",
"url": "..."
},
"reports": [
{ "id": "...", "type": "outdated", "query": "...", "detail": "...", "status": "open", "created_at": "..." }
],
"signals": [
{ "id": "...", "query": "...", "mode": "hybrid", "top_similarity": 0.012, "feedback_score": null, "created_at": "..." }
],
"audit_log": [
{ "id": "...", "chunk_id": "SUP-1234", "action": "edit", "old_value": {}, "new_value": {}, "created_at": "..." }
]
}
text_content — the text used for embedding and BM25 index. You MUST read this before editing a chunk, because zeabur-rag-edit requires you to provide updated text_content whenever you change title/question/answer.reports — any open or closed reports pointing to this chunk. If there's an open report, it may need action.signals — recent queries that surfaced this chunk in search results. Shows how the chunk is being found and whether users found it helpful (via feedback_score).audit_log — edit history. Check this to see who changed what and when.text_content → construct updated text_content in the same format → call zeabur-rag-edit.signals to see which queries surface it → consider editing text_content to improve relevance.Returns 404 with {"error": "Chunk not found"} if the ID doesn't exist.
npx claudepluginhub zeabur/rag-service --plugin rag-serviceBuilds and queries AI-powered knowledge bases from claude-mem observations, enabling focused Q&A on past work patterns, decisions, and bugfixes.
Answers questions from an AKB vault by decomposing the query, searching via hybrid/graph methods, and synthesizing cited answers with gap/conflict/staleness flags. Read-only.
Searches the Distillery knowledge base using natural language queries and returns ranked results with provenance. Useful for recalling past decisions, discussions, and notes.