@loadmill/droid-cua 2.0.3 → 2.0.4

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.
@@ -160,8 +160,20 @@ CRITICAL - Test Script Format Rules:
160
160
  - Merge duplicate or near-duplicate validation lines into one clear assertion
161
161
  - End with "exit"
162
162
  - Keep it simple and executable
163
+ - When you generate the final result, include a suggested test name before the script
164
+ - The suggested test name must be very short: prefer 2 to 4 words
165
+ - Focus on the main user goal, not every assertion or detail
166
+ - The suggested test name must be lowercase, kebab-case, and filename-safe
167
+ - Use this exact final format:
168
+ Suggested test name: short-kebab-case-name
169
+
170
+ \`\`\`
171
+ <test script here>
172
+ \`\`\`
163
173
 
164
174
  CORRECT Example:
175
+ Suggested test name: calculator-addition
176
+
165
177
  \`\`\`
166
178
  Open Calculator app
167
179
  assert: Calculator app is visible
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loadmill/droid-cua",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "AI-powered Android testing agent using OpenAI's computer-use model and ADB",
5
5
  "main": "build/index.js",
6
6
  "type": "module",