원클릭으로
quaid-query
Answer questions from the brain using FTS5 + semantic search + structured queries. Synthesize across multiple pages. Cite sources.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Answer questions from the brain using FTS5 + semantic search + structured queries. Synthesize across multiple pages. Cite sources.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Resolve knowledge gaps: fetch unresolved gaps, assess sensitivity, generate research queries, ingest findings, and close gaps with a resolution slug.
Interrupt-driven alerts: detect and surface new contradictions, stale pages, resolved gaps, and embedding drift. Priority-classified with deduplication.
Ingest meeting notes, articles, documents, and conversations into Quaid. Handles idempotent ingestion for exact-byte duplicates and vault-backed sync.
Keep the brain healthy: detect and resolve contradictions via the correction / supersede workflow, validate referential integrity, triage knowledge gaps, find orphaned pages, and compact the database.
Agent-guided binary upgrades: version check, channel detection, download via install.sh (or manual asset fetch + SHA-256 verify), and post-upgrade validation.
Bootstrap a fresh Quaid install in one guided flow: initialize the database, attach a vault collection, install the background serve daemon, and wire MCP clients (Claude Code, Cursor). Use when onboarding a new machine or a new agent that has never run Quaid before.
| name | quaid-query |
| description | Answer questions from the brain using FTS5 + semantic search + structured queries. Synthesize across multiple pages. Cite sources. |
quaid query "who knows about fintech?"
quaid query "who knows about fintech?" --wing people
quaid query "AI agents" --limit 5 --json
Runs the four-layer search strategy and returns ranked results under a token budget.
quaid search "machine learning"
quaid search "fundraising" --wing companies
quaid search "infrastructure" --limit 10 --json
Pure BM25-ranked keyword search over compiled_truth + timeline.
quaid get people/alice
quaid get people/alice --json
Direct slug lookup. Returns the full page content or JSON representation.
[[slug]], return that page immediately. Skip all other layers.compiled_truth + timeline.base, large,
m3, or another Hugging Face model ID selected via QUAID_MODEL / --model.
Currently falls back to a SHA-256 hash placeholder when Candle weights are unavailable.set_union or rrf).The query command applies a token budget to results:
--limit--token-budgetAll search commands support --json for structured output:
query --json: array of SearchResult objectssearch --json: array of SearchResult objectsget --json: full Page objectlist --json: array of page summary objectsquaid config set search_merge_strategy rrf # reciprocal rank fusion
quaid config set search_merge_strategy union # set union (default)
A namespace is an isolated partition of the brain (a project, a client, a privacy boundary). Scope a search to one namespace to keep results clean and to respect privacy boundaries between contexts.
quaid search "deadline" --namespace acme
quaid query "open questions" --namespace acme --limit 5
The MCP tools take the same filter: memory_search and memory_query accept an
optional namespace (and an optional collection) field. Omitting it searches
global memory. List available namespaces with quaid namespace list.
Use a namespace filter whenever the question is project- or client-specific — it prevents one context's facts from leaking into another's answers.
Quaid extracts facts from captured conversations (see the ingest skill's conversation-capture flow), and corrections supersede rather than delete the prior fact. By default search returns only the current head of each fact.
include_superseded:quaid search "title" --namespace acme --include-superseded
quaid query "what did we decide about pricing" --include-superseded
The MCP tools expose the same include_superseded: true flag.