syntaur 0.4.3 → 0.4.4
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/statusline/statusline.sh +3 -10
package/package.json
CHANGED
package/statusline/statusline.sh
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
# git repo:branch (+ dirty marker + ahead/behind counts)
|
|
15
15
|
# assignment active syntaur assignment (project/slug or standalone/uuid — title)
|
|
16
16
|
# external external tracker IDs declared by the assignment (Jira, Linear, ...)
|
|
17
|
-
# session Claude session id
|
|
17
|
+
# session Claude session id (full)
|
|
18
18
|
# model Claude model display name
|
|
19
19
|
# ctx context window fill bar, e.g. "ctx:[####------] 42%"
|
|
20
20
|
# cwd basename of the current working directory
|
|
@@ -181,16 +181,9 @@ if [ -f "$CONTEXT_FILE" ]; then
|
|
|
181
181
|
fi
|
|
182
182
|
fi
|
|
183
183
|
|
|
184
|
-
# session —
|
|
184
|
+
# session — full id
|
|
185
185
|
SESSION_SEG=""
|
|
186
|
-
|
|
187
|
-
LEN=${#SESSION_ID}
|
|
188
|
-
if [ "$LEN" -gt 8 ]; then
|
|
189
|
-
SESSION_SEG="…${SESSION_ID: -8}"
|
|
190
|
-
else
|
|
191
|
-
SESSION_SEG="$SESSION_ID"
|
|
192
|
-
fi
|
|
193
|
-
fi
|
|
186
|
+
[ -n "$SESSION_ID" ] && SESSION_SEG="$SESSION_ID"
|
|
194
187
|
|
|
195
188
|
# model
|
|
196
189
|
MODEL_SEG=""
|