create-lore 0.10.0 → 0.11.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.
@@ -52,4 +52,4 @@ jobs:
52
52
  run: |
53
53
  node bin/create-lore.js test-project
54
54
  cd test-project
55
- bash scripts/validate-consistency.sh
55
+ bash .lore/scripts/validate-consistency.sh
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
@@ -21,4 +21,4 @@ We will acknowledge receipt within 48 hours and provide a timeline for a fix.
21
21
 
22
22
  | Version | Supported |
23
23
  | ------- | --------- |
24
- | 0.10.x | Yes |
24
+ | 0.11.x | Yes |
@@ -109,6 +109,7 @@ try {
109
109
  'docs',
110
110
  'CLAUDE.md',
111
111
  'opencode.json',
112
+ '.mcp.json',
112
113
  '.gitattributes',
113
114
  '.gitignore',
114
115
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-lore",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Create a new Lore knowledge-persistent agent repo",
5
5
  "bin": {
6
6
  "create-lore": "bin/create-lore.js"