scai 0.1.111 → 0.1.112

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 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -31,9 +31,7 @@ import { updateContext } from './context.js';
31
31
  import { Agent } from './agent/agentManager.js';
32
32
  // 🎛️ CLI Setup
33
33
  const cmd = new Command('scai')
34
- .version(version)
35
- .option('--model <model>', 'Set the model to use (e.g., codellama:34b)')
36
- .option('--lang <lang>', 'Set the target language (ts, java, rust)');
34
+ .version(version, '-v, --version', 'output the current version');
37
35
  // 🔧 Main command group
38
36
  cmd
39
37
  .command('init')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scai",
3
- "version": "0.1.111",
3
+ "version": "0.1.112",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "scai": "./dist/index.js"