@narumitw/pi-btw 0.58.1 → 0.59.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.
- package/README.md +2 -0
- package/dist/index.ts +284 -365
- package/dist/index.ts.map +3 -3
- package/package.json +52 -53
- package/src/bring-to-main.ts +494 -547
- package/src/btw.ts +814 -856
- package/src/fullscreen-ui.ts +673 -674
- package/src/keybindings.ts +228 -270
- package/src/main-tree-picker.ts +309 -318
- package/src/menu.ts +416 -454
- package/src/settings.ts +203 -219
- package/src/side-thread.ts +173 -201
- package/src/text.ts +21 -23
- package/src/transcript-markdown.ts +65 -0
- package/src/transcript-pager.ts +611 -662
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ Only context you explicitly bring back is loaded into the main editor.
|
|
|
10
10
|
- Starts a side thread immediately with `/btw <question>` or opens the manager with `/btw`.
|
|
11
11
|
- Uses any persisted main-session branch as context without switching branches.
|
|
12
12
|
- Supports scrollable answers, transcript search, a clickable jump-to-latest control, follow-up questions, queued steering, and in-memory resume.
|
|
13
|
+
- Renders supported Mermaid fences as width-safe, themed Unicode diagrams without a browser or network request.
|
|
13
14
|
- Keeps side questions and answers out of the main conversation by default.
|
|
14
15
|
- Brings back the latest answer, a question suffix, an exact range, or the complete thread only when requested.
|
|
15
16
|
- Uses Pi's current model and thinking level or saved pi-btw choices.
|
|
@@ -157,6 +158,7 @@ The file is read for every `/btw` invocation, so edits apply without `/reload`.
|
|
|
157
158
|
- Resume state is memory-only and lasts only for the current extension instance.
|
|
158
159
|
- A side thread retains the latest 40,000 characters of main-conversation context and adds a truncation notice when earlier content is omitted.
|
|
159
160
|
- Clipboard access depends on Pi's host helper, the operating system, and the terminal.
|
|
161
|
+
- Malformed, unsupported, or oversized Mermaid diagrams remain readable as fenced source; partial parses also show a warning.
|
|
160
162
|
- Pi versions before 0.85 omit the clickable jump-to-latest control.
|
|
161
163
|
|
|
162
164
|
## 🗂️ Package layout
|