@rallycry/conveyor-agent 10.13.67 → 10.13.68
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-XPZPR6NS.js → chunk-E3QHGYZ2.js} +14 -14
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -8421,12 +8421,12 @@ function findLastAgentMessageIndex2(history) {
|
|
|
8421
8421
|
}
|
|
8422
8422
|
return -1;
|
|
8423
8423
|
}
|
|
8424
|
-
function formatProjectAgents(
|
|
8424
|
+
function formatProjectAgents(agents) {
|
|
8425
8425
|
const parts = [``, `## Project Agents`];
|
|
8426
|
-
for (const
|
|
8427
|
-
const role =
|
|
8428
|
-
const sp =
|
|
8429
|
-
parts.push(`- ${
|
|
8426
|
+
for (const agent of agents) {
|
|
8427
|
+
const role = agent.role ? `role: ${agent.role}` : "role: unassigned";
|
|
8428
|
+
const sp = agent.storyPoints === null || agent.storyPoints === void 0 ? "" : `, story points: ${agent.storyPoints}`;
|
|
8429
|
+
parts.push(`- ${agent.name} (${role}${sp})`);
|
|
8430
8430
|
}
|
|
8431
8431
|
return parts;
|
|
8432
8432
|
}
|
|
@@ -8525,8 +8525,8 @@ function buildPackRunnerSystemPrompt(context, config, setupLog) {
|
|
|
8525
8525
|
if (context.storyPoints && context.storyPoints.length > 0) {
|
|
8526
8526
|
parts.push(...formatStoryPoints(context.storyPoints));
|
|
8527
8527
|
}
|
|
8528
|
-
if (context.
|
|
8529
|
-
parts.push(...formatProjectAgents(context.
|
|
8528
|
+
if (context.agents && context.agents.length > 0) {
|
|
8529
|
+
parts.push(...formatProjectAgents(context.agents));
|
|
8530
8530
|
}
|
|
8531
8531
|
if (setupLog.length > 0) {
|
|
8532
8532
|
parts.push(``, `## Environment setup log`, "```", ...setupLog, "```");
|
|
@@ -9605,10 +9605,10 @@ function buildReviewPrompt(context) {
|
|
|
9605
9605
|
}
|
|
9606
9606
|
|
|
9607
9607
|
// src/execution/system-prompt.ts
|
|
9608
|
-
function formatProjectAgentLine(
|
|
9609
|
-
const role =
|
|
9610
|
-
const sp =
|
|
9611
|
-
return `- ${
|
|
9608
|
+
function formatProjectAgentLine(agent) {
|
|
9609
|
+
const role = agent.role ? `role: ${agent.role}` : "role: unassigned";
|
|
9610
|
+
const sp = agent.storyPoints === null || agent.storyPoints === void 0 ? "" : `, story points: ${agent.storyPoints}`;
|
|
9611
|
+
return `- ${agent.name} (${role}${sp})`;
|
|
9612
9612
|
}
|
|
9613
9613
|
function buildPmPreamble(context) {
|
|
9614
9614
|
const parts = [
|
|
@@ -9637,10 +9637,10 @@ You are the Project Manager for this set of tasks.`,
|
|
|
9637
9637
|
`Use the subtask tools (create_subtask, update_subtask, list_subtasks) to manage work breakdown.`
|
|
9638
9638
|
);
|
|
9639
9639
|
}
|
|
9640
|
-
if (context.
|
|
9640
|
+
if (context.agents && context.agents.length > 0) {
|
|
9641
9641
|
parts.push(`
|
|
9642
9642
|
Project Agents:`);
|
|
9643
|
-
for (const pa of context.
|
|
9643
|
+
for (const pa of context.agents) {
|
|
9644
9644
|
parts.push(formatProjectAgentLine(pa));
|
|
9645
9645
|
}
|
|
9646
9646
|
}
|
|
@@ -16782,7 +16782,7 @@ var SessionRunner = class _SessionRunner {
|
|
|
16782
16782
|
lastSeenMessageId: ctx.lastSeenMessageId ?? null,
|
|
16783
16783
|
isParentTask: ctx.isParentTask ?? false,
|
|
16784
16784
|
storyPoints: ctx.storyPoints ?? void 0,
|
|
16785
|
-
|
|
16785
|
+
agents: ctx.agents ?? void 0,
|
|
16786
16786
|
projectTags: ctx.projectTags ?? void 0,
|
|
16787
16787
|
taskTagIds: ctx.taskTagIds ?? void 0,
|
|
16788
16788
|
projectObjectives: ctx.projectObjectives ?? void 0,
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rallycry/conveyor-agent",
|
|
3
|
-
"version": "10.13.
|
|
3
|
+
"version": "10.13.68",
|
|
4
4
|
"description": "Conveyor Agent Runner v10 - PTY harness for the task chat (SDK harness for audit/project-chat). Agent-as-User architecture with BaseService patterns. Works locally too.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|