1. Install
Install the desktop app if you want a visual knowledge base. Install the CLI if you want shell automation or Codex integration.
Desktop install
- Download ZetaNotes_1.0.0_x64_en-US.msi or ZetaNotes_1.0.0_x64-setup.exe.
- Run the installer.
- Open ZetaNotes. On first launch it creates Wiki directories and an index database.
CLI install
- Download zetanotes-cli-1.0.0-windows-x64.zip.
- Extract it to a stable folder, for example
%LOCALAPPDATA%\ZetaNotes\bin. - Add that folder to
PATH. - Run
zetanotes-cli --versionandzetanotes-cli --json doctor.
2. Desktop basics
The desktop app has a page tree, editor, reading view, graph, review queue, AI Organize panel, and Ask Wiki panel.
- Knowledge directories: daily, concepts, sources, pages, raw.
- Block anchor: a stable ID such as
^b-aB12cD34. - Block reference: a precise reference such as
((b-aB12cD34)). - Page link: a Wiki page link such as
[[concepts/transformer]]. - Provenance: metadata such as source_doc, source_locator, model_id, agent_session_id and confidence.
3. Import and ingest
Import copies a source file into the Wiki raw directory and converts supported files to Markdown when needed. Ingest creates a persistent workflow that can turn raw material into source and concept pages.
- Click Import File or use AI Organize -> Smart Import.
- Select a PDF, DOCX, Markdown or other supported document.
- Review the generated workflow plan.
- Apply the workflow when the operations look correct.
- Open Review to inspect generated blocks and source metadata.
With an OpenAI-compatible LLM configured, ingest can extract better concepts and summaries. Without an LLM, ZetaNotes uses a conservative local fallback and still produces reviewable operations.
4. Ask and maintain
Ask Wiki searches the local index, collects page and block citations, and asks the configured LLM to answer only from those citations. Without an LLM, it returns a cautious fallback answer with citations.
AI Maintenance checks missing anchors, duplicate anchors, dead references, orphan pages, review status and other health issues. It creates a persistent workflow so you can review before applying changes.
5. CLI quick reference
zetanotes-cli --json doctor
zetanotes-cli pages list --json
zetanotes-cli pages read pages/example.md
zetanotes-cli pages write pages/example.md --content "# Example"
zetanotes-cli search "self attention" --json
zetanotes-cli ask "What is self attention?" --json
zetanotes-cli backlinks b-aB12cD34 --json
zetanotes-cli graph --scope concepts/ --json
zetanotes-cli review --status unreviewed --json
zetanotes-cli health --json
Workflow commands
zetanotes-cli import C:\Users\me\Desktop\paper.pdf --json
zetanotes-cli ingest C:\Users\me\Desktop\paper.pdf --instructions "Extract reusable concepts" --json
zetanotes-cli workflows list --json
zetanotes-cli workflows status wiki-ingest-... --json
zetanotes-cli workflows apply wiki-ingest-...
zetanotes-cli maintain --instructions "Fix dead refs and missing anchors" --json
6. Codex skill setup
The bundled skill is named zetanotes-wiki. It lets Codex call zetanotes-cli to inspect, search, ask, ingest or maintain your local Wiki.
Install from the release zip
- Download zetanotes-codex-skill-1.0.0.zip.
- Extract it so the folder becomes
%USERPROFILE%\.codex\skills\zetanotes-wiki\SKILL.md. - Make sure
zetanotes-cli.exeis onPATH. - Restart Codex if the skill list does not refresh automatically.
Install from source
cd E:\zetaagent\zetanotes-cli
.\scripts\install-codex-skill.ps1
Useful Codex skill requests
- Ask: "Use my ZetaNotes Wiki to answer: what is self attention?"
- Search: "Search my ZetaNotes Wiki for transformer and summarize the relevant blocks."
- Ingest: "Ingest C:\Users\me\Desktop\paper.pdf into ZetaNotes and create a reviewable workflow."
- Maintain: "Check my ZetaNotes Wiki for dead refs, missing anchors and orphan pages."
7. Example workflows
Study a paper
- Import the PDF.
- Run Smart Import with:
Extract reusable concepts, key claims, and source-backed summaries. - Review the workflow operations.
- Apply the workflow.
- Ask:
What does this paper say about attention?
Weekly maintenance
- Run AI Maintenance.
- Use instructions:
Fix missing anchors, flag weak provenance, and suggest links between related concepts. - Review operations before applying.
- Open Graph to inspect newly connected pages and blocks.