eink-update
Update the content of an active eink session on the Boox tablet. Use when iterating on a document mid-review without waiting for annotation events.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update the content of an active eink session on the Boox tablet. Use when iterating on a document mid-review without waiting for annotation events.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Push content to Boox e-ink tablet for iterative review. Supports multiple annotation rounds — user annotates, agent updates document via update_session tool, tablet reloads.
Render the eink WebView in local Chrome via DevTools MCP. Spawns a kitchen-sink or realistic-scenario session at the tablet viewport, optionally against a fresh `cargo run` server for iterating on `render.rs`. Includes a follow-up flow for verifying the same session on the actual Boox WebView via remote debugging.
Commit eink-bridge changes, bump the nix_dots flake input, and apply via nixos-rebuild. Use after editing skills, harness files, or server code in the eink-bridge repo.
Run test coverage analysis across Rust server, Kotlin Android app, and CLI. Identifies uncovered code and suggests where to add tests.
| name | eink-update |
| description | Update the content of an active eink session on the Boox tablet. Use when iterating on a document mid-review without waiting for annotation events. |
Push updated content to an existing active session. The tablet reloads automatically (~25 ms).
/eink-update [session-id]
If a session-id was provided as an argument, use it.
Otherwise, list active sessions and let the user pick:
eink-review list --status active
If there is exactly one active session, use it. If there are multiple, ask the user which one to update.
Use the AskUserQuestion tool to ask: "What should the updated content be?"
Accept either:
If the user provided raw markdown or asked for a synthesized document, write it to a temp file:
cat > /tmp/eink-update-XXXXX.md << 'EOF'
<content>
EOF
eink-review update <session-id> /tmp/eink-update-XXXXX.md
On success, the server responds with the new version number. Tell the user the tablet has been updated.
On error:
systemctl --user start eink-serve