@extension.dev/mcp 5.2.0 → 5.3.0

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.
@@ -10,7 +10,7 @@
10
10
  "name": "extension-mcp",
11
11
  "source": "./",
12
12
  "description": "MCP tools for browser extension development: scaffold from 60+ templates, run the dev server with HMR, inspect the live DOM and logs, and publish store-ready builds for Chrome, Edge, and Firefox.",
13
- "version": "5.2.0",
13
+ "version": "5.3.0",
14
14
  "category": "development",
15
15
  "author": {
16
16
  "name": "Cezar Augusto"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "extension-mcp",
3
3
  "description": "MCP tools for browser extension development: scaffold from 60+ templates, run the dev server with HMR, inspect the live DOM and logs, and publish store-ready builds for Chrome, Edge, and Firefox. Ships /extension, /extension-add, /extension-debug, and /extension-publish commands.",
4
- "version": "5.2.0",
4
+ "version": "5.3.0",
5
5
  "author": {
6
6
  "name": "Cezar Augusto",
7
7
  "email": "boss@cezaraugusto.net",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.3.0
4
+
5
+ The DevX surprise swarm ran ten personas over the full create-to-release
6
+ journey and ranked five blocker clusters. All five land here.
7
+
8
+ ### Added
9
+
10
+ - `extension_release_list`: the discovery sibling of the release verbs.
11
+ Lists the project's channels (channel to promoted build sha) and recent
12
+ builds from the public registry (registry.extension.land), so a caller
13
+ can pick a valid `buildSha` for `extension_release_promote`,
14
+ `extension_deploy`, or `extension_publish` instead of hunting the
15
+ console. Read-only, needs no auth for public projects. Tool count is
16
+ now 32.
17
+ - A shared public-registry client (`src/lib/registry.ts`) that reads
18
+ meta, channels, the build index, and store credential health. Reads
19
+ are best-effort: a registry blip never fails the verb it decorates.
20
+
21
+ ### Fixed
22
+
23
+ - `extension_create` announces every decision it took without being
24
+ asked. The resolved destination path leads the result, and
25
+ `defaultsApplied` names each silent choice (server cwd, package
26
+ manager, browser, git init) as one. Validation errors now teach the
27
+ full argument schema, required, optional, and aliases, instead of
28
+ revealing one missing field per attempt.
29
+ - `extension_dev` no longer forks sessions. A second call on the same
30
+ projectPath used to return ok:true while its browser died on the
31
+ profile lock; it now detects the live session and refuses, or stops it
32
+ first with `replace:true` and says so. A dead browser leg no longer
33
+ rides an ok:true envelope: the ready contract's `browser_exited` stamp
34
+ and the profile-lock signature both surface as failures.
35
+ - `extension_stop` finds orphaned sessions. It unions the in-memory
36
+ registry with the on-disk session markers, so a session whose dev
37
+ child exited (exactly when the orphaned browser most needs stopping)
38
+ is still found, verified, and reaped. A stale marker yields an honest
39
+ stopped:false and is pruned, never a phantom kill.
40
+ - `extension_deploy` dry runs stopped echoing an unqualified
41
+ "Preflight OK". The preflight now reads per-store credential health
42
+ from the registry and reports each browser as actionable, not
43
+ configured, or unverifiable, with the console stores URL in the
44
+ result. The silently defaulted channel is disclosed and checked
45
+ against channels.json. Under dryRun a platform error now reads
46
+ "preflight failed", never "submit failed".
47
+ - `extension_release_promote` dead-ends carry the way out: a 404 or
48
+ UNKNOWN_BUILD error now includes each channel's currently promoted
49
+ sha, the registry URL it read, and the console Builds page URL, plus
50
+ a pointer to `extension_release_list`.
51
+ - `extension_publish` says what the share link serves: the build sha,
52
+ build time, version, and channel behind the URL, resolved from the
53
+ registry's build index, with a note when it is the newest successful
54
+ build rather than a pinned one.
55
+
3
56
  ## 5.2.0
4
57
 
5
58
  ### Added