@scotthamilton77/sidekick 0.1.4 → 0.1.5
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/assets/sidekick/defaults/features/reminders.defaults.yaml +5 -0
- package/assets/sidekick/defaults/features/session-summary.defaults.yaml +3 -0
- package/assets/sidekick/defaults/features/statusline.defaults.yaml +1 -1
- package/assets/sidekick/reminders/user-prompt-submit.yaml +1 -1
- package/dist/bin.js +379 -214
- package/dist/daemon.js +425 -215
- package/package.json +1 -1
|
@@ -11,6 +11,11 @@ settings:
|
|
|
11
11
|
# Fires when: toolsThisTurn >= pause_and_reflect_threshold
|
|
12
12
|
pause_and_reflect_threshold: 60
|
|
13
13
|
|
|
14
|
+
# Minimum number of conversation messages (user + assistant turns) between
|
|
15
|
+
# user-prompt-submit reminder injections. The reminder always fires on the
|
|
16
|
+
# first prompt of a session, then waits until this many messages have elapsed.
|
|
17
|
+
user_prompt_submit_threshold: 10
|
|
18
|
+
|
|
14
19
|
# Glob patterns that trigger verify-completion reminder on file edit.
|
|
15
20
|
# Uses picomatch syntax: https://github.com/micromatch/picomatch
|
|
16
21
|
# Only edits to files matching these patterns will stage the reminder.
|
|
@@ -112,3 +112,6 @@ settings:
|
|
|
112
112
|
# Applied AFTER allowList/blockList filtering.
|
|
113
113
|
# Example: { darth-vader: 100, emperor: 50 }
|
|
114
114
|
weights: {}
|
|
115
|
+
# Preserve persona across /clear instead of re-rolling
|
|
116
|
+
# When true, /clear keeps the same persona. When false, a new persona is randomly selected.
|
|
117
|
+
persistThroughClear: true
|
|
@@ -40,7 +40,7 @@ settings:
|
|
|
40
40
|
# With buffer: "{tokenUsageActual}|{tokenUsageEffective}" → "45k|90k"
|
|
41
41
|
# Verbose: "{contextBar} {tokenUsageActual}/{contextWindow} ({tokenPercentageEffective})"
|
|
42
42
|
#
|
|
43
|
-
format: "{personaName,prefix='[',suffix='] | '}{model,prefix='[',suffix='] | '}{contextBar} {tokenPercentageActual} | {logs} | {cwd}{branch}
|
|
43
|
+
format: "{personaName,prefix='[',suffix='] | '}{model,prefix='[',suffix='] | '}{contextBar} {tokenPercentageActual} | {logs} | {cwd}{branch} | {title}\n{summary}"
|
|
44
44
|
|
|
45
45
|
# Threshold configuration for visual warnings
|
|
46
46
|
thresholds:
|