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:
parent
cd1dd80780
commit
747cd49102
2 changed files with 8 additions and 3 deletions
|
|
@ -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": "🤖"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue