@selfcure/selfcure 0.1.0 → 0.1.1

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/README.md +1 -1
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Part of selfcure's **legacy BYOK pipeline** (fallback for teams not using the Playwright Test Agents' Healer). On a failing test, it sends the trace and error to the configured provider, applies the proposed diff, and re-runs to confirm the fix. **BYOK** — bring your own key.
6
6
 
7
- Internal library powering `selfcure heal`. The headline, preventive flow is `selfcure lint` — see [`@selfcure/cli`](https://www.npmjs.com/package/@selfcure/cli).
7
+ Internal library powering `selfcure heal`. Most teams don't need it: the headline, preventive flow is `selfcure lint` surfaced to your AI client through [`@selfcure/mcp`](https://www.npmjs.com/package/@selfcure/mcp) — see [`@selfcure/cli`](https://www.npmjs.com/package/@selfcure/cli).
8
8
 
9
9
  ## Install
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@selfcure/selfcure",
3
- "version": "0.1.0",
4
- "description": "Self-healing loop — sends trace + error to the configured LLM, applies diff, re-validates",
3
+ "version": "0.1.1",
4
+ "description": "Legacy BYOK self-healing loop for selfcure — sends trace + error to the configured LLM, applies diff, re-validates. Optional fallback for teams without Playwright Test Agents; the headline flow is `selfcure lint` + @selfcure/mcp.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "ricardofrancocustodio",
@@ -19,7 +19,9 @@
19
19
  "import": "./dist/index.js"
20
20
  }
21
21
  },
22
- "files": ["dist"],
22
+ "files": [
23
+ "dist"
24
+ ],
23
25
  "publishConfig": {
24
26
  "access": "public"
25
27
  },
@@ -29,8 +31,8 @@
29
31
  "test": "vitest"
30
32
  },
31
33
  "dependencies": {
32
- "@selfcure/generator": "^0.1.0",
33
- "@selfcure/runner": "^0.1.0",
34
+ "@selfcure/generator": "^0.1.1",
35
+ "@selfcure/runner": "^0.1.1",
34
36
  "ai": "^6.0.191",
35
37
  "fs-extra": "^11.3.5"
36
38
  },