@selfcure/generator 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 +6 -4
package/README.md CHANGED
@@ -6,7 +6,7 @@ Part of selfcure's **fallback pipeline** for teams not using the Playwright Test
6
6
 
7
7
  Supported providers: Anthropic, OpenAI, Google Gemini, Groq, DeepSeek, and local Ollama.
8
8
 
9
- Internal library powering `selfcure run`. The headline, preventive flow is `selfcure lint` — see [`@selfcure/cli`](https://www.npmjs.com/package/@selfcure/cli).
9
+ Internal library powering `selfcure run`. 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).
10
10
 
11
11
  ## Install
12
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@selfcure/generator",
3
- "version": "0.1.0",
4
- "description": "Sends component analysis to an LLM (Anthropic/OpenAI/Google/Groq/DeepSeek/Ollama) and receives Playwright test code",
3
+ "version": "0.1.1",
4
+ "description": "Legacy BYOK test generator for selfcure — sends component analysis to an LLM (Anthropic/OpenAI/Google/Groq/DeepSeek/Ollama) and returns Playwright test code. 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,7 +31,7 @@
29
31
  "test": "vitest"
30
32
  },
31
33
  "dependencies": {
32
- "@selfcure/analyzer": "^0.1.0",
34
+ "@selfcure/analyzer": "^0.1.1",
33
35
  "ai": "^6.0.191",
34
36
  "@ai-sdk/anthropic": "^3.0.79",
35
37
  "@ai-sdk/openai": "^3.0.65",