testdriverai 7.5.8 → 7.5.10

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 (58) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/agent/lib/sandbox.js +24 -0
  3. package/package.json +1 -1
  4. package/.github/agents/testdriver.agent.md +0 -641
  5. package/.github/copilot-instructions.md +0 -690
  6. package/.github/skills/testdriver-ai/SKILL.md +0 -204
  7. package/.github/skills/testdriver-assert/SKILL.md +0 -315
  8. package/.github/skills/testdriver-aws-setup/SKILL.md +0 -448
  9. package/.github/skills/testdriver-caching/SKILL.md +0 -124
  10. package/.github/skills/testdriver-captcha/SKILL.md +0 -159
  11. package/.github/skills/testdriver-ci-cd/SKILL.md +0 -602
  12. package/.github/skills/testdriver-click/SKILL.md +0 -286
  13. package/.github/skills/testdriver-client/SKILL.md +0 -372
  14. package/.github/skills/testdriver-cloud/SKILL.md +0 -119
  15. package/.github/skills/testdriver-customizing-devices/SKILL.md +0 -153
  16. package/.github/skills/testdriver-dashcam/SKILL.md +0 -418
  17. package/.github/skills/testdriver-debugging-with-screenshots/SKILL.md +0 -401
  18. package/.github/skills/testdriver-device-config/SKILL.md +0 -317
  19. package/.github/skills/testdriver-double-click/SKILL.md +0 -102
  20. package/.github/skills/testdriver-elements/SKILL.md +0 -605
  21. package/.github/skills/testdriver-enterprise/SKILL.md +0 -114
  22. package/.github/skills/testdriver-examples/SKILL.md +0 -7
  23. package/.github/skills/testdriver-exec/SKILL.md +0 -345
  24. package/.github/skills/testdriver-find/SKILL.md +0 -829
  25. package/.github/skills/testdriver-focus-application/SKILL.md +0 -293
  26. package/.github/skills/testdriver-generating-tests/SKILL.md +0 -36
  27. package/.github/skills/testdriver-hover/SKILL.md +0 -278
  28. package/.github/skills/testdriver-locating-elements/SKILL.md +0 -71
  29. package/.github/skills/testdriver-making-assertions/SKILL.md +0 -32
  30. package/.github/skills/testdriver-mcp-workflow/SKILL.md +0 -410
  31. package/.github/skills/testdriver-mouse-down/SKILL.md +0 -161
  32. package/.github/skills/testdriver-mouse-up/SKILL.md +0 -164
  33. package/.github/skills/testdriver-parse/SKILL.md +0 -236
  34. package/.github/skills/testdriver-performing-actions/SKILL.md +0 -54
  35. package/.github/skills/testdriver-press-keys/SKILL.md +0 -348
  36. package/.github/skills/testdriver-quickstart/SKILL.md +0 -145
  37. package/.github/skills/testdriver-reusable-code/SKILL.md +0 -249
  38. package/.github/skills/testdriver-right-click/SKILL.md +0 -123
  39. package/.github/skills/testdriver-running-tests/SKILL.md +0 -185
  40. package/.github/skills/testdriver-screenshot/SKILL.md +0 -248
  41. package/.github/skills/testdriver-scroll/SKILL.md +0 -335
  42. package/.github/skills/testdriver-secrets/SKILL.md +0 -115
  43. package/.github/skills/testdriver-self-hosted/SKILL.md +0 -65
  44. package/.github/skills/testdriver-test-writer/SKILL.md +0 -451
  45. package/.github/skills/testdriver-testdriver/SKILL.md +0 -631
  46. package/.github/skills/testdriver-testdriver-mechanic/SKILL.md +0 -165
  47. package/.github/skills/testdriver-type/SKILL.md +0 -357
  48. package/.github/skills/testdriver-variables/SKILL.md +0 -111
  49. package/.github/skills/testdriver-waiting-for-elements/SKILL.md +0 -88
  50. package/.github/skills/testdriver-what-is-testdriver/SKILL.md +0 -54
  51. package/.github/workflows/acceptance-linux-scheduled.yaml +0 -45
  52. package/.github/workflows/acceptance-windows-scheduled.yaml +0 -59
  53. package/.github/workflows/acceptance.yaml +0 -108
  54. package/.github/workflows/publish.yaml +0 -75
  55. package/.github/workflows/test-init.yml +0 -157
  56. package/.github/workflows/testdriver.yml +0 -170
  57. package/.github/workflows/update-examples.yaml +0 -53
  58. package/.github/workflows/windows-self-hosted.yaml +0 -80
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## 7.5.10 (2026-03-06)
2
+
3
+ ## 🔧 Maintenance
4
+
5
+ - Streamline repository structure by consolidating GitHub workflows and removing duplicate configuration files (ea19cf96)
6
+
7
+ ## 7.5.9 (2026-03-06)
8
+
9
+ ## 🔧 Maintenance
10
+
11
+ - Improve logging and error handling across runner and API services [Runner, API] (543ee70a)
12
+ - Update SDK publishing workflow to use beta tag for pre-release versions [SDK] (543ee70a)
13
+ - Enhance sandbox agent reliability and self-update mechanisms [Runner] (543ee70a)
14
+
1
15
  ## 7.5.8 (2026-03-06)
2
16
 
3
17
  ## 🔧 Maintenance
@@ -446,6 +446,18 @@ const createSandbox = function (emitter, analytics, sessionInstance) {
446
446
  if (data && data.ip && reply.runner) reply.runner.ip = data.ip;
447
447
  if (data && data.runnerVersion && reply.runner) reply.runner.version = data.runnerVersion;
448
448
  logger.log('Runner agent ready (os=' + ((data && data.os) || 'unknown') + ', runner v' + ((data && data.runnerVersion) || 'unknown') + ')');
449
+ if (data && data.update) {
450
+ var u = data.update;
451
+ if (u.status === 'up-to-date') {
452
+ logger.log('Runner is up to date (v' + u.localVersion + ')');
453
+ } else if (u.status === 'updated') {
454
+ logger.log('Runner was auto-updated: v' + u.localVersion + ' \u2192 v' + u.remoteVersion);
455
+ } else if (u.status === 'available:major') {
456
+ logger.warn('Runner update available but not auto-installed (major/minor): v' + u.localVersion + ' \u2192 v' + u.remoteVersion);
457
+ } else if (u.status && u.status.startsWith('error:')) {
458
+ logger.warn('Runner update check failed: ' + u.status.slice(6));
459
+ }
460
+ }
449
461
  resolve();
450
462
  }
451
463
 
@@ -537,6 +549,18 @@ const createSandbox = function (emitter, analytics, sessionInstance) {
537
549
  clearTimeout(timer);
538
550
  self._ctrlChannel.unsubscribe('control', onCtrl);
539
551
  logger.log('Runner agent ready (direct, os=' + ((data && data.os) || 'unknown') + ', runner v' + ((data && data.runnerVersion) || 'unknown') + ')');
552
+ if (data && data.update) {
553
+ var u = data.update;
554
+ if (u.status === 'up-to-date') {
555
+ logger.log('Runner is up to date (v' + u.localVersion + ')');
556
+ } else if (u.status === 'updated') {
557
+ logger.log('Runner was auto-updated: v' + u.localVersion + ' \u2192 v' + u.remoteVersion);
558
+ } else if (u.status === 'available:major') {
559
+ logger.warn('Runner update available but not auto-installed (major/minor): v' + u.localVersion + ' \u2192 v' + u.remoteVersion);
560
+ } else if (u.status && u.status.startsWith('error:')) {
561
+ logger.warn('Runner update check failed: ' + u.status.slice(6));
562
+ }
563
+ }
540
564
  resolve();
541
565
  }
542
566
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.5.8",
3
+ "version": "7.5.10",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",