yoyo-pi 0.1.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/LICENSE +21 -0
- package/README.md +91 -0
- package/README.zh-CN.md +91 -0
- package/docs/previews/agent-status.svg +83 -0
- package/docs/previews/filetree.png +0 -0
- package/docs/previews/multiple-choice.png +0 -0
- package/docs/previews/pi-tui-agent-status.html +379 -0
- package/docs/previews/pi-tui-status-bar.html +481 -0
- package/docs/previews/single-choice.png +0 -0
- package/docs/previews/status-bar.png +0 -0
- package/docs/previews/todo-sidebar.png +0 -0
- package/extensions/choice-picker.ts +1404 -0
- package/extensions/clear-context.ts +164 -0
- package/extensions/gr0k-hack/index.ts +1231 -0
- package/extensions/kenx-infra/index.ts +1601 -0
- package/extensions/kenx-infra/themes/dark.json +80 -0
- package/extensions/kenx-infra/themes/light.json +80 -0
- package/extensions/kenx-infra/themes/paper.json +80 -0
- package/extensions/plan-mode/README.md +58 -0
- package/extensions/plan-mode/agents/plan-agent.md +98 -0
- package/extensions/plan-mode/index.ts +1956 -0
- package/extensions/plan-mode/sandbox.ts +332 -0
- package/extensions/vim-mode.ts +561 -0
- package/package.json +58 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Kenx
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# yoyo-pi
|
|
2
|
+
|
|
3
|
+
<p align="right">
|
|
4
|
+
<a href="README.md"><img src="https://img.shields.io/badge/Language-English-blue" alt="English"></a>
|
|
5
|
+
<a href="README.zh-CN.md"><img src="https://img.shields.io/badge/%E8%AF%AD%E8%A8%80-%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87-brightgreen" alt="简体中文"></a>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
A polished extension pack for [pi](https://pi.dev) that makes the terminal coding-agent workflow faster, cleaner, and more ergonomic.
|
|
9
|
+
|
|
10
|
+
This is Kenx's daily pi setup, packaged as a reusable GitHub install: Vim-style prompt editing, custom TUI themes and status bars, Grok-style agent-status variants, right-side file/todo overlays, interactive choice pickers, context snapshots, and a read-only planning mode.
|
|
11
|
+
|
|
12
|
+
## Highlights
|
|
13
|
+
|
|
14
|
+
- **Vim prompt editing** — toggle `/vim` for normal/insert/visual-style prompt control, with a status pill and external-editor fallback.
|
|
15
|
+
- **Custom TUI chrome** — switch themes, full-screen background coverage, and eight status bar/input layouts with `/theme`, `/theme-bg`, and `/switch-statusbar`.
|
|
16
|
+
- **Grok-style agent status** — `/switch-agentStatus <1-9|v1-v9>` switches among nine terminal-native thinking/executing/reading/writing readouts with the latest assistant text or latest tool log and current file, while edit/write renderers hide diffs and file contents. Hidden thinking placeholders are suppressed while this UI is enabled.
|
|
17
|
+
- **File tree / todo overlays** — open a right-side file picker with `/filetree` or `Ctrl+Shift+F`; monitor `.plan/*.jsonl` todos with `/todo` or `Ctrl+Shift+T`.
|
|
18
|
+
- **Agent-friendly choice pickers** — `single_choice`, `multiple_choice`, and `choice_questions` give models structured ways to ask users for decisions.
|
|
19
|
+
- **Context snapshots** — `/clear` saves the current branch context, then `/restore <name>` brings it back later.
|
|
20
|
+
- **Plan mode** — `/plan` exposes a sandboxed `plan_agent` that writes implementation plans and todos under `.plan/`, previews the plan before exit, and carries forward only the original prompt plus plan context after approval.
|
|
21
|
+
|
|
22
|
+
## Preview
|
|
23
|
+
|
|
24
|
+
### Status bar & input variations
|
|
25
|
+
|
|
26
|
+
<img src="docs/previews/status-bar.png" alt="Status bar and input variation preview" width="760">
|
|
27
|
+
|
|
28
|
+
Interactive HTML preview: [open the status bar playground](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-status-bar.html?v=9d4f442).
|
|
29
|
+
|
|
30
|
+
### Agent status variations
|
|
31
|
+
|
|
32
|
+
<img src="docs/previews/agent-status.svg" alt="Grok-style agent status variation preview" width="760">
|
|
33
|
+
|
|
34
|
+
Interactive HTML preview: [open the agent status playground](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v1).
|
|
35
|
+
|
|
36
|
+
Direct jumps: [V1](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v1) · [V2 phase tag](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v2) · [V3](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v3) · [V4](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v4) · [V5](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v5) · [V6](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v6) · [V7](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v7) · [V8](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v8) · [V9](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v9).
|
|
37
|
+
|
|
38
|
+
### File tree overlay
|
|
39
|
+
|
|
40
|
+
<img src="docs/previews/filetree.png" alt="File tree overlay preview" width="260">
|
|
41
|
+
|
|
42
|
+
### Todo timeline sidebar
|
|
43
|
+
|
|
44
|
+
<img src="docs/previews/todo-sidebar.png" alt="Todo timeline sidebar preview" width="360">
|
|
45
|
+
|
|
46
|
+
### Choice pickers
|
|
47
|
+
|
|
48
|
+
<img src="docs/previews/single-choice.png" alt="Single choice picker preview" width="720">
|
|
49
|
+
|
|
50
|
+
<img src="docs/previews/multiple-choice.png" alt="Multiple choice picker preview" width="720">
|
|
51
|
+
|
|
52
|
+
## Install
|
|
53
|
+
|
|
54
|
+
From npm after publishing:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pi install npm:yoyo-pi
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Or install directly from GitHub:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
pi install git:git@github.com:kenxcomp/yoyo-pi.git
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Temporary test without installing:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pi -e git:git@github.com:kenxcomp/yoyo-pi.git
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
The unpinned Git URL follows `main` when you run `pi update`. Pin a tag only when you want a reproducible release, for example `git:git@github.com:kenxcomp/yoyo-pi.git@v0.1.4`.
|
|
73
|
+
|
|
74
|
+
After installing this package, remove or move the old local copies under `~/.pi/agent/extensions/` to avoid duplicate slash commands.
|
|
75
|
+
|
|
76
|
+
## Commands and tools
|
|
77
|
+
|
|
78
|
+
| Area | Commands / tools | What it adds |
|
|
79
|
+
| --- | --- | --- |
|
|
80
|
+
| Context snapshots | `/clear`, `/restore <name>` | Save current branch context to `.tmp/<name>.jsonl` and restore it later. |
|
|
81
|
+
| Vim prompt mode | `/vim [on\|off\|status]` | Vim-like modal prompt editor with external-editor fallback. |
|
|
82
|
+
| Choice pickers | `single_choice`, `multiple_choice`, `choice_questions`, `/choice-demo [multi\|questions]` | Inline-pill single select, compact multi-select, and tabbed batched questions. |
|
|
83
|
+
| TUI infrastructure | `/theme <paper\|light\|dark>`, `/theme-bg <true\|false>`, `/filetree`, `Ctrl+Shift+F`, `/switch-statusbar <1-8\|0>` | Themes, optional full-TUI background fill, right-side overlay file picker, and custom statusbar/input UI. Runtime preferences are stored under `~/.pi/agent/state/kenx-infra.json`. |
|
|
84
|
+
| Agent status UI | `/switch-agentStatus <1-9\|v1-v9\|0\|off\|status>` | Nine Grok-style status widgets for thinking/executing/reading/writing plus compact built-in tool renderers. V2 uses a meaningful `[agent]` phase tag instead of a fake step count. See the [HTML playground](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v1) for matching previews. Edit/write show changed file names only; diffs, file contents, and duplicate hidden-thinking placeholders are hidden. Preferences are stored under `~/.pi/agent/state/gr0k-hack.json`. |
|
|
85
|
+
| Plan/todo workflow | `/plan`, `/todo <goal>`, `/todo [show\|off\|status]`, `Ctrl+Shift+T`, `plan_agent` | Read-only plan mode delegates planning to `agents/plan-agent.md`; before exiting it displays the plan and asks whether to execute, shelve, or revise. Approved exits prune active LLM context to the original prompt plus plan handoff; todo mode writes/monitors `.plan/todo.jsonl` and asks the agent to keep statuses updated while executing. |
|
|
86
|
+
|
|
87
|
+
## Development
|
|
88
|
+
|
|
89
|
+
This package intentionally lists Pi core packages as optional `peerDependencies` because Pi provides them at runtime.
|
|
90
|
+
|
|
91
|
+
The `pi.extensions` manifest explicitly lists entrypoints so `extensions/plan-mode/sandbox.ts` is not auto-loaded as a normal extension; it is only loaded by the child plan-agent process.
|
package/README.zh-CN.md
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# yoyo-pi
|
|
2
|
+
|
|
3
|
+
<p align="right">
|
|
4
|
+
<a href="README.md"><img src="https://img.shields.io/badge/Language-English-blue" alt="English"></a>
|
|
5
|
+
<a href="README.zh-CN.md"><img src="https://img.shields.io/badge/%E8%AF%AD%E8%A8%80-%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87-brightgreen" alt="简体中文"></a>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
一个为 [pi](https://pi.dev) 打磨的扩展包,让终端里的 coding-agent 工作流更快、更清爽,也更顺手。
|
|
9
|
+
|
|
10
|
+
这是 Kenx 日常使用的 pi 配置,并封装成可复用的 GitHub 安装包:Vim 风格提示词编辑、自定义 TUI 主题和状态栏、Grok 风格 Agent 状态变体、右侧文件/待办覆盖层、交互式选择器、上下文快照,以及只读规划模式。
|
|
11
|
+
|
|
12
|
+
## 亮点
|
|
13
|
+
|
|
14
|
+
- **Vim 提示词编辑** — 使用 `/vim` 切换普通/插入/可视风格的提示词控制,包含状态提示和外部编辑器兜底。
|
|
15
|
+
- **自定义 TUI 外观** — 通过 `/theme`、`/theme-bg` 和 `/switch-statusbar` 切换主题、全屏背景覆盖,以及 8 种状态栏/输入框布局。
|
|
16
|
+
- **Grok 风格 Agent 状态** — `/switch-agentStatus <1-9|v1-v9>` 可切换 9 种终端原生的 thinking/executing/reading/writing 状态视图,显示最新 assistant 文本或最新工具日志以及当前文件;edit/write 渲染器会隐藏 diff 和文件内容。启用该 UI 时会隐藏重复的 thinking 占位提示。
|
|
17
|
+
- **文件树 / 待办覆盖层** — 使用 `/filetree` 或 `Ctrl+Shift+F` 打开右侧文件选择器;使用 `/todo` 或 `Ctrl+Shift+T` 监控 `.plan/*.jsonl` 待办。
|
|
18
|
+
- **对 Agent 友好的选择器** — `single_choice`、`multiple_choice` 和 `choice_questions` 让模型可以用结构化方式向用户确认决策。
|
|
19
|
+
- **上下文快照** — `/clear` 保存当前分支上下文,然后用 `/restore <name>` 在之后恢复。
|
|
20
|
+
- **规划模式** — `/plan` 提供沙盒化的 `plan_agent`,用于在 `.plan/` 下编写实现计划和待办;退出前会预览 plan,批准后只把原始 prompt 和 plan 作为后续上下文交接。
|
|
21
|
+
|
|
22
|
+
## 预览
|
|
23
|
+
|
|
24
|
+
### 状态栏与输入框变化
|
|
25
|
+
|
|
26
|
+
<img src="docs/previews/status-bar.png" alt="状态栏与输入框变化预览" width="760">
|
|
27
|
+
|
|
28
|
+
交互式 HTML 预览:[打开状态栏 playground](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-status-bar.html?v=9d4f442)。
|
|
29
|
+
|
|
30
|
+
### Agent 状态变化
|
|
31
|
+
|
|
32
|
+
<img src="docs/previews/agent-status.svg" alt="Grok 风格 Agent 状态变化预览" width="760">
|
|
33
|
+
|
|
34
|
+
交互式 HTML 预览:[打开 Agent status playground](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v1)。
|
|
35
|
+
|
|
36
|
+
直接跳转:[V1](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v1) · [V2 phase tag](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v2) · [V3](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v3) · [V4](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v4) · [V5](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v5) · [V6](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v6) · [V7](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v7) · [V8](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v8) · [V9](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v9)。
|
|
37
|
+
|
|
38
|
+
### 文件树覆盖层
|
|
39
|
+
|
|
40
|
+
<img src="docs/previews/filetree.png" alt="文件树覆盖层预览" width="260">
|
|
41
|
+
|
|
42
|
+
### Todo 时间线侧边栏
|
|
43
|
+
|
|
44
|
+
<img src="docs/previews/todo-sidebar.png" alt="Todo 时间线侧边栏预览" width="360">
|
|
45
|
+
|
|
46
|
+
### 选择器
|
|
47
|
+
|
|
48
|
+
<img src="docs/previews/single-choice.png" alt="单选选择器预览" width="720">
|
|
49
|
+
|
|
50
|
+
<img src="docs/previews/multiple-choice.png" alt="多选选择器预览" width="720">
|
|
51
|
+
|
|
52
|
+
## 安装
|
|
53
|
+
|
|
54
|
+
发布到 npm 后可以这样安装:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pi install npm:yoyo-pi
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
也可以继续直接从 GitHub 安装:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
pi install git:git@github.com:kenxcomp/yoyo-pi.git
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
不安装的临时测试方式:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pi -e git:git@github.com:kenxcomp/yoyo-pi.git
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
未固定版本的 Git URL 会在你运行 `pi update` 时跟随 `main`。只有在需要可复现版本时才固定 tag,例如 `git:git@github.com:kenxcomp/yoyo-pi.git@v0.1.4`。
|
|
73
|
+
|
|
74
|
+
安装本包后,请删除或移走 `~/.pi/agent/extensions/` 下旧的本地副本,避免重复注册 slash commands。
|
|
75
|
+
|
|
76
|
+
## 命令与工具
|
|
77
|
+
|
|
78
|
+
| 区域 | 命令 / 工具 | 提供能力 |
|
|
79
|
+
| --- | --- | --- |
|
|
80
|
+
| 上下文快照 | `/clear`, `/restore <name>` | 将当前分支上下文保存到 `.tmp/<name>.jsonl`,之后可恢复。 |
|
|
81
|
+
| Vim 提示词模式 | `/vim [on\|off\|status]` | 类 Vim 的模态提示词编辑器,带外部编辑器兜底。 |
|
|
82
|
+
| 选择器 | `single_choice`, `multiple_choice`, `choice_questions`, `/choice-demo [multi\|questions]` | 行内胶囊单选、紧凑多选,以及分 tab 的批量问题。 |
|
|
83
|
+
| TUI 基础设施 | `/theme <paper\|light\|dark>`, `/theme-bg <true\|false>`, `/filetree`, `Ctrl+Shift+F`, `/switch-statusbar <1-8\|0>` | 主题、可选全 TUI 背景填充、右侧文件选择覆盖层,以及自定义状态栏/输入框 UI。运行时偏好存储在 `~/.pi/agent/state/kenx-infra.json`。 |
|
|
84
|
+
| Agent 状态 UI | `/switch-agentStatus <1-9\|v1-v9\|0\|off\|status>` | 9 种 Grok 风格 thinking/executing/reading/writing 状态组件,以及紧凑的内置工具渲染器。V2 使用有意义的 `[agent]` phase tag,不再显示模拟步数。可在 [HTML playground](https://htmlpreview.github.io/?https://github.com/kenxcomp/yoyo-pi/blob/main/docs/previews/pi-tui-agent-status.html?v=gr0k-hack-3#v1) 查看对应预览。edit/write 只显示改动文件名,不显示 diff、文件内容和重复的 hidden-thinking 占位;偏好存储在 `~/.pi/agent/state/gr0k-hack.json`。 |
|
|
85
|
+
| 规划 / Todo 工作流 | `/plan`, `/todo <goal>`, `/todo [show\|off\|status]`, `Ctrl+Shift+T`, `plan_agent` | 只读规划模式会委托 `agents/plan-agent.md` 进行规划;退出前展示 plan,并让用户选择开始执行、先搁置或继续修改。批准退出后,活跃 LLM 上下文会剪裁为原始 prompt + plan 交接;todo 模式会写入/监控 `.plan/todo.jsonl`,并要求 agent 在执行过程中持续更新状态。 |
|
|
86
|
+
|
|
87
|
+
## 开发
|
|
88
|
+
|
|
89
|
+
本包有意将 Pi 核心包列为可选 `peerDependencies`,因为 Pi 会在运行时提供它们。
|
|
90
|
+
|
|
91
|
+
`pi.extensions` manifest 会显式列出入口,因此 `extensions/plan-mode/sandbox.ts` 不会被当作普通扩展自动加载;它只会由子级 plan-agent 进程加载。
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<svg width="760" height="560" viewBox="0 0 760 560" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="title desc">
|
|
2
|
+
<title id="title">gr0k-hack agent status variations</title>
|
|
3
|
+
<desc id="desc">Nine selectable terminal-native agent status variants for pi.</desc>
|
|
4
|
+
<rect width="760" height="560" rx="18" fill="#1A1916"/>
|
|
5
|
+
<rect x="30" y="28" width="700" height="504" rx="14" fill="#2E322E" stroke="rgba(236,231,220,0.12)"/>
|
|
6
|
+
<g font-family="ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace" font-size="12">
|
|
7
|
+
<text x="56" y="60" fill="#777768">/switch-agentStatus 1-9 · V1-V9 mirror the HTML playground</text>
|
|
8
|
+
|
|
9
|
+
<g transform="translate(56 84)">
|
|
10
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
11
|
+
<text x="14" y="22" fill="#D89B7E">V1 hairline</text>
|
|
12
|
+
<text x="14" y="48" fill="#D9B670" font-weight="700"> THINKING ⠋ ✱</text>
|
|
13
|
+
<text x="14" y="70" fill="#B0B0A5"> planning the refactor...</text>
|
|
14
|
+
<text x="14" y="92" fill="#8FB4CE"> ↳ .../FilePicker.tsx</text>
|
|
15
|
+
</g>
|
|
16
|
+
|
|
17
|
+
<g transform="translate(280 84)">
|
|
18
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
19
|
+
<text x="14" y="22" fill="#D89B7E">V2 phase tag</text>
|
|
20
|
+
<text x="14" y="48" fill="#777768">[agent] <tspan fill="#D89B7E" font-weight="700">EXECUTING</tspan>...</text>
|
|
21
|
+
<text x="14" y="70" fill="#B0B0A5">❝ applying edit... ❞</text>
|
|
22
|
+
<text x="14" y="92" fill="#D89B7E">file .../PickerContext.tsx</text>
|
|
23
|
+
</g>
|
|
24
|
+
|
|
25
|
+
<g transform="translate(504 84)">
|
|
26
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
27
|
+
<text x="14" y="22" fill="#D89B7E">V3 left rail</text>
|
|
28
|
+
<text x="14" y="48" fill="#8FB4CE">▌ <tspan fill="#ECE7DC" font-weight="700">READING</tspan> ⠋</text>
|
|
29
|
+
<text x="14" y="70" fill="#8FB4CE">▌ <tspan fill="#B0B0A5">scanning callers...</tspan></text>
|
|
30
|
+
<text x="14" y="92" fill="#8FB4CE">▌ ↳ .../usePickerState.ts</text>
|
|
31
|
+
</g>
|
|
32
|
+
|
|
33
|
+
<g transform="translate(56 222)">
|
|
34
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
35
|
+
<text x="14" y="22" fill="#D89B7E">V4 soft card</text>
|
|
36
|
+
<text x="14" y="45" fill="#777768">╭────────────────────╮</text>
|
|
37
|
+
<text x="14" y="63" fill="#ECE7DC">│ ⠋ <tspan font-weight="700">WRITING</tspan>... │</text>
|
|
38
|
+
<text x="14" y="81" fill="#777768">├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┤</text>
|
|
39
|
+
<text x="14" y="99" fill="#ADC79A">│ ↳ .../FilePicker.tsx│</text>
|
|
40
|
+
</g>
|
|
41
|
+
|
|
42
|
+
<g transform="translate(280 222)">
|
|
43
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
44
|
+
<text x="14" y="22" fill="#D89B7E">V5 margin labels</text>
|
|
45
|
+
<text x="14" y="48" fill="#777768">state <tspan fill="#D9B670" font-weight="700"> THINKING </tspan> ⠋</text>
|
|
46
|
+
<text x="14" y="70" fill="#777768">thought <tspan fill="#B0B0A5">planning...</tspan></text>
|
|
47
|
+
<text x="14" y="92" fill="#777768">file <tspan fill="#D9B670">.../FilePicker.tsx</tspan></text>
|
|
48
|
+
</g>
|
|
49
|
+
|
|
50
|
+
<g transform="translate(504 222)">
|
|
51
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
52
|
+
<text x="14" y="22" fill="#D89B7E">V6 sigil prefix</text>
|
|
53
|
+
<text x="14" y="48" fill="#777768">:: <tspan fill="#D89B7E">executing</tspan>... turn 7</text>
|
|
54
|
+
<text x="14" y="70" fill="#777768"> › <tspan fill="#B0B0A5">applying edit...</tspan></text>
|
|
55
|
+
<text x="14" y="92" fill="#777768"> ⌁ <tspan fill="#D89B7E">.../PickerContext.tsx</tspan></text>
|
|
56
|
+
</g>
|
|
57
|
+
|
|
58
|
+
<g transform="translate(56 360)">
|
|
59
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
60
|
+
<text x="14" y="22" fill="#D89B7E">V7 split-bar</text>
|
|
61
|
+
<text x="14" y="46" fill="#777768">╴ <tspan fill="#8FB4CE" font-weight="700"> READING </tspan> turn 7 ╴──</text>
|
|
62
|
+
<text x="14" y="70" fill="#B0B0A5"> ⠋ scanning callers...</text>
|
|
63
|
+
<text x="14" y="94" fill="#777768">╴ file <tspan fill="#8FB4CE">.../hooks.ts</tspan> ╴──</text>
|
|
64
|
+
</g>
|
|
65
|
+
|
|
66
|
+
<g transform="translate(280 360)">
|
|
67
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
68
|
+
<text x="14" y="22" fill="#D89B7E">V8 micro-log</text>
|
|
69
|
+
<text x="14" y="48" fill="#D9B670">● <tspan fill="#ECE7DC" font-weight="700">thinking</tspan>...</text>
|
|
70
|
+
<text x="14" y="70" fill="#777768">│ <tspan fill="#B0B0A5">planning the refactor</tspan></text>
|
|
71
|
+
<text x="14" y="92" fill="#777768">╰─file <tspan fill="#D9B670">.../FilePicker.tsx</tspan></text>
|
|
72
|
+
</g>
|
|
73
|
+
|
|
74
|
+
<g transform="translate(504 360)">
|
|
75
|
+
<rect width="200" height="118" rx="10" fill="rgba(26,25,22,0.35)" stroke="rgba(236,231,220,0.08)"/>
|
|
76
|
+
<text x="14" y="22" fill="#D89B7E">V9 stamp head</text>
|
|
77
|
+
<text x="14" y="48" fill="#D89B7E" font-weight="700"> EXECUTING </text>
|
|
78
|
+
<text x="92" y="48" fill="#B0B0A5">⠋ applying edit...</text>
|
|
79
|
+
<text x="14" y="70" fill="#777768"> ─────────────</text>
|
|
80
|
+
<text x="14" y="92" fill="#777768"> ↳ file <tspan fill="#D89B7E">.../ctx.tsx</tspan></text>
|
|
81
|
+
</g>
|
|
82
|
+
</g>
|
|
83
|
+
</svg>
|
|
Binary file
|
|
Binary file
|