@pantheon.ai/agents 0.0.13 → 0.0.14

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/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -423,7 +423,7 @@ var require_cli_options = /* @__PURE__ */ __commonJSMin(((exports, module) => {
423
423
 
424
424
  //#endregion
425
425
  //#region package.json
426
- var version$1 = "0.0.13";
426
+ var version$1 = "0.0.14";
427
427
 
428
428
  //#endregion
429
429
  //#region src/schemas/task-list.ts
@@ -10144,7 +10144,7 @@ async function configAgent(name, options) {
10144
10144
  options.rootBranchId = project.root_branch_id;
10145
10145
  }
10146
10146
  if (options.bootstrap) {
10147
- const { branch_id: branchId } = await executeOnPantheon({
10147
+ const { branch_id: branchId, latest_snap_id: branchLatestSnapId } = await executeOnPantheon({
10148
10148
  projectId: options.projectId,
10149
10149
  branchId: options.rootBranchId,
10150
10150
  agent: "codex",
@@ -10166,7 +10166,7 @@ Finally, outputs the first 5 lines of <workspace>/AGENTS.md and the skills list
10166
10166
  let retried = 0;
10167
10167
  const maxRetries = 3;
10168
10168
  let i = 0;
10169
- console.log(`Bootstrap branch created: ${branchId}. Waiting for ready... [poll interval = 10s]`);
10169
+ console.log(`Bootstrap branch created: ${branchId} ${branchLatestSnapId}. Waiting for ready... [poll interval = 10s]`);
10170
10170
  while (true) {
10171
10171
  await new Promise((resolve) => {
10172
10172
  setTimeout(resolve, 1e4);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pantheon.ai/agents",
3
3
  "type": "module",
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "bin": {
6
6
  "pantheon-agents": "dist/index.js"
7
7
  },