create-lore 0.12.6 → 0.12.8

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/CONTRIBUTING.md CHANGED
@@ -40,7 +40,7 @@ LORE_TEMPLATE=../lore npm test
40
40
 
41
41
  - Keep changes focused — one concern per PR
42
42
  - Match existing code style
43
- - For framework changes (hooks, skills, lib), contribute to [lorehq/lore](https://github.com/lorehq/lore) instead
43
+ - For harness changes (hooks, skills, lib), contribute to [lorehq/lore](https://github.com/lorehq/lore) instead
44
44
 
45
45
  ## Reporting Issues
46
46
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # create-lore
2
2
 
3
- Bootstrap a new [Lore](https://github.com/lorehq/lore) projectpersistent memory for AI coding agents.
3
+ Scaffold a new [Lore](https://github.com/lorehq/lore) instancea coding agent harness.
4
4
 
5
5
  ## The Problem
6
6
 
@@ -8,7 +8,7 @@ AI coding agents (Claude Code, Cursor, OpenCode) forget everything between sessi
8
8
 
9
9
  ## What Lore Does
10
10
 
11
- Lore wraps your coding agent in a git-versioned knowledge base. Hooks fire automatically to reinforce knowledge capture as you work. Gotchas become skills, and every future session starts with what previous sessions learned. Complex work delegates to focused workers loaded with curated skills.
11
+ Lore is a harness that wraps your coding agent in a git-versioned knowledge base with convention enforcement, orchestrated delegation, and work tracking. Hooks fire automatically to reinforce knowledge capture as you work. Gotchas become skills, conventions are enforced at write-time, and complex work delegates to focused workers loaded with curated skills.
12
12
 
13
13
  - **Skills** — API quirks, auth gotchas, encoding tricks. Captured once, loaded forever.
14
14
  - **Knowledge docs** — Environment details, runbooks, architecture decisions. Accumulated across sessions.
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- // create-lore: Bootstrap a new Lore knowledge-persistent agent repo.
3
+ // create-lore: Scaffold a new Lore coding agent harness.
4
4
  //
5
5
  // Usage: npx create-lore <name|path>
6
6
  //
@@ -25,7 +25,7 @@ const arg = process.argv[2];
25
25
  if (arg === '--help' || arg === '-h') {
26
26
  console.log(`create-lore v${pkg.version}\n`);
27
27
  console.log('Usage: create-lore <name|path>\n');
28
- console.log('Bootstrap a new Lore knowledge-persistent agent repo.\n');
28
+ console.log('Scaffold a new Lore coding agent harness.\n');
29
29
  console.log('Examples:');
30
30
  console.log(' npx create-lore myproject # creates ./myproject/');
31
31
  console.log(' npx create-lore ./custom-path # creates at specific path');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-lore",
3
- "version": "0.12.6",
4
- "description": "Create a new Lore knowledge-persistent agent repo",
3
+ "version": "0.12.8",
4
+ "description": "Scaffold a new Lore coding agent harness",
5
5
  "bin": {
6
6
  "create-lore": "bin/create-lore.js"
7
7
  },
@@ -14,7 +14,8 @@
14
14
  "lore",
15
15
  "agent",
16
16
  "ai",
17
- "knowledge"
17
+ "harness",
18
+ "coding-agent"
18
19
  ],
19
20
  "license": "Apache-2.0",
20
21
  "repository": {
@@ -85,9 +85,6 @@ describe('create-lore', () => {
85
85
  '.github',
86
86
  'node_modules',
87
87
  'site',
88
- 'docs/assets',
89
- 'docs/javascripts',
90
- 'docs/stylesheets',
91
88
  'CODE_OF_CONDUCT.md',
92
89
  'CONTRIBUTING.md',
93
90
  'SECURITY.md',