Guides
Practical GNO recipes for keeping collections fresh, building personal knowledge bases, connecting AI tools, and recovering stale indexes.
GNO is not only for codebases. It works well for a personal knowledge base, research archive, meeting-note library, PDF folder, or Karpathy-style “memory bank” that your AI tools can search before they answer. These recipes start from useful outcomes, not implementation details.
Use gno daemon when you want local file changes to become searchable without keeping the Web UI open.
gno init ~/Documents/Knowledge --name knowledge
gno index --models-pull
gno daemon --detach
gno daemon --status
gno daemon --stopThe daemon watches configured collections, syncs changed files, and embeds new chunks. Use --no-sync-on-start if you only want future changes handled. For git-backed folders, run gno update --git-pull or gno index --git-pull when you want remote commits pulled in.
gno index, then keep them fresh with gno daemon --detach.gno collection add ~/Documents/Research --name research
gno collection add ~/Documents/Notes --name notes
gno collection add ~/Downloads/Papers --name papers
gno index
gno mcp install --target claude-desktop
gno skill install --target all --scope user --forcePick the integration by how you want the assistant to behave.
/gno lookups with low context overhead.gno mcp install --target cursor --scope project
gno skill install --target codex --scope userStart the local workspace, then add folders and manage indexing from the browser.
gno serve
open http://localhost:3000Use Search for retrieval, Ask for cited answers, Browse for document navigation, Graph for relationships, and Collections for folder management.
gno ls --collection notes.gno update.gno embed notes.gno index.gno doctor.If you changed the embedding model, clear stale collection embeddings before rebuilding them:
gno collection clear-embeddings notes
gno embed notesCombine filters when your archive grows beyond simple search.
gno query "learning loops" --collection research --tags-any ai,pkm
gno ask "what are my strongest notes on retrieval?" --since "last month" --answer
gno graph --neighbors gno://notes/llm-memory.md --include-similar
gno graph --from gno://notes/a.md --to gno://notes/b.mdLocal GNO stays private. When you intentionally want to publish a note or collection, export an artifact and upload it through gno.sh Studio.
gno publish export atlas --out ~/Downloads/atlas.jsonThen open /studio, import the artifact, and pick public, secret-link, invite-only, or encrypted sharing.