create-lore 0.8.0 → 0.8.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 (2) hide show
  1. package/README.md +16 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # create-lore
2
2
 
3
- Create a new [Lore](https://github.com/lorehq/lore) knowledge-persistent AI coding framework repo.
3
+ Create a new [Lore](https://github.com/lorehq/lore) knowledge-persistent AI coding agent repo.
4
4
 
5
5
  ## Usage
6
6
 
@@ -8,15 +8,23 @@ Create a new [Lore](https://github.com/lorehq/lore) knowledge-persistent AI codi
8
8
  npx create-lore myproject
9
9
  ```
10
10
 
11
- This creates `lore-myproject/` with the full Lore framework — hooks, skills, scripts, and operating instructions that teach Claude Code to learn and remember across sessions.
11
+ This creates `lore-myproject/` with the full Lore framework — hooks, skills, scripts, and operating instructions that teach your coding agent to learn and remember across sessions.
12
12
 
13
13
  ## What you get
14
14
 
15
- - **AGENTS.md / CLAUDE.md** — Operating instructions Claude Code reads automatically
15
+ - **Instructions** — Operating instructions loaded automatically by each platform
16
16
  - **Hooks** — Session init, memory guard, post-action capture reminders
17
17
  - **Skills** — `create-skill` and `create-agent` for building your knowledge base
18
18
  - **Scripts** — Registry generation, agent generation, consistency validation
19
19
 
20
+ ## Supported platforms
21
+
22
+ - **Claude Code** — `hooks/` + `CLAUDE.md`
23
+ - **Cursor** — `.cursor/hooks/` + `.cursorrules`
24
+ - **OpenCode** — `.opencode/plugins/` + `opencode.json`
25
+
26
+ All platforms share the same knowledge base. No configuration needed.
27
+
20
28
  ## Options
21
29
 
22
30
  ```bash
@@ -31,7 +39,11 @@ cd lore-myproject
31
39
  git add -A && git commit -m "Init Lore"
32
40
  ```
33
41
 
34
- Then open Claude Code in the project. The hooks will fire automatically and the self-learning loop begins.
42
+ Then open the project in your agent. Hooks fire automatically and the self-learning loop begins.
43
+
44
+ ## Docs
45
+
46
+ Full documentation: [lorehq.github.io/lore-docs](https://lorehq.github.io/lore-docs/)
35
47
 
36
48
  ## License
37
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-lore",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Create a new Lore knowledge-persistent agent repo",
5
5
  "bin": {
6
6
  "create-lore": "bin/create-lore.js"