@sun-asterisk/sungen 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -26,13 +26,13 @@ Sungen is a **deterministic-first** E2E test automation framework that generates
26
26
  ### Installation
27
27
 
28
28
  ```bash
29
- npm install -g @sungen/cli
29
+ npm install -g @sun-asterisk/sungen
30
30
  ```
31
31
 
32
32
  Or use locally in your project:
33
33
 
34
34
  ```bash
35
- npm install --save-dev @sungen/cli
35
+ npm install --save-dev @sun-asterisk/sungen
36
36
  ```
37
37
 
38
38
  ### Setup
@@ -51,13 +51,7 @@ This creates:
51
51
 
52
52
  **Note:** Use `sungen add --screen <name>` to create screen definitions with proper structure.
53
53
 
54
- 2. Set your API key:
55
-
56
- ```bash
57
- export ANTHROPIC_API_KEY=your_api_key_here
58
- ```
59
-
60
- 3. Create your first screen definition:
54
+ 2. Create your first screen definition:
61
55
 
62
56
  ```bash
63
57
  sungen add --screen login --path /auth/login
@@ -68,7 +62,7 @@ This creates a screen definition with:
68
62
  - `qa/screens/login/selectors/login.yaml` - Element selectors
69
63
  - `qa/screens/login/test-data/login.yaml` - Test data variables
70
64
 
71
- 4. Edit the generated feature file and run the pipeline:
65
+ 3. Edit the generated feature file and run the pipeline:
72
66
 
73
67
  ### Usage
74
68
 
@@ -34,7 +34,7 @@ class CLIAdapter {
34
34
  program
35
35
  .name('sungen')
36
36
  .description('AI-Native E2E Test Generator - Generate Playwright tests from Gherkin features')
37
- .version('3.1.0');
37
+ .version('1.0.1');
38
38
  // Global options
39
39
  program
40
40
  .option('-c, --config <path>', 'Path to custom config file')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sun-asterisk/sungen",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI-Native E2E Test Generator - Generate Playwright tests from Gherkin features using AI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,7 +36,7 @@ export class CLIAdapter implements InputAdapter {
36
36
  program
37
37
  .name('sungen')
38
38
  .description('AI-Native E2E Test Generator - Generate Playwright tests from Gherkin features')
39
- .version('3.1.0');
39
+ .version('1.0.1');
40
40
 
41
41
  // Global options
42
42
  program