Stop the
hallucinations.
> Version-pinned docs for AI coding agents.
> Inject a reference table so agents find them.
> For Claude Code, Codex, OpenCode.
Quick Start
npm install -g @olorehq/oloreolore install zod>> Supported_Agents
> tap or hover to see how each agent uses olore
>> How_To_Use
01 Install
$ olore install prisma
Downloads version-pinned docs to ~/.olore/ and symlinks them into every agent's skill directory. Claude Code, Codex, OpenCode — all get the docs instantly.
02 Inject (optional)
$ olore inject prisma
Adds a reference table to AGENTS.md so agents know docs exist and invoke them automatically. Commit it — your whole team gets the docs.
03 Code
Your agent has the right docs. No hallucinated APIs. No outdated patterns.
[ NO DOCS ] 53% PASS RATE
> // Relies on training data...
> import { z } from 'zod';
> const s = z.string().date();
ERROR Property 'date' does not exist on type 'ZodString'.
[ WITH OLORE ] 100% PASS RATE
> // Agent uses the right API
> import { z } from 'zod';
> const s = z.string().regex(/\d{4}-\d{2}-\d{2}/);
OK Valid code for Zod v3.
>> System_Comparison
| Spec | Context7 | OLORE |
|---|---|---|
| Reliability | AGENT MUST INVOKE | PASSIVE DISCOVERY |
| Network | REQUIRED | OFFLINE |
| Version | LATEST ONLY | PINNED |
| Setup | MCP CONFIG | ONE COMMAND |
| Private Docs | NO | YES |
| Context | SNIPPETS | FULL DOCS |
>> Official_Packages
>> Capabilities
Build From Any Repo
Point at a GitHub repo, get a ready-to-use doc package. Automated build pipeline handles download, filtering, and skill generation.
Offline-First
All documentation stored locally. No internet connection required after install. No MCP server to configure.
Version Pinned
Pin docs to your exact library version. No hallucinating future APIs or deprecated patterns.
Private Docs
Generate packages for your internal APIs. No data ever leaves your machine.
Multi-Agent
One install, every agent. Works with Claude Code, Codex, OpenCode, and any tool that supports Agent Skills.
Passive Discovery
Inject a reference table into AGENTS.md so agents know docs exist. They invoke the right skill automatically.
$ rm -rf hallucinations
Hits the target. Every time. (Shocking, we know.)
[ Add a Library ]