@rallycry/conveyor-agent 8.8.0 → 8.8.1
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/{chunk-KEBJAORX.js → chunk-4ZZXIHJV.js} +11 -10
- package/dist/chunk-4ZZXIHJV.js.map +1 -0
- package/dist/{chunk-6B545CHM.js → chunk-EOGZOS2H.js} +12 -1
- package/dist/{chunk-6B545CHM.js.map → chunk-EOGZOS2H.js.map} +1 -1
- package/dist/cli.js +2 -2
- package/dist/index.js +2 -2
- package/dist/{tag-audit-handler-3IFB7YDV.js → tag-audit-handler-S4VT47XG.js} +2 -2
- package/dist/{task-audit-handler-U5Q52YT2.js → task-audit-handler-QK7S4LWO.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-KEBJAORX.js.map +0 -1
- /package/dist/{tag-audit-handler-3IFB7YDV.js.map → tag-audit-handler-S4VT47XG.js.map} +0 -0
- /package/dist/{task-audit-handler-U5Q52YT2.js.map → task-audit-handler-QK7S4LWO.js.map} +0 -0
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
ensureClaudeCredentials,
|
|
13
13
|
removeConveyorCredentials,
|
|
14
14
|
sessionTranscriptPath
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-EOGZOS2H.js";
|
|
16
16
|
|
|
17
17
|
// src/setup/bootstrap.ts
|
|
18
18
|
var BOOTSTRAP_TIMEOUT_MS = 3e4;
|
|
@@ -1424,14 +1424,11 @@ var PlanSync = class {
|
|
|
1424
1424
|
}
|
|
1425
1425
|
};
|
|
1426
1426
|
|
|
1427
|
-
// src/execution/query-executor.ts
|
|
1428
|
-
import { createHash } from "crypto";
|
|
1429
|
-
import { existsSync, readFileSync as readFileSync2, truncateSync } from "fs";
|
|
1430
|
-
|
|
1431
1427
|
// ../shared/dist/index.js
|
|
1432
1428
|
import { z } from "zod";
|
|
1433
1429
|
import { z as z2 } from "zod";
|
|
1434
1430
|
import { z as z3 } from "zod";
|
|
1431
|
+
var DEFAULT_SONNET_MODEL = "claude-sonnet-4-6";
|
|
1435
1432
|
var MAX_FILE_SIZE_BYTES = 25 * 1024 * 1024;
|
|
1436
1433
|
var EMBED_THRESHOLD_IMAGES = 5 * 1024 * 1024;
|
|
1437
1434
|
var EMBED_THRESHOLD_TEXT = 2 * 1024 * 1024;
|
|
@@ -2220,6 +2217,10 @@ var TASK_CHAT_HISTORY_LIMIT = 20;
|
|
|
2220
2217
|
var PM_CHAT_HISTORY_LIMIT = 40;
|
|
2221
2218
|
var AGENT_CHAT_HISTORY_FETCH_LIMIT = Math.max(TASK_CHAT_HISTORY_LIMIT, PM_CHAT_HISTORY_LIMIT) + 10;
|
|
2222
2219
|
|
|
2220
|
+
// src/execution/query-executor.ts
|
|
2221
|
+
import { createHash } from "crypto";
|
|
2222
|
+
import { existsSync, readFileSync as readFileSync2, truncateSync } from "fs";
|
|
2223
|
+
|
|
2223
2224
|
// src/execution/pack-runner-prompt.ts
|
|
2224
2225
|
function findLastAgentMessageIndex(history) {
|
|
2225
2226
|
for (let i = history.length - 1; i >= 0; i--) {
|
|
@@ -8304,7 +8305,7 @@ var SessionRunner = class _SessionRunner {
|
|
|
8304
8305
|
conveyorApiUrl: this.config.connection.apiUrl,
|
|
8305
8306
|
taskToken: this.config.connection.taskToken,
|
|
8306
8307
|
taskId: this.fullContext?.taskId ?? "",
|
|
8307
|
-
model: this.fullContext?.model ??
|
|
8308
|
+
model: this.fullContext?.model ?? DEFAULT_SONNET_MODEL,
|
|
8308
8309
|
instructions: this.fullContext?.agentInstructions ?? "",
|
|
8309
8310
|
workspaceDir: this.config.workspaceDir,
|
|
8310
8311
|
mode: this.config.runnerMode,
|
|
@@ -9661,7 +9662,7 @@ function buildProjectTools(connection, getRequestingUserId = () => void 0) {
|
|
|
9661
9662
|
|
|
9662
9663
|
// src/runner/project-chat-handler.ts
|
|
9663
9664
|
var logger6 = createServiceLogger("ProjectChat");
|
|
9664
|
-
var FALLBACK_MODEL =
|
|
9665
|
+
var FALLBACK_MODEL = DEFAULT_SONNET_MODEL;
|
|
9665
9666
|
function buildSystemPrompt2(projectDir, agentCtx) {
|
|
9666
9667
|
const parts = [];
|
|
9667
9668
|
if (agentCtx?.agentInstructions) {
|
|
@@ -10581,7 +10582,7 @@ var ProjectRunner = class {
|
|
|
10581
10582
|
async handleAuditTags(request) {
|
|
10582
10583
|
this.connection.emitStatus("busy");
|
|
10583
10584
|
try {
|
|
10584
|
-
const { handleTagAudit } = await import("./tag-audit-handler-
|
|
10585
|
+
const { handleTagAudit } = await import("./tag-audit-handler-S4VT47XG.js");
|
|
10585
10586
|
await handleTagAudit(request, this.connection, this.projectDir);
|
|
10586
10587
|
} catch (error) {
|
|
10587
10588
|
const msg = parseErrorMessage(error);
|
|
@@ -10604,7 +10605,7 @@ var ProjectRunner = class {
|
|
|
10604
10605
|
async handleAuditTasks(request) {
|
|
10605
10606
|
this.connection.emitStatus("busy");
|
|
10606
10607
|
try {
|
|
10607
|
-
const { handleTaskAudit } = await import("./task-audit-handler-
|
|
10608
|
+
const { handleTaskAudit } = await import("./task-audit-handler-QK7S4LWO.js");
|
|
10608
10609
|
await handleTaskAudit(request, this.connection, this.projectDir);
|
|
10609
10610
|
} catch (error) {
|
|
10610
10611
|
const msg = parseErrorMessage(error);
|
|
@@ -10745,4 +10746,4 @@ export {
|
|
|
10745
10746
|
loadConveyorConfig,
|
|
10746
10747
|
unshallowRepo
|
|
10747
10748
|
};
|
|
10748
|
-
//# sourceMappingURL=chunk-
|
|
10749
|
+
//# sourceMappingURL=chunk-4ZZXIHJV.js.map
|