create-lore 0.11.0 → 0.12.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.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "Create a new Lore knowledge-persistent agent repo",
5
5
  "bin": {
6
6
  "create-lore": "bin/create-lore.js"
@@ -166,7 +166,7 @@ describe('create-lore', () => {
166
166
  run(OUTPUT);
167
167
  const parsed = JSON.parse(fs.readFileSync(path.join(OUTPUT, 'opencode.json'), 'utf8'));
168
168
  assert.ok(parsed.instructions, 'instructions key exists');
169
- assert.ok(parsed.instructions.includes('.lore/instructions.md'), 'instructions includes .lore/instructions.md');
169
+ assert.ok(parsed.instructions.includes('CLAUDE.md'), 'instructions includes CLAUDE.md');
170
170
  cleanup();
171
171
  });
172
172