create-lore 0.3.0 → 0.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-lore",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "description": "Create a new Lore knowledge-persistent agent repo",
5
5
  "bin": {
6
6
  "create-lore": "bin/create-lore.js"
@@ -98,7 +98,7 @@ describe('create-lore', () => {
98
98
  run(OUTPUT);
99
99
  const parsed = JSON.parse(fs.readFileSync(path.join(OUTPUT, 'opencode.json'), 'utf8'));
100
100
  assert.ok(parsed.instructions, 'instructions key exists');
101
- assert.ok(parsed.instructions.includes('CLAUDE.md'), 'instructions includes CLAUDE.md');
101
+ assert.ok(parsed.instructions.includes('.lore/instructions.md'), 'instructions includes .lore/instructions.md');
102
102
  cleanup();
103
103
  });
104
104