pi-studio 0.5.52 → 0.5.53
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/CHANGELOG.md +15 -0
- package/README.md +3 -3
- package/client/studio-client.js +513 -85
- package/client/studio.css +176 -0
- package/index.ts +332 -3
- package/package.json +1 -1
- package/shared/studio-markdown-latex-literals.js +203 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.5.53] — 2026-04-10
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Studio now includes a live right-pane **Working** view for following current model/tool activity as it streams.
|
|
11
|
+
- **Working** includes `All` / `Thinking` / `Tools` filters plus **Load visible into editor** and **Copy visible** actions.
|
|
12
|
+
- Markdown preview/PDF regression coverage now includes preservation of literal LaTeX prose commands such as `\cite{...}` and `\ref{...}`.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- The former standalone right-pane **Thinking** mode has been folded into **Working**.
|
|
16
|
+
- Working status/summary chips are quieter and read more like status labels than action buttons.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- Markdown preview and PDF export now preserve literal LaTeX prose commands like `\cite{...}` and `\ref{...}` instead of silently dropping them outside math/code contexts.
|
|
20
|
+
- Working-pane interaction handlers now survive response-pane replacement, so filters/actions keep working and scrolling up can pause live auto-follow until you return near the bottom.
|
|
21
|
+
|
|
7
22
|
## [0.5.52] — 2026-04-09
|
|
8
23
|
|
|
9
24
|
### Added
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# pi-studio
|
|
2
2
|
|
|
3
|
-
Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace for working with prompts, responses, Markdown and LaTeX documents, code files, and other common text-based files side by side. Annotate responses and files, add local comments, write, edit, and run prompts, browse prompt and response history, request critiques, and use live preview for code, Markdown, and LaTeX.
|
|
3
|
+
Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace for working with prompts, responses, live working details, Markdown and LaTeX documents, code files, and other common text-based files side by side. Annotate responses and files, add local comments, write, edit, and run prompts, browse prompt and response history, request critiques, and use live preview for code, Markdown, and LaTeX.
|
|
4
4
|
|
|
5
5
|
## Screenshots
|
|
6
6
|
|
|
@@ -14,16 +14,16 @@ Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace
|
|
|
14
14
|
|
|
15
15
|
## What it does
|
|
16
16
|
|
|
17
|
-
- Opens a two-pane browser workspace: **Editor** (left) + **Response/
|
|
17
|
+
- Opens a two-pane browser workspace: **Editor** (left) + **Response/Working/Editor Preview** (right)
|
|
18
18
|
- Supports one canonical full Studio view per Pi session, plus additional editor-only companion views when you just want extra editing/preview surfaces
|
|
19
19
|
- Runs editor text directly, or asks for structured critique (auto/writing/code focus)
|
|
20
|
+
- Includes a live **Working** view for following current model/tool activity, with `All` / `Thinking` / `Tools` filters plus **Load visible into editor** and **Copy visible** actions
|
|
20
21
|
- Includes a local persistent scratchpad for quick notes you want to keep out of the main editor until you're ready to copy or insert them
|
|
21
22
|
- Includes a docked **Outline** rail for navigating document structure in the current editor text, with clickable entries that jump in the raw editor and reveal matching preview locations when available
|
|
22
23
|
- Includes local comments anchored to selections/lines, shown in a docked **Comments** rail, with transient **Comment** / **Jump** actions from raw-editor selections plus editor-preview selections for Markdown, LaTeX, and code/text/diff previews, alongside optional inline `[an: ...]` toggles when you want comments reflected in the document text
|
|
23
24
|
- Browses response history (`Prev/Next/Last`) and loads either:
|
|
24
25
|
- response text
|
|
25
26
|
- critique notes/full critique
|
|
26
|
-
- assistant thinking (when available)
|
|
27
27
|
- the prompt that generated a selected response
|
|
28
28
|
- Supports an annotation workflow for `[an: ...]` markers:
|
|
29
29
|
- inserts/removes the annotated-reply header
|