create-lore 0.10.0 → 0.11.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.
- package/.github/workflows/test.yml +1 -1
- package/README.md +2 -1
- package/SECURITY.md +1 -1
- package/bin/create-lore.js +1 -0
- package/package.json +1 -1
- package/test/create-lore.test.js +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Lore wraps your coding agent in a git-versioned knowledge base. Hooks fire autom
|
|
|
14
14
|
- **Knowledge docs** — Environment details, runbooks, architecture decisions. Accumulated across sessions.
|
|
15
15
|
- **Work tracking** — Roadmaps, plans, and brainstorms that persist and appear in every session banner.
|
|
16
16
|
- **Hooks** — Session init, capture reminders, memory protection. All automatic.
|
|
17
|
-
- **Docs UI & Semantic Search** — Run `/lore-docker` to start a local Docker sidecar. Gives agents semantic search over the full knowledge base and opens a live MkDocs site for browsing it visually. Falls back to Grep/Glob without Docker.
|
|
17
|
+
- **Docs UI & Semantic Search** — Run `/lore-docker` to start a local Docker sidecar. Gives agents semantic search over the full knowledge base and opens a live MkDocs site for browsing it visually. Falls back to Grep/Glob without Docker — works for small knowledge bases, degrades as docs grow.
|
|
18
18
|
|
|
19
19
|
## Quick Start
|
|
20
20
|
|
|
@@ -49,6 +49,7 @@ npx create-lore --version # show version
|
|
|
49
49
|
|
|
50
50
|
- Node.js 18+
|
|
51
51
|
- git
|
|
52
|
+
- Docker (highly recommended — enables semantic search and docs UI; not required)
|
|
52
53
|
|
|
53
54
|
## Docs
|
|
54
55
|
|
package/SECURITY.md
CHANGED
package/bin/create-lore.js
CHANGED
package/package.json
CHANGED
package/test/create-lore.test.js
CHANGED
|
@@ -166,7 +166,7 @@ describe('create-lore', () => {
|
|
|
166
166
|
run(OUTPUT);
|
|
167
167
|
const parsed = JSON.parse(fs.readFileSync(path.join(OUTPUT, 'opencode.json'), 'utf8'));
|
|
168
168
|
assert.ok(parsed.instructions, 'instructions key exists');
|
|
169
|
-
assert.ok(parsed.instructions.includes('.
|
|
169
|
+
assert.ok(parsed.instructions.includes('CLAUDE.md'), 'instructions includes CLAUDE.md');
|
|
170
170
|
cleanup();
|
|
171
171
|
});
|
|
172
172
|
|