@codefilabs/tq 0.0.2 → 0.1.0

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.
@@ -48,3 +48,19 @@ WINDOW="$(echo "$PROMPT" | awk '{print $1" "$2}' \
48
48
  - Epoch suffix prevents collision when the same prompt is re-queued after a reset
49
49
  - tmux session names must not contain `.` or `:` — the character replacement handles this
50
50
  - The `-` separator between base and epoch is always present; if the base ends with `-`, it gets stripped first to avoid `--`
51
+
52
+ ## Conversation Mode Session Names
53
+
54
+ Conversation sessions use a different naming scheme — slug-based, no epoch suffix:
55
+
56
+ | Type | Pattern | Example |
57
+ |------|---------|---------|
58
+ | Orchestrator | `tq-orchestrator` (fixed) | `tq-orchestrator` |
59
+ | Child session | `tq-conv-<slug>` | `tq-conv-fix-auth` |
60
+ | Child window | `<slug>` | `fix-auth` |
61
+
62
+ Slugs are short kebab-case names (2-4 words) chosen by the orchestrator Claude when a
63
+ new conversation is created. Examples: `fix-auth-bug`, `refactor-api`, `update-docs`.
64
+
65
+ Since there is no epoch suffix, conversation session names are unique by slug. Starting
66
+ a session with an already-active slug will reuse the existing session.