@ammduncan/easel 0.2.7 → 0.2.8
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/README.md +15 -5
- 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.8 — 2026-05-22
|
|
6
|
+
|
|
7
|
+
### Docs
|
|
8
|
+
- README now documents Codex as a supported client (added in 0.2.5 but missed in the doc pass). "Works with" list, install commands, config-path table, CLI help text, and file map all updated.
|
|
9
|
+
|
|
5
10
|
## 0.2.7 — 2026-05-22
|
|
6
11
|
|
|
7
12
|
### Fixed
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ A live browser tab for every AI coding session. Agents push HTML — explanation
|
|
|
15
15
|
└────────────────────────────────────────────┘ └────────────────────────────────────┘
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
Works with **Claude Code**, **Cursor**, **Claude Desktop**, **Windsurf**, and any other MCP-speaking client.
|
|
18
|
+
Works with **Claude Code**, **Cursor**, **Claude Desktop**, **Windsurf**, **Codex**, and any other MCP-speaking client.
|
|
19
19
|
|
|
20
20
|
## Why
|
|
21
21
|
|
|
@@ -33,7 +33,7 @@ npx -y @ammduncan/easel setup
|
|
|
33
33
|
|
|
34
34
|
That registers the MCP at user scope, installs the `using-easel` skill so the agent knows when to push, and adds the `SessionStart` hooks that resolve session IDs and auto-open the tab. Restart Claude Code and you're done.
|
|
35
35
|
|
|
36
|
-
### Cursor / Claude Desktop / Windsurf
|
|
36
|
+
### Cursor / Claude Desktop / Windsurf / Codex
|
|
37
37
|
|
|
38
38
|
One command per client:
|
|
39
39
|
|
|
@@ -41,9 +41,19 @@ One command per client:
|
|
|
41
41
|
npx -y @ammduncan/easel setup --client cursor
|
|
42
42
|
npx -y @ammduncan/easel setup --client claude-desktop
|
|
43
43
|
npx -y @ammduncan/easel setup --client windsurf
|
|
44
|
+
npx -y @ammduncan/easel setup --client codex
|
|
44
45
|
```
|
|
45
46
|
|
|
46
|
-
Each writes the MCP entry to the client's config file
|
|
47
|
+
Each writes the MCP entry to the client's config file:
|
|
48
|
+
|
|
49
|
+
| Client | Config file |
|
|
50
|
+
|---|---|
|
|
51
|
+
| Cursor | `~/.cursor/mcp.json` |
|
|
52
|
+
| Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) |
|
|
53
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
54
|
+
| Codex | `~/.codex/config.toml` — plus copies the `using-easel` skill into `~/.codex/skills/` |
|
|
55
|
+
|
|
56
|
+
Restart the client to load the MCP server.
|
|
47
57
|
|
|
48
58
|
### Any other MCP client
|
|
49
59
|
|
|
@@ -122,7 +132,7 @@ easel open ensure server is running, open this session's tab
|
|
|
122
132
|
easel url print this session's URL
|
|
123
133
|
easel config print / set { preset, theme, density }
|
|
124
134
|
easel setup Claude Code: hooks + MCP + skill
|
|
125
|
-
easel setup --client <name> register the MCP in another client (cursor, claude-desktop, windsurf)
|
|
135
|
+
easel setup --client <name> register the MCP in another client (cursor, claude-desktop, windsurf, codex)
|
|
126
136
|
easel restart kill + respawn the HTTP server (handy after a build)
|
|
127
137
|
easel update git pull + build + setup (clone installs only)
|
|
128
138
|
easel server run the HTTP server in the foreground (debug)
|
|
@@ -140,7 +150,7 @@ src/
|
|
|
140
150
|
session-store.ts disk persistence + retention sweep
|
|
141
151
|
session-id.ts 5-tier resolver (env / hook file / transcript scan / synthetic PPID)
|
|
142
152
|
config-store.ts preset / theme / density persistence
|
|
143
|
-
client-setup.ts per-client config writers (cursor, claude-desktop, windsurf)
|
|
153
|
+
client-setup.ts per-client config writers (cursor, claude-desktop, windsurf, codex)
|
|
144
154
|
paths.ts shared constants + legacy-dir migration
|
|
145
155
|
cli.ts `easel open|url|setup|config|server|restart|update|version`
|
|
146
156
|
client/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ammduncan/easel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
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",
|