@olorehq/olore 0.3.2 → 0.4.0
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.
- package/README.md +14 -11
- package/dist/cli.js +8 -4
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -7,17 +7,17 @@
|
|
|
7
7
|
██║ ██║██║ ██║ ██║██╔══██╗██╔══╝
|
|
8
8
|
╚██████╔╝███████╗╚██████╔╝██║ ██║███████╗
|
|
9
9
|
╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝
|
|
10
|
-
|
|
10
|
+
Stop the hallucinations.
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
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`
|
|
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
|
-
`
|
|
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
|
-
|
|
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** —
|
|
47
|
-
- **Codex** —
|
|
48
|
-
- **OpenCode** —
|
|
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
|
|
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
|
|
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
|
package/dist/cli.js
CHANGED
|
@@ -1041,16 +1041,20 @@ import pc4 from "picocolors";
|
|
|
1041
1041
|
// package.json
|
|
1042
1042
|
var package_default = {
|
|
1043
1043
|
name: "@olorehq/olore",
|
|
1044
|
-
version: "0.
|
|
1045
|
-
description: "
|
|
1044
|
+
version: "0.4.0",
|
|
1045
|
+
description: "Version-pinned docs for AI coding agents. Offline. Local-first.",
|
|
1046
1046
|
keywords: [
|
|
1047
1047
|
"ai",
|
|
1048
1048
|
"documentation",
|
|
1049
1049
|
"claude",
|
|
1050
1050
|
"codex",
|
|
1051
|
+
"opencode",
|
|
1051
1052
|
"coding-assistant",
|
|
1052
1053
|
"context",
|
|
1053
|
-
"llm"
|
|
1054
|
+
"llm",
|
|
1055
|
+
"skills",
|
|
1056
|
+
"agents-md",
|
|
1057
|
+
"claude-md"
|
|
1054
1058
|
],
|
|
1055
1059
|
license: "MIT",
|
|
1056
1060
|
author: "olorehq",
|
|
@@ -1807,7 +1811,7 @@ function truncate(str, maxLen) {
|
|
|
1807
1811
|
var require2 = createRequire(import.meta.url);
|
|
1808
1812
|
var { version } = require2("../package.json");
|
|
1809
1813
|
var program = new Command();
|
|
1810
|
-
program.name("olore").description("
|
|
1814
|
+
program.name("olore").description("Version-pinned docs for AI coding agents").version(version).addHelpText("after", `
|
|
1811
1815
|
${pc12.gray("May the Skill be with you.")}`);
|
|
1812
1816
|
program.command("init").description("Initialize a documentation package in the current directory").option("-n, --name <name>", "Package name (default: folder name)").option("-v, --version <version>", "Package version (default: latest)").option("-y, --yes", "Skip prompts, use defaults").action(async (options) => {
|
|
1813
1817
|
try {
|
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olorehq/olore",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Version-pinned docs for AI coding agents. Offline. Local-first.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"documentation",
|
|
8
8
|
"claude",
|
|
9
9
|
"codex",
|
|
10
|
+
"opencode",
|
|
10
11
|
"coding-assistant",
|
|
11
12
|
"context",
|
|
12
|
-
"llm"
|
|
13
|
+
"llm",
|
|
14
|
+
"skills",
|
|
15
|
+
"agents-md",
|
|
16
|
+
"claude-md"
|
|
13
17
|
],
|
|
14
18
|
"license": "MIT",
|
|
15
19
|
"author": "olorehq",
|