@tryarcanist/cli 0.1.54 → 0.1.55

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 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1684,7 +1684,8 @@ async function createCommand(repoUrl, promptArg, options, command) {
1684
1684
  body: JSON.stringify({
1685
1685
  context: { repoUrl },
1686
1686
  ...options.model ? { model: options.model } : {},
1687
- ...options.reasoningEffort ? { reasoningEffort: options.reasoningEffort } : {}
1687
+ ...options.reasoningEffort ? { reasoningEffort: options.reasoningEffort } : {},
1688
+ ...options.cold ? { cold: true } : {}
1688
1689
  })
1689
1690
  });
1690
1691
  const sessionId = sessionData.sessionId;
@@ -2052,7 +2053,7 @@ function addCreateOptions(cmd) {
2052
2053
  "--poll-interval <ms>",
2053
2054
  "Polling interval in milliseconds while waiting",
2054
2055
  String(DEFAULT_WATCH_POLL_INTERVAL_MS)
2055
- ).option("--idempotency-key <uuid>", "Request idempotency key for safe manual retries").addHelpText(
2056
+ ).option("--idempotency-key <uuid>", "Request idempotency key for safe manual retries").option("--cold", "Force a fresh sandbox; skip the warm pool").addHelpText(
2056
2057
  "after",
2057
2058
  `
2058
2059
  Examples:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryarcanist/cli",
3
- "version": "0.1.54",
3
+ "version": "0.1.55",
4
4
  "description": "CLI for Arcanist — create and manage coding agent sessions",
5
5
  "type": "module",
6
6
  "bin": {