GitHub starsLicensev0.4.3

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/olore
>
olore install zod
[ TERMINAL ]80x24

>> Supported_Agents

[ CLAUDE CODE ][ CODEX ][ OPENCODE ]

> 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

> // Agent has no version-pinned docs
> // 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

> // Docs available via skills
> // 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

SpecContext7OLORE
ReliabilityAGENT MUST INVOKEPASSIVE DISCOVERY
NetworkREQUIREDOFFLINE
VersionLATEST ONLYPINNED
SetupMCP CONFIGONE COMMAND
Private DocsNOYES
ContextSNIPPETSFULL DOCS

>> Official_Packages

nextjsprismadrizzlezodtailwindcssclerksupabasesentryplaywrighthonoai-sdkbuneslinttanstack-queryzustand
+ 54 more Browse Registry

>> 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.

>> Contributors

Built by the community, for the community.

Contributors

$ rm -rf hallucinations

Hits the target. Every time. (Shocking, we know.)

[ Add a Library ]