mastracode 0.22.2-alpha.0 → 0.22.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/CHANGELOG.md +15 -0
- package/dist/{chunk-KEEC6KZP.js → chunk-7ARENXCP.js} +10 -29
- package/dist/chunk-7ARENXCP.js.map +1 -0
- package/dist/{chunk-G76EJQC6.js → chunk-AB4G5527.js} +3 -3
- package/dist/{chunk-G76EJQC6.js.map → chunk-AB4G5527.js.map} +1 -1
- package/dist/{chunk-DS5OW7P2.cjs → chunk-BOZ3JCCI.cjs} +931 -950
- package/dist/chunk-BOZ3JCCI.cjs.map +1 -0
- package/dist/{chunk-G2TNUR63.cjs → chunk-DPPFZEZI.cjs} +39 -39
- package/dist/{chunk-G2TNUR63.cjs.map → chunk-DPPFZEZI.cjs.map} +1 -1
- package/dist/{chunk-7ZTY5SBK.js → chunk-EXBGEHMR.js} +10 -4
- package/dist/chunk-EXBGEHMR.js.map +1 -0
- package/dist/{chunk-EAUXUMEB.cjs → chunk-NFF7IH5X.cjs} +10 -4
- package/dist/chunk-NFF7IH5X.cjs.map +1 -0
- package/dist/cli.cjs +18 -18
- package/dist/cli.js +3 -3
- package/dist/github-signals/index.d.ts.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.js +1 -1
- package/dist/tui/commands/github.d.ts +0 -14
- package/dist/tui/commands/github.d.ts.map +1 -1
- package/dist/tui/commands/new.d.ts.map +1 -1
- package/dist/tui/handlers/agent-lifecycle.d.ts.map +1 -1
- package/dist/tui.cjs +19 -19
- package/dist/tui.js +2 -2
- package/package.json +6 -6
- package/dist/chunk-7ZTY5SBK.js.map +0 -1
- package/dist/chunk-DS5OW7P2.cjs.map +0 -1
- package/dist/chunk-EAUXUMEB.cjs.map +0 -1
- package/dist/chunk-KEEC6KZP.js.map +0 -1
|
@@ -9,7 +9,6 @@ var openaiCompatible = require('@ai-sdk/openai-compatible');
|
|
|
9
9
|
var schemaCompat = require('@mastra/schema-compat');
|
|
10
10
|
var openai = require('@ai-sdk/openai');
|
|
11
11
|
var llm = require('@mastra/core/llm');
|
|
12
|
-
var child_process = require('child_process');
|
|
13
12
|
var crypto = require('crypto');
|
|
14
13
|
var promises = require('fs/promises');
|
|
15
14
|
var os = require('os');
|
|
@@ -1285,7 +1284,14 @@ function getDynamicModel({ requestContext }) {
|
|
|
1285
1284
|
const thinkingLevel = harnessContext?.state?.thinkingLevel;
|
|
1286
1285
|
return resolveModel(modelId, { thinkingLevel, requestContext });
|
|
1287
1286
|
}
|
|
1288
|
-
var
|
|
1287
|
+
var _execFileAsync;
|
|
1288
|
+
async function execFileAsync(file, args, options) {
|
|
1289
|
+
if (!_execFileAsync) {
|
|
1290
|
+
const cp = await import('child_process');
|
|
1291
|
+
_execFileAsync = util.promisify(cp.execFile);
|
|
1292
|
+
}
|
|
1293
|
+
return _execFileAsync(file, args, options);
|
|
1294
|
+
}
|
|
1289
1295
|
var GITHUB_SUBSCRIBE_PR_TAG = "github-subscribe-pr";
|
|
1290
1296
|
var GITHUB_UNSUBSCRIBE_PR_TAG = "github-unsubscribe-pr";
|
|
1291
1297
|
var GITHUB_SYNC_STATUS_TAG = "github-sync-status";
|
|
@@ -3053,5 +3059,5 @@ exports.setProfileProvider = setProfileProvider;
|
|
|
3053
3059
|
exports.theme = theme;
|
|
3054
3060
|
exports.tintHex = tintHex;
|
|
3055
3061
|
exports.toCustomProviderModelId = toCustomProviderModelId;
|
|
3056
|
-
//# sourceMappingURL=chunk-
|
|
3057
|
-
//# sourceMappingURL=chunk-
|
|
3062
|
+
//# sourceMappingURL=chunk-NFF7IH5X.cjs.map
|
|
3063
|
+
//# sourceMappingURL=chunk-NFF7IH5X.cjs.map
|