@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.
@@ -8421,12 +8421,12 @@ function findLastAgentMessageIndex2(history) {
8421
8421
  }
8422
8422
  return -1;
8423
8423
  }
8424
- function formatProjectAgents(projectAgents) {
8424
+ function formatProjectAgents(agents) {
8425
8425
  const parts = [``, `## Project Agents`];
8426
- for (const pa of projectAgents) {
8427
- const role = pa.role ? `role: ${pa.role}` : "role: unassigned";
8428
- const sp = pa.storyPoints === null || pa.storyPoints === void 0 ? "" : `, story points: ${pa.storyPoints}`;
8429
- parts.push(`- ${pa.agent.name} (${role}${sp})`);
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.projectAgents && context.projectAgents.length > 0) {
8529
- parts.push(...formatProjectAgents(context.projectAgents));
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(pa) {
9609
- const role = pa.role ? `role: ${pa.role}` : "role: unassigned";
9610
- const sp = pa.storyPoints === null || pa.storyPoints === void 0 ? "" : `, story points: ${pa.storyPoints}`;
9611
- return `- ${pa.agent.name} (${role}${sp})`;
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.projectAgents && context.projectAgents.length > 0) {
9640
+ if (context.agents && context.agents.length > 0) {
9641
9641
  parts.push(`
9642
9642
  Project Agents:`);
9643
- for (const pa of context.projectAgents) {
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
- projectAgents: ctx.projectAgents ?? void 0,
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
@@ -35,7 +35,7 @@ import {
35
35
  sampleKeyUsage,
36
36
  statWorkspacePath,
37
37
  workspacePathExists
38
- } from "./chunk-XPZPR6NS.js";
38
+ } from "./chunk-E3QHGYZ2.js";
39
39
  import {
40
40
  reportBootMilestone
41
41
  } from "./chunk-KG4ORL3Y.js";
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  unshallowRepo,
14
14
  updateRemoteToken,
15
15
  workspacePathExists
16
- } from "./chunk-XPZPR6NS.js";
16
+ } from "./chunk-E3QHGYZ2.js";
17
17
  import "./chunk-KG4ORL3Y.js";
18
18
  import "./chunk-IA45XHOA.js";
19
19
  import {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rallycry/conveyor-agent",
3
- "version": "10.13.67",
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",