@exodus/xqa 1.15.1 → 1.15.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.
Files changed (2) hide show
  1. package/dist/xqa.cjs +17 -20
  2. package/package.json +4 -4
package/dist/xqa.cjs CHANGED
@@ -76122,31 +76122,29 @@ function resolveFreestyleTimeout(item, config3) {
76122
76122
  }
76123
76123
  return config3.QA_EXPLORE_TIMEOUT_SECONDS ?? DEFAULT_FREESTYLE_TIMEOUT_SECONDS2;
76124
76124
  }
76125
- function buildFreestyleExplorerConfig(input) {
76126
- const { item, context, simulatorUdid } = input;
76127
- const { config: config3, date: date5, appContext } = context;
76128
- return {
76129
- mode: "freestyle",
76130
- date: date5,
76131
- mcpServers: createDefaultMcpServers(simulatorUdid),
76132
- allowedTools: ALLOWED_TOOLS,
76133
- timeoutMs: resolveFreestyleTimeout(item, config3) * MS_PER_SECOND4,
76134
- appContext: composeAppContext([buildDeviceInstruction(simulatorUdid), appContext, item.prompt]),
76135
- buildEnv: config3.QA_BUILD_ENV,
76136
- cwd: ensureWorkerCwd(simulatorUdid),
76137
- record: true
76138
- };
76139
- }
76140
76125
  function buildFreestylePipelineConfig(input) {
76141
76126
  const { item, context, signal, simulatorUdid, onEvent } = input;
76142
- const { xqaDirectory, runId } = context;
76127
+ const { config: config3, xqaDirectory, runId, date: date5, appContext } = context;
76143
76128
  return {
76144
76129
  outputDir: import_node_path21.default.join(xqaDirectory, "output", item.id),
76145
76130
  runId,
76146
76131
  simulatorUdid,
76147
76132
  signal,
76148
76133
  onEvent,
76149
- explorer: buildFreestyleExplorerConfig(input)
76134
+ explorer: {
76135
+ mode: "freestyle",
76136
+ date: date5,
76137
+ mcpServers: createDefaultMcpServers(simulatorUdid),
76138
+ allowedTools: ALLOWED_TOOLS,
76139
+ timeoutMs: resolveFreestyleTimeout(item, config3) * MS_PER_SECOND4,
76140
+ appContext: composeAppContext([
76141
+ buildDeviceInstruction(simulatorUdid),
76142
+ appContext,
76143
+ item.prompt
76144
+ ]),
76145
+ buildEnv: config3.QA_BUILD_ENV,
76146
+ cwd: ensureWorkerCwd(simulatorUdid)
76147
+ }
76150
76148
  };
76151
76149
  }
76152
76150
  function executeFreestyleItem(input) {
@@ -76168,8 +76166,7 @@ function buildSpecPipelineConfig(input) {
76168
76166
  allowedTools: ALLOWED_TOOLS,
76169
76167
  appContext: composeAppContext([buildDeviceInstruction(simulatorUdid), appContext]),
76170
76168
  buildEnv: config3.QA_BUILD_ENV,
76171
- cwd: ensureWorkerCwd(simulatorUdid),
76172
- record: true
76169
+ cwd: ensureWorkerCwd(simulatorUdid)
76173
76170
  }
76174
76171
  };
76175
76172
  }
@@ -76460,7 +76457,7 @@ function resolveXqaDirectory() {
76460
76457
  return result.value;
76461
76458
  }
76462
76459
  var program2 = new Command();
76463
- program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.15.1"}${false ? ` (dev build +${"8f8a210"})` : ""}`);
76460
+ program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.15.2"}${false ? ` (dev build +${"409fb4d"})` : ""}`);
76464
76461
  program2.command("init").description("Initialize a new xqa project in the current directory").action(() => {
76465
76462
  runInitCommand();
76466
76463
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/xqa",
3
- "version": "1.15.1",
3
+ "version": "1.15.2",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22"
@@ -26,13 +26,13 @@
26
26
  "typescript": "^5.8.3",
27
27
  "vitest": "^3.2.1",
28
28
  "zod": "^3.0.0",
29
- "@qa-agents/display": "0.0.0",
30
29
  "@qa-agents/eslint-config": "0.0.0",
30
+ "@qa-agents/explorer": "0.0.0",
31
31
  "@qa-agents/pipeline": "0.0.0",
32
32
  "@qa-agents/shared": "0.0.0",
33
33
  "@qa-agents/typescript-config": "0.0.0",
34
- "@qa-agents/explorer": "0.0.0",
35
- "@qa-agents/mobile-ios": "0.0.0"
34
+ "@qa-agents/mobile-ios": "0.0.0",
35
+ "@qa-agents/display": "0.0.0"
36
36
  },
37
37
  "dependencies": {
38
38
  "ajv": "^8.18.0",