@sun-asterisk/sungen 2.2.1 → 2.2.2

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/dist/cli/index.js CHANGED
@@ -15,7 +15,7 @@ async function main() {
15
15
  program
16
16
  .name('sungen')
17
17
  .description('Deterministic E2E Test Compiler — Gherkin + Selectors → Playwright')
18
- .version('2.2.1');
18
+ .version('2.2.2');
19
19
  // Global options
20
20
  program
21
21
  .option('-v, --verbose', 'Enable verbose logging');
@@ -3,7 +3,7 @@ name: sungen-add-screen
3
3
  description: 'Add a new Sungen screen — scaffolds directories and delegates to /sungen-make-tc for test case creation'
4
4
  argument-hint: '[screen-name] [url-path]'
5
5
  agent: 'agent'
6
- tools: ['terminal']
6
+ tools: [vscode, execute, read, agent, edit, search, web, browser, todo]
7
7
  ---
8
8
 
9
9
  **Input**: Screen name and URL path (e.g., `/sungen-add-screen login /login`).
@@ -3,7 +3,7 @@ name: sungen-make-tc
3
3
  description: 'Create or update test cases for a Sungen screen — generates feature + test-data files (20+ scenarios per viewpoint). Uses sungen-gherkin-syntax and sungen-tc-generation skills.'
4
4
  argument-hint: '[screen-name]'
5
5
  agent: 'agent'
6
- tools: ['terminal', 'playwright/*']
6
+ tools: [vscode, execute, read, agent, edit, search, web, browser, todo, 'playwright/*']
7
7
  ---
8
8
 
9
9
  **Input**: Screen name (e.g., `/sungen-make-tc admin-users`).
@@ -3,7 +3,7 @@ name: sungen-make-test
3
3
  description: 'Generate selectors, compile, and run Playwright tests — auto-fixes selectors on failure. Uses sungen-selector-fix, sungen-selector-keys, and sungen-error-mapping skills.'
4
4
  argument-hint: '[screen-name]'
5
5
  agent: 'agent'
6
- tools: ['terminal', 'playwright/*']
6
+ tools: [vscode, execute, read, agent, edit, search, web, browser, todo, 'playwright/*']
7
7
  ---
8
8
 
9
9
  **Input**: Screen name (e.g., `/sungen-make-test admin-users`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sun-asterisk/sungen",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "Deterministic E2E Test Compiler - Gherkin + Selectors → Playwright tests",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/cli/index.ts CHANGED
@@ -16,7 +16,7 @@ async function main() {
16
16
  program
17
17
  .name('sungen')
18
18
  .description('Deterministic E2E Test Compiler — Gherkin + Selectors → Playwright')
19
- .version('2.2.1');
19
+ .version('2.2.2');
20
20
 
21
21
  // Global options
22
22
  program
@@ -3,7 +3,7 @@ name: sungen-add-screen
3
3
  description: 'Add a new Sungen screen — scaffolds directories and delegates to /sungen-make-tc for test case creation'
4
4
  argument-hint: '[screen-name] [url-path]'
5
5
  agent: 'agent'
6
- tools: ['terminal']
6
+ tools: [vscode, execute, read, agent, edit, search, web, browser, todo]
7
7
  ---
8
8
 
9
9
  **Input**: Screen name and URL path (e.g., `/sungen-add-screen login /login`).
@@ -3,7 +3,7 @@ name: sungen-make-tc
3
3
  description: 'Create or update test cases for a Sungen screen — generates feature + test-data files (20+ scenarios per viewpoint). Uses sungen-gherkin-syntax and sungen-tc-generation skills.'
4
4
  argument-hint: '[screen-name]'
5
5
  agent: 'agent'
6
- tools: ['terminal', 'playwright/*']
6
+ tools: [vscode, execute, read, agent, edit, search, web, browser, todo, 'playwright/*']
7
7
  ---
8
8
 
9
9
  **Input**: Screen name (e.g., `/sungen-make-tc admin-users`).
@@ -3,7 +3,7 @@ name: sungen-make-test
3
3
  description: 'Generate selectors, compile, and run Playwright tests — auto-fixes selectors on failure. Uses sungen-selector-fix, sungen-selector-keys, and sungen-error-mapping skills.'
4
4
  argument-hint: '[screen-name]'
5
5
  agent: 'agent'
6
- tools: ['terminal', 'playwright/*']
6
+ tools: [vscode, execute, read, agent, edit, search, web, browser, todo, 'playwright/*']
7
7
  ---
8
8
 
9
9
  **Input**: Screen name (e.g., `/sungen-make-test admin-users`).