autodev-cli 1.4.23 → 1.4.24

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.
package/out/cli.js CHANGED
@@ -65,7 +65,7 @@ const program = new commander_1.Command()
65
65
  // autodev --setup-url=https://… --ide=cursor .
66
66
  // autodev --connect=wss://host?token=…&endpoint=… .
67
67
  .option('--ide <ide>', 'Init and launch the workspace in an IDE (vscode | cursor)')
68
- .option('-p, --provider <provider>', 'Default AI provider', 'claude-cli')
68
+ .option('-p, --provider <provider>', 'Default AI provider', 'claude-tui')
69
69
  .option('--force', 'Overwrite existing files (with --ide)')
70
70
  .option('--no-extension', 'Skip auto-installing the autoaidev extension (with --ide)')
71
71
  .option('--connect <wsurl>', 'Bind the workspace to a ws:// / wss:// URL with ?token=&endpoint=')
@@ -182,7 +182,7 @@ function initCommand(program) {
182
182
  program
183
183
  .command('init [path]')
184
184
  .description('Initialise a workspace: create TODO.md and .autodev/settings.json')
185
- .option('-p, --provider <provider>', 'Default AI provider', 'claude-cli')
185
+ .option('-p, --provider <provider>', 'Default AI provider', 'claude-tui')
186
186
  .option('--ide <ide>', 'Launch IDE after init: vscode | cursor')
187
187
  .option('--no-launch', 'Do not actually launch the IDE (only install extension)')
188
188
  .option('--no-extension', 'Skip auto-installing the autoaidev extension')
@@ -43,7 +43,7 @@ function startCommand(program) {
43
43
  program
44
44
  .command('start [path]')
45
45
  .description('Start the autonomous task loop in a workspace directory')
46
- .option('-p, --provider <provider>', `AI provider: ${PROVIDERS.join(' | ')} (default: .autodev/settings.json, else claude-cli)`)
46
+ .option('-p, --provider <provider>', `AI provider: ${PROVIDERS.join(' | ')} (default: .autodev/settings.json, else claude-tui)`)
47
47
  .option('--todo <file>', 'Path to TODO.md (relative to workspace)', 'TODO.md')
48
48
  .option('--once', 'Run until the TODO drains, then exit (default: poll forever)')
49
49
  .option('--session-name <name>', 'Display name for this session (opencode --title, copilot --name, shown in pixel-office)')
package/out/sdk/index.js CHANGED
@@ -18,11 +18,11 @@ class LoopApi {
18
18
  const log = options.log ?? console.log;
19
19
  // Provider resolution order: explicit option → `.autodev/settings.json`
20
20
  // provider (parity with the VS Code shell, which reads the same field) →
21
- // 'claude-cli' fallback. Guard against an unknown settings value.
21
+ // 'claude-tui' fallback. Guard against an unknown settings value.
22
22
  const settingsProvider = (0, settingsLoader_1.loadSettingsForRoot)(root).provider;
23
23
  const provider = options.provider
24
24
  ?? (settingsProvider && settingsProvider in providers_1.PROVIDERS ? settingsProvider : undefined)
25
- ?? 'claude-cli';
25
+ ?? 'claude-tui';
26
26
  const callbacks = {
27
27
  workspaceRoot: root,
28
28
  fileWatcher: new adapters_1.NodeFileWatcher(),
package/out/sessions.js CHANGED
@@ -13,7 +13,7 @@ const settingsLoader_1 = require("./core/settingsLoader");
13
13
  * from settings and include claude + opencode (the inspectable stores). */
14
14
  function collectSessions(root, provider) {
15
15
  const settings = (0, settingsLoader_1.loadSettingsForRoot)(root);
16
- const fam = (provider ?? settings.provider ?? 'claude-cli');
16
+ const fam = (provider ?? settings.provider ?? 'claude-tui');
17
17
  const out = [];
18
18
  const wantClaude = fam.startsWith('claude') || !provider;
19
19
  const wantOpencode = fam.startsWith('opencode') || !provider;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autodev-cli",
3
- "version": "1.4.23",
3
+ "version": "1.4.24",
4
4
  "description": "AutoAIDev CLI — autonomous AI task loop with VS Code / Cursor launcher",
5
5
  "license": "MIT",
6
6
  "bin": {