@tryarcanist/cli 0.1.129 → 0.1.130

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3693,7 +3693,7 @@ async function getSessionCommand(sessionId, options, command) {
3693
3693
  }
3694
3694
  const session = payload.session && typeof payload.session === "object" ? payload.session : payload;
3695
3695
  console.log(`Session: ${String(session.sessionId ?? session.id ?? sessionId)}`);
3696
- console.log(`Status: ${String(session.status ?? "unknown")}`);
3696
+ console.log(`Status: ${String(session.phase ?? session.status ?? "unknown")}`);
3697
3697
  if (session.repoUrl) console.log(`Repo: ${String(session.repoUrl)}`);
3698
3698
  if (session.title) console.log(`Title: ${String(session.title)}`);
3699
3699
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryarcanist/cli",
3
- "version": "0.1.129",
3
+ "version": "0.1.130",
4
4
  "description": "CLI for Arcanist — create and manage coding agent sessions",
5
5
  "type": "module",
6
6
  "bin": {