@curdx/flow 7.1.22 → 7.1.23

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  All notable changes to `@curdx/flow` are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/) and the project follows [Semantic Versioning](https://semver.org/).
4
4
 
5
+ ## 7.1.23 — 2026-05-11
6
+
7
+ ### Changed
8
+
9
+ - **Playwright verification now requires a repeatable package-script entry when possible.** Browser-facing specs that need new Playwright coverage should add a focused test, config when missing, and `test:e2e` or the repo's equivalent script instead of leaving only an ad hoc `npx playwright test ...` rerun command.
10
+
11
+ ### Tests
12
+
13
+ - Real Claude Code plugin smoke in a temporary React/Vite fixture generated `playwright.config.ts`, `tests/e2e/login.spec.ts`, installed Chromium, and passed 2 Playwright scenarios. The test also exposed the missing package-script gap fixed in this release.
14
+ - Verified with `npx vitest run tests/runner/manifest-integrity.test.ts` and `npm run typecheck`.
15
+
5
16
  ## 7.1.22 — 2026-05-11
6
17
 
7
18
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curdx/flow",
3
- "version": "7.1.22",
3
+ "version": "7.1.23",
4
4
  "description": "Interactive installer for Claude Code plugins and MCP servers",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.mjs",