pi-studio 0.9.4 → 0.9.6
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 +25 -0
- package/README.md +1 -1
- package/client/studio-client.js +389 -90
- package/client/studio.css +92 -14
- package/index.ts +536 -75
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,31 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.9.6] — 2026-05-19
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Cleaned up Studio REPL output handling: the raw tmux mirror now remains raw while REPL Studio and `studio_repl_send` results hide Studio's temp-file submission wrappers.
|
|
11
|
+
- Made REPL Studio session-scoped, so switching between Python, R, Julia, and other tmux sessions no longer mixes their clean records, and reloads can recover Studio-sent entries while the Studio server is still running.
|
|
12
|
+
- Refined Literate send so **Send selection/chunks** runs the selection, current fenced chunk, or all compatible chunks when the cursor is outside a chunk.
|
|
13
|
+
- Reworked REPL-mode editor controls so REPL send actions sit on their own row, show their shortcut, and **Run editor text** is visually secondary because it sends to Pi rather than the REPL.
|
|
14
|
+
- Normalised dropdown/menu styling in the refreshed UI so selects and custom menu triggers use neutral hover/open states instead of inconsistent accent borders or fills.
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- Added **More → Copy attach command** in the REPL pane to copy a `tmux attach -t <session>` command for the active REPL session.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- R REPL parse errors no longer expose Studio's internal `.__pi_studio_code` parse wrapper.
|
|
21
|
+
|
|
22
|
+
## [0.9.5] — 2026-05-17
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- Expanded Studio **Quiz me** scope to current file, folder, and repo contexts, with bounded source collection, context path support, optional focus guidance, and code-focused source prioritisation for implementation-oriented quizzes.
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- Folder/repo quizzes now exclude the current editor text by default unless **Include current editor text as an anchor** is enabled.
|
|
29
|
+
- Quiz generation and answer checking now retry malformed JSON responses with stricter JSON-only instructions and thinking disabled on retry, without adding new runtime dependencies.
|
|
30
|
+
- **Close** now discards the active quiz, while **Minimize**, outside-click, and Escape preserve it for resume.
|
|
31
|
+
|
|
7
32
|
## [0.9.4] — 2026-05-16
|
|
8
33
|
|
|
9
34
|
### Added
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace
|
|
|
21
21
|
- Opens a two-pane browser workspace: **Editor** (left) + **Response/Working/Editor Preview** (right)
|
|
22
22
|
- Supports one canonical full Studio view per Pi session, plus additional editor-only companion views when you just want extra editing/preview surfaces; the editor toolbar can open a detached copy of the current editor text as a companion view
|
|
23
23
|
- Includes a global **Zen** mode for hiding secondary Studio chrome without changing the current left/right pane layout
|
|
24
|
-
- Runs editor text directly, asks for structured critique (auto/writing/code focus), or opens **Quiz me** for a Studio-native active-recall loop over the current editor text or selection
|
|
24
|
+
- Runs editor text directly, asks for structured critique (auto/writing/code focus), or opens **Quiz me** for a Studio-native active-recall loop over the current editor text, selection, current file, folder, or repo, with optional focus guidance for shaping question selection
|
|
25
25
|
- Includes a live **Working** view for following current model/tool activity, with `All` / `Thinking` / `Tools` filters, image previews for image-producing tool outputs, plus **Load visible into editor** and **Copy visible** actions; when cycling response history, Working follows saved working details for the selected response when available
|
|
26
26
|
- Includes an optional tmux-backed **REPL** view for Shell, Python, IPython, Julia, R, GHCi, and Clojure sessions, with Raw/Literate send modes, `Cmd/Ctrl+Shift+Enter` **Send to REPL**, session start/new/stop/interrupt controls, a compact refresh-persistent **REPL Studio** record of user and Pi-sent code, a secondary raw tmux mirror, agent-facing `studio_repl_status` / `studio_repl_send` tools, and Markdown/PDF/HTML export
|
|
27
27
|
- 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
|