create-lore 0.12.5 → 0.12.7
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 +1 -1
- package/README.md +2 -2
- package/bin/create-lore.js +2 -2
- package/package.json +4 -3
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
|
|
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
|
-
|
|
3
|
+
Scaffold a new [Lore](https://github.com/lorehq/lore) instance — a 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,
|
|
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.
|
package/bin/create-lore.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
// create-lore:
|
|
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('
|
|
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.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.12.7",
|
|
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
|
-
"
|
|
17
|
+
"harness",
|
|
18
|
+
"coding-agent"
|
|
18
19
|
],
|
|
19
20
|
"license": "Apache-2.0",
|
|
20
21
|
"repository": {
|