@ctrl-spc/cli 1.1.11 → 1.1.12

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.
@@ -5,13 +5,14 @@ export const PING_PROMPT = 'Reply with one short sentence confirming you are sti
5
5
  // Null columns are omitted so the CLI falls back to its own default.
6
6
  export function assembleCommand(req, prompt = READINESS_PROMPT) {
7
7
  if (req.agent_type === 'codex') {
8
- const args = ['exec', prompt];
8
+ const args = ['--ask-for-approval', 'on-request', 'exec'];
9
9
  if (req.model)
10
10
  args.push('--model', req.model);
11
11
  args.push('--sandbox', req.permission_mode ?? 'read-only');
12
- args.push('--ask-for-approval', 'on-request');
13
12
  if (req.effort)
14
13
  args.push('-c', `model_reasoning_effort=${req.effort}`);
14
+ args.push('--color', 'never');
15
+ args.push(prompt);
15
16
  return { cmd: 'codex', args };
16
17
  }
17
18
  // Default: Claude Code.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctrl-spc/cli",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "description": "Control Space CLI - machine setup and background daemon",
5
5
  "type": "module",
6
6
  "files": [