@ammduncan/easel 0.2.25 → 0.2.26
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 +5 -0
- package/dist/mcp.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to easel. This project adheres to [Semantic Versioning](https://semver.org/).
|
|
4
4
|
|
|
5
|
+
## 0.2.26 — 2026-05-23
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- **The "open on another session" push hint now nudges agents to use their interactive question tool.** When a push lands but easel is showing a *different* session, the hint returned to the agent previously just said "ASK the user…", which agents (including Claude Code) tended to render as a passive one-line note. It now explicitly says: if your client has an interactive question/prompt tool (e.g. `AskUserQuestion`), use it to offer the choice as clickable options — (a) switch the open tab via the topbar dropdown, or (b) call `open` for a fresh tab — rather than burying it in prose. Stays client-agnostic (text-only clients still read a clear instruction; capable clients self-upgrade to a structured prompt) — no UI is forced at the MCP layer.
|
|
9
|
+
|
|
5
10
|
## 0.2.25 — 2026-05-23
|
|
6
11
|
|
|
7
12
|
### Docs
|
package/dist/mcp.js
CHANGED
|
@@ -296,7 +296,7 @@ export async function main() {
|
|
|
296
296
|
}
|
|
297
297
|
else if (openResult.kind === "other-session") {
|
|
298
298
|
tabHint =
|
|
299
|
-
" · easel is open in another tab on a
|
|
299
|
+
" · easel is open in another tab, but on a DIFFERENT session — so this push isn't visible yet. ASK THE USER how to surface it, and if your client has an interactive question/prompt tool (e.g. AskUserQuestion), USE IT to offer the choice as clickable options rather than burying it in prose: (a) switch the open tab to this session via the topbar 'switch ▾' dropdown, or (b) have you call the `open` tool to launch a fresh tab. Do not auto-open or pick for them.";
|
|
300
300
|
}
|
|
301
301
|
else if (result.sessionTabs === 0) {
|
|
302
302
|
tabHint =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ammduncan/easel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.26",
|
|
4
4
|
"description": "A live browser tab for every Claude Code (and MCP) session. The push MCP tool appends HTML cards to a scrolling feed you keep open in split-screen.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|