Query Skill
Answer questions using the brain's knowledge with 3-layer search and synthesis.
Contract
This skill guarantees:
- Every answer is grounded in brain content (no hallucination)
- Every claim has a citation tracing back to a specific page slug
- Gaps are flagged explicitly ("the brain doesn't have information on X")
- Source precedence is respected (user statements > compiled truth > timeline > external)
- Conflicting sources are noted with both citations
Phases
- Decompose the question into search strategies:
- Keyword search for specific names, dates, terms
- Semantic query for conceptual questions
- Structured queries (list by type, backlinks) for relational questions
- Execute searches:
- Keyword search gbrain for FTS matches (search)
- Hybrid search gbrain for semantic+keyword with expansion (query)
- List pages in gbrain by type or check backlinks for structural queries
- Read top results. Read the top 3-5 pages from gbrain to get full context.
- Synthesize answer with citations. Every claim traces back to a specific page slug.
- Flag gaps. If the brain doesn't have info, say "the brain doesn't have information on X" rather than hallucinating.
Anti-Patterns
- Answering from general knowledge when the brain has relevant content
- Hallucinating facts not in the brain
- Silently picking one source when sources conflict
- Loading full pages when search chunks are sufficient
- Ignoring source precedence (user statements are highest authority)
Output Format
Answers should include:
- Direct response to the question
- Citations: "According to [Source: people/jane-doe, compiled truth]..."
- Gap flags: "The brain doesn't have information on X"
- Conflict notes when sources disagree
Quality Rules
- Never hallucinate. Only answer from brain content.
- Cite sources: "According to concepts/do-things-that-dont-scale..."
- Flag stale results: if a search result shows [STALE], note that the info may be outdated
- For "who" questions, use backlinks and typed links to find connections
- For "what happened" questions, use timeline entries
- For "what do we know" questions, read compiled_truth directly
Token-Budget Awareness
Search returns chunks, not full pages. Read the excerpts first before deciding
whether to load a full page.
gbrain search / gbrain query return ranked chunks with context snippets.
These are often enough to answer the question directly.
- Only use
gbrain get <slug> to load the full page when a chunk confirms the
page is relevant and you need more context (e.g., compiled truth, timeline).
- "Tell me about X" -- get the full page (the user wants the complete picture).
- "Did anyone mention Y?" -- search results are enough (the user wants a yes/no with evidence).
Source precedence
When multiple sources provide conflicting information, follow this precedence:
- User's direct statements (highest authority -- what the user told you directly)
- Compiled truth (the brain's synthesized, cited understanding)
- Timeline entries (raw evidence, reverse-chronological)
- External sources (web search, API enrichment -- lowest authority)
When sources conflict, note the contradiction with both citations. Don't silently
pick one.
Citation in Answers
When referencing brain pages in your answer, propagate inline citations:
- Cite the page: "According to [Source: people/jane-doe, compiled truth]..."
- When brain pages have inline
[Source: ...] citations, propagate them so
the user can trace facts to their origin
- When you synthesize across multiple pages, cite all sources
Graph Traversal (v0.10.1+)
For relationship questions ("who knows who at X?", "connections between A and B",
"who works at Acme?", "who attended the standup?"), use the graph layer instead
of full-text search:
gbrain graph-query <slug> --type <link_type> --depth N --direction in|out|both
- Available link types:
attended, works_at, invested_in, founded, advises, mentions, source
--direction in answers "who points to X?" (e.g., who works at company X)
--direction out answers "what does X point to?" (default)
--depth N controls multi-hop traversal (default 5)
Examples:
- "Who works at Acme?" →
gbrain graph-query companies/acme --type works_at --direction in
- "Who attended Demo Day W26?" →
gbrain graph-query meetings/demo-day-w26 --type attended --direction out
- "What companies has Emily advised?" →
gbrain graph-query people/emily --type advises --direction out
- "Who has Alice met (via meetings)?" →
gbrain graph-query people/alice --type attended --depth 2
Combine with gbrain query for queries that need BOTH semantic similarity AND
graph structure. Search results are ranked with a small backlink boost so well-
connected entities surface higher.
Search Quality Awareness
If search results seem off (wrong results, missing known pages, irrelevant hits):
- Run
gbrain doctor --json to check index health
- Check embedding coverage -- partial embeddings degrade hybrid search
- Compare keyword search (
gbrain search) vs hybrid search (gbrain query)
for the same query to isolate whether the issue is embedding-related
- Report search quality issues in the maintain workflow (see maintain skill)
Tools Used
- Keyword search gbrain (search)
- Hybrid search gbrain (query)
- Read a page from gbrain (get_page)
- List pages in gbrain with filters (list_pages)
- Check backlinks in gbrain (get_backlinks)
- Traverse the link graph in gbrain (traverse_graph)
- View timeline entries in gbrain (get_timeline)
1---2name: query3description: Answer questions using the brain's knowledge with 3-layer search, synthesis, and citation propagation. Use when the user asks a question, wants a lookup, or needs information from the brain.4---56# Query Skill78Answer questions using the brain's knowledge with 3-layer search and synthesis.910## Contract1112This skill guarantees:13- Every answer is grounded in brain content (no hallucination)14- Every claim has a citation tracing back to a specific page slug15- Gaps are flagged explicitly ("the brain doesn't have information on X")16- Source precedence is respected (user statements > compiled truth > timeline > external)17- Conflicting sources are noted with both citations1819## Phases20211. **Decompose the question** into search strategies:22 - Keyword search for specific names, dates, terms23 - Semantic query for conceptual questions24 - Structured queries (list by type, backlinks) for relational questions252. **Execute searches:**26 - Keyword search gbrain for FTS matches (search)27 - Hybrid search gbrain for semantic+keyword with expansion (query)28 - List pages in gbrain by type or check backlinks for structural queries293. **Read top results.** Read the top 3-5 pages from gbrain to get full context.304. **Synthesize answer** with citations. Every claim traces back to a specific page slug.315. **Flag gaps.** If the brain doesn't have info, say "the brain doesn't have information on X" rather than hallucinating.3233## Anti-Patterns3435- Answering from general knowledge when the brain has relevant content36- Hallucinating facts not in the brain37- Silently picking one source when sources conflict38- Loading full pages when search chunks are sufficient39- Ignoring source precedence (user statements are highest authority)4041## Output Format4243Answers should include:44- Direct response to the question45- Citations: "According to [Source: people/jane-doe, compiled truth]..."46- Gap flags: "The brain doesn't have information on X"47- Conflict notes when sources disagree4849## Quality Rules5051- Never hallucinate. Only answer from brain content.52- Cite sources: "According to concepts/do-things-that-dont-scale..."53- Flag stale results: if a search result shows [STALE], note that the info may be outdated54- For "who" questions, use backlinks and typed links to find connections55- For "what happened" questions, use timeline entries56- For "what do we know" questions, read compiled_truth directly5758## Token-Budget Awareness5960Search returns **chunks**, not full pages. Read the excerpts first before deciding61whether to load a full page.6263- `gbrain search` / `gbrain query` return ranked chunks with context snippets.64 These are often enough to answer the question directly.65- Only use `gbrain get <slug>` to load the full page when a chunk confirms the66 page is relevant and you need more context (e.g., compiled truth, timeline).67- **"Tell me about X"** -- get the full page (the user wants the complete picture).68- **"Did anyone mention Y?"** -- search results are enough (the user wants a yes/no with evidence).6970### Source precedence7172When multiple sources provide conflicting information, follow this precedence:73741. **User's direct statements** (highest authority -- what the user told you directly)752. **Compiled truth** (the brain's synthesized, cited understanding)763. **Timeline entries** (raw evidence, reverse-chronological)774. **External sources** (web search, API enrichment -- lowest authority)7879When sources conflict, note the contradiction with both citations. Don't silently80pick one.8182## Citation in Answers8384When referencing brain pages in your answer, propagate inline citations:85- Cite the page: "According to [Source: people/jane-doe, compiled truth]..."86- When brain pages have inline `[Source: ...]` citations, propagate them so87 the user can trace facts to their origin88- When you synthesize across multiple pages, cite all sources8990## Graph Traversal (v0.10.1+)9192For relationship questions ("who knows who at X?", "connections between A and B",93"who works at Acme?", "who attended the standup?"), use the graph layer instead94of full-text search:9596- `gbrain graph-query <slug> --type <link_type> --depth N --direction in|out|both`97- Available link types: `attended`, `works_at`, `invested_in`, `founded`, `advises`, `mentions`, `source`98- `--direction in` answers "who points to X?" (e.g., who works at company X)99- `--direction out` answers "what does X point to?" (default)100- `--depth N` controls multi-hop traversal (default 5)101102Examples:103- "Who works at Acme?" → `gbrain graph-query companies/acme --type works_at --direction in`104- "Who attended Demo Day W26?" → `gbrain graph-query meetings/demo-day-w26 --type attended --direction out`105- "What companies has Emily advised?" → `gbrain graph-query people/emily --type advises --direction out`106- "Who has Alice met (via meetings)?" → `gbrain graph-query people/alice --type attended --depth 2`107108Combine with `gbrain query` for queries that need BOTH semantic similarity AND109graph structure. Search results are ranked with a small backlink boost so well-110connected entities surface higher.111112## Search Quality Awareness113114If search results seem off (wrong results, missing known pages, irrelevant hits):115- Run `gbrain doctor --json` to check index health116- Check embedding coverage -- partial embeddings degrade hybrid search117- Compare keyword search (`gbrain search`) vs hybrid search (`gbrain query`)118 for the same query to isolate whether the issue is embedding-related119- Report search quality issues in the maintain workflow (see maintain skill)120121## Tools Used122123- Keyword search gbrain (search)124- Hybrid search gbrain (query)125- Read a page from gbrain (get_page)126- List pages in gbrain with filters (list_pages)127- Check backlinks in gbrain (get_backlinks)128- Traverse the link graph in gbrain (traverse_graph)129- View timeline entries in gbrain (get_timeline)