@olorehq/olore 0.3.2 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +14 -11
  2. package/dist/cli.js +15425 -1058
  3. package/package.json +13 -10
package/README.md CHANGED
@@ -7,17 +7,17 @@
7
7
  ██║ ██║██║ ██║ ██║██╔══██╗██╔══╝
8
8
  ╚██████╔╝███████╗╚██████╔╝██║ ██║███████╗
9
9
  ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝
10
- O(pen) Lore for AI Agents
10
+ Stop the hallucinations.
11
11
  ```
12
12
 
13
- Documentation package manager for AI coding agents. Local-first. Offline-ready.
13
+ Version-pinned docs for AI coding agents. Local-first. Offline-ready.
14
14
 
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
18
  npm install -g @olorehq/olore
19
19
  olore install prisma
20
- olore inject
20
+ olore inject prisma
21
21
  ```
22
22
 
23
23
  That's it. Your agent now has Prisma docs. No hallucinations.
@@ -28,7 +28,7 @@ Your AI coding agent makes decisions about which tools to invoke. Sometimes it d
28
28
 
29
29
  **Passive context beats skills.** Vercel's agentic coding eval showed agents with passive documentation context scored **100%** vs **53%** with tool-based retrieval. The difference: passive context is always there. The agent doesn't have to decide to look it up.
30
30
 
31
- `olore inject` embeds a compact documentation index directly into your `AGENTS.md` / `CLAUDE.md`. The agent reads it automatically on every session — no invocation decision needed. No network. No retrieval pipeline.
31
+ `olore inject` writes a skill reference table into your `AGENTS.md` / `CLAUDE.md`. Agents see which docs are available and invoke skills when needed — no guessing, no network calls.
32
32
 
33
33
  - **Version-pinned** — same docs, every run, every machine
34
34
  - **Offline** — works on planes, in CI, behind firewalls
@@ -37,26 +37,29 @@ Your AI coding agent makes decisions about which tools to invoke. Sometimes it d
37
37
 
38
38
  ## Available Packages
39
39
 
40
- `prisma` · `nextjs` · `zod` · `drizzle` · `langchain` · `tanstack-query` · `claude-code` · `codex` · `opencode` · `cargo` · `agentskills`
40
+ `a2a` · `agentskills` · `astro` · `axiom` · `azure-sdk-js` · `cargo` · `checkly` · `claude-code` · `clerk` · `cloudflare` · `codex` · `convex` · `drizzle` · `github-actions` · `hono` · `langchain` · `lucia` · `neon` · `neverthrow` · `nextjs` · `openclaw` · `opencode` · `opennext` · `partykit` · `partyserver` · `posthog` · `prettier` · `prisma` · `rhf` · `sentry` · `supabase` · `t3-env` · `tanstack-query` · `trpc` · `tsf` · `turso` · `vitest` · `xstate` · `zod`
41
41
 
42
- More on the [registry](https://github.com/olorehq/olore). Contributions welcome.
42
+ Browse all with `olore search`. Contributions welcome on [GitHub](https://github.com/olorehq/olore).
43
43
 
44
44
  ## Supported Agents
45
45
 
46
- - **Claude Code** — injects into `CLAUDE.md`
47
- - **Codex** — injects into `AGENTS.md`
48
- - **OpenCode** — injects into `AGENTS.md`
46
+ - **Claude Code** — skills in `~/.claude/skills/`
47
+ - **Codex** — skills in `~/.codex/skills/`
48
+ - **OpenCode** — skills in `~/.config/opencode/skills/`
49
49
 
50
50
  ## Commands
51
51
 
52
52
  | Command | Description |
53
53
  |---|---|
54
54
  | `olore install <pkg>` | Install a documentation package |
55
- | `olore inject` | Inject doc indexes into AGENTS.md / CLAUDE.md |
55
+ | `olore inject <pkg...>` | Write skill reference table into AGENTS.md / CLAUDE.md |
56
56
  | `olore inject --remove` | Remove injected content |
57
+ | `olore init` | Auto-detect project deps and install matching docs |
58
+ | `olore search [query]` | Browse available packages |
57
59
  | `olore list` | List installed packages |
58
60
  | `olore remove <pkg>` | Remove a package |
59
- | `olore search` | Browse available packages |
61
+ | `olore link <path>` | Link a local package for development |
62
+ | `olore prune` | Clean up dangling symlinks and orphaned packages |
60
63
  | `olore doctor` | Diagnose issues |
61
64
 
62
65
  ## Links