From rag-service
List pending knowledge base maintenance items — open reports, unverified learned chunks, low-score queries, and negative feedback. Use when checking KB health, reviewing the maintenance queue, or starting a curation session. Triggers on "review queue", "what needs attention in the KB", "pending reports", "unverified chunks", "failed queries", "KB health check". Requires admin scope.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rag-service:zeabur-rag-triageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show what needs attention in the knowledge base. Returns 5 categories of pending items in a single call.
Show what needs attention in the knowledge base. Returns 5 categories of pending items in a single call.
Base URL: $ZEABUR_RAG_URL
Auth: Authorization: Bearer $RAG_API_KEY — admin scope required
curl -s "$ZEABUR_RAG_URL/api/admin/triage?days=14&similarity_threshold=0.4&limit=20" \
-H "Authorization: Bearer $RAG_API_KEY"
| Param | Default | Description |
|---|---|---|
days | 14 | Time window for signals (reports and learned have no time window) |
similarity_threshold | 0.4 | Queries with top_similarity below this are flagged. Note: in hybrid mode (RRF), scores are ~0–0.02 so the default 0.4 catches all hybrid queries. Adjust to ~0.005 for meaningful hybrid-mode filtering. |
limit | 20 | Max items per category |
Returns JSON with 5 arrays + counts (true totals, not truncated) + has_more (boolean per category):
open_reports — reports with status='open', no time window. Fields: id, type, chunk_id, query, detail, created_at.unverified_learned — learned chunks with status='unverified', no time window. Fields: id, title, tags, created_at, age_days.low_similarity_signals — queries where the top score fell below the threshold, within the time window, deduped by query text. The score is RRF in hybrid mode (~0–0.02) or cosine in semantic mode (0–1). Fields: id, query, top_similarity, top_chunk_ids, client, created_at.negative_feedback_signals — queries that got negative user feedback, within the time window. Fields: id, query, feedback_score, feedback_comment, top_chunk_ids, created_at.needs_frontmatter — chunks whose tags include "needs-frontmatter", meaning they were ingested from a source file that lacks proper frontmatter and got a temporary ID. Fields: id, title, tags, url, source, created_at.If a category query fails, its array is empty and a <category>_error field appears with the error message.
zeabur-rag-inspect with the chunk ID.zeabur-rag-curate.If every count is 0, the knowledge base has no pending maintenance. Report: "The knowledge base has no pending items — looks healthy ✅"
npx claudepluginhub zeabur/rag-service --plugin rag-serviceProduces a knowledge dashboard showing recent entries, corrections, expiring items, stale knowledge, and unresolved work. Supports team mode for cross-author context.
Runs 14 health checks on an Obsidian knowledge base: broken wikilinks, orphan pages, stale articles, and more. Reports issues by severity.
Builds and queries AI-powered knowledge bases from claude-mem observations, enabling focused Q&A on past work patterns, decisions, and bugfixes.