@scotthamilton77/sidekick 0.1.26 → 0.1.27
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 +1 -0
- package/assets/sidekick/defaults/features/session-summary.defaults.yaml +4 -0
- package/assets/sidekick/defaults/features/statusline.defaults.yaml +7 -1
- package/assets/sidekick/reminders/caveman-mode.yaml +11 -0
- package/dist/bin.js +6430 -4624
- package/dist/daemon.js +5300 -3531
- package/package.json +1 -1
|
@@ -115,3 +115,7 @@ settings:
|
|
|
115
115
|
# Preserve persona across /clear instead of re-rolling
|
|
116
116
|
# When true, /clear keeps the same persona. When false, a new persona is randomly selected.
|
|
117
117
|
persistThroughClear: true
|
|
118
|
+
# Persona-reminder caveman mode level (off | lite | full | ultra)
|
|
119
|
+
# When non-off, the persona-voice reminder is replaced by a compact caveman
|
|
120
|
+
# directive and the statusline shows the level.
|
|
121
|
+
cavemanMode: "off"
|
|
@@ -60,7 +60,7 @@ settings:
|
|
|
60
60
|
# Worktree-aware: "{branchWT,prefix=' | '}" → " | main" or " | feat/auth [wt]"
|
|
61
61
|
# Project name: "{projectDirShort}" → "claude-code-sidekick"
|
|
62
62
|
#
|
|
63
|
-
format: "{personaName,prefix='[',suffix='] | '}{model,prefix='[',suffix='] | '}{contextBar} {tokenPercentageActual} | {logs} | {projectDirShort,maxLength=40}: {cwd,maxLength=40,truncateStyle='path'}{branchWT,prefix=' | ',maxLength=40}{title,wrapAt=120,prefix=' | ',wrapPrefix='\\n'}{summary,wrapAt=120,prefix=' | ',wrapPrefix='\\n'}"
|
|
63
|
+
format: "{devMode,suffix=' | '}{personaName,prefix='[',suffix='] | '}{model,prefix='[',suffix='] | '}{contextBar} {tokenPercentageActual} | {logs} | {projectDirShort,maxLength=40}: {cwd,maxLength=40,truncateStyle='path'}{branchWT,prefix=' | ',maxLength=40}{title,wrapAt=120,prefix=' | ',wrapPrefix='\\n'}{summary,wrapAt=120,prefix=' | ',wrapPrefix='\\n'}"
|
|
64
64
|
|
|
65
65
|
# Threshold configuration for visual warnings
|
|
66
66
|
thresholds:
|
|
@@ -114,3 +114,9 @@ settings:
|
|
|
114
114
|
# branch: magenta # Optional: if set, overrides pattern-based coloring
|
|
115
115
|
# Pattern-based defaults: main/master=green, feature/*=blue, hotfix/*=red, other=magenta
|
|
116
116
|
# worktreeIndicator: dim # Optional: color for [wt] suffix in branchWT (default: dim)
|
|
117
|
+
|
|
118
|
+
# Dev-mode indicator configuration
|
|
119
|
+
# Controls the {devMode} token in the format string
|
|
120
|
+
devIndicator:
|
|
121
|
+
enabled: true
|
|
122
|
+
label: '🛠 dev'
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# caveman-mode.yaml
|
|
2
|
+
# Replaces remember-your-persona on SessionStart and UserPromptSubmit when caveman
|
|
3
|
+
# mode is active. Persona voice is suppressed in Claude's main responses; sidekick's
|
|
4
|
+
# own snarky commentary stays in persona voice on a separate channel.
|
|
5
|
+
id: caveman-mode
|
|
6
|
+
blocking: false
|
|
7
|
+
priority: 5
|
|
8
|
+
persistent: false
|
|
9
|
+
|
|
10
|
+
additionalContext: |
|
|
11
|
+
{{caveman_directive}}
|