feat: source file tracking and invocation logging#1
Merged
rolandmarg merged 2 commits intomainfrom Apr 1, 2026
Merged
Conversation
Two features: (1) add file path to entry XML and stderr output, (2) JSONL log file for auditing matched invocations. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Add filePath to LorebookEntry, display relative paths in XML source attribute - Print matched entries to stderr so user sees what loaded - New src/log.ts: JSONL log at ~/.claude/lorebook/lorebook.log (matches-only) - Log records prompt, matched entry headers (name, source, keywords) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
<entry>in the injected XML now includes asourceattribute with the relative file path (.claude/lorebook/foo.mdor~/.claude/lorebook/foo.md). Matched entries are also printed to stderr so the user sees what loaded in their terminal.~/.claude/lorebook/lorebook.log. Each line records timestamp, full prompt, and matched entry headers (name, source, keywords). Only logs when at least one entry matched. Fire-and-forget — never breaks the hook.Test plan
bun test)bun run typecheck)lorebook test "some prompt"and verifysourceattribute appears in XML[lorebook]lines~/.claude/lorebook/lorebook.logafter a matched invocation🤖 Generated with Claude Code