@meetquinn/animactl 0.1.7-canary.216.1.29a0c8a → 0.1.7

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.
@@ -82,7 +82,7 @@ export class KimiCliAgentRuntime {
82
82
  if (!this.controller) {
83
83
  let controller;
84
84
  controller = new KimiAcpController(startChildProcess({
85
- args: ['acp'],
85
+ args: ['--yolo', 'acp'],
86
86
  bufferOutput: false,
87
87
  command: KIMI_COMMAND,
88
88
  cwd: input.cwd,
@@ -1237,7 +1237,7 @@ test('kimi-cli ACP transport starts a turn and appends subscription follow-up in
1237
1237
  const sessionId = state.sessions.anima?.current?.id;
1238
1238
  assert.equal(sessionId, 'kimi-session-1');
1239
1239
  const args = JSON.parse((await readFile(callsPath, 'utf8')).split('\n')[0] ?? '{}');
1240
- assert.deepEqual(args.argv, ['acp']);
1240
+ assert.deepEqual(args.argv, ['--yolo', 'acp']);
1241
1241
  const calls = (await readFile(callsPath, 'utf8')).trim().split('\n').map((line) => JSON.parse(line));
1242
1242
  assert.equal(calls.filter((call) => call.method === 'session/prompt').length, 2);
1243
1243
  assert.ok(calls.find((call) => call.method === 'session/prompt')?.params?.prompt?.[0]?.text?.includes('You are Anima'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetquinn/animactl",
3
- "version": "0.1.7-canary.216.1.29a0c8a",
3
+ "version": "0.1.7",
4
4
  "license": "Apache-2.0",
5
5
  "private": false,
6
6
  "description": "Operator CLI for installing and running Anima.",