1
0
Fork 0
mirror of https://github.com/imjasonh/cnotes synced 2026-07-07 00:33:04 +00:00

Increase default max_prompts to 400 and format notes.json

- Increase default MaxPrompts from 100 to 400 for more conversation context
- Format .claude/notes.json for better readability

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jason Hall 2025-07-21 18:19:14 -04:00
parent cd1dd80780
commit 747cd49102
Failed to extract signature
2 changed files with 8 additions and 3 deletions

View file

@ -3,7 +3,12 @@
"max_excerpt_length": 5000,
"max_prompts": 2,
"notes_ref": "claude-conversations",
"exclude_patterns": ["password", "token", "key", "secret"],
"exclude_patterns": [
"password",
"token",
"key",
"secret"
],
"user_emoji": "🧑",
"assistant_emoji": "🤖"
}
}

View file

@ -23,7 +23,7 @@ func DefaultNotesConfig() *NotesConfig {
return &NotesConfig{
Enabled: true,
MaxExcerptLength: 5000,
MaxPrompts: 100,
MaxPrompts: 400,
IncludeToolOutput: false, // Privacy: don't include potentially sensitive output
NotesRef: "claude-conversations",
ExcludePatterns: []string{