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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syntaur",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Project workflow CLI with dashboard, Claude Code plugin, and Codex plugin",
5
5
  "homepage": "https://github.com/prong-horn/syntaur#readme",
6
6
  "repository": {
@@ -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, last 8 chars prefixed by "…"
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 — last 8 chars
184
+ # session — full id
185
185
  SESSION_SEG=""
186
- if [ -n "$SESSION_ID" ]; then
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=""