arisa 2.1.9 → 2.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arisa",
3
- "version": "2.1.9",
3
+ "version": "2.2.0",
4
4
  "description": "Arisa - dynamic agent runtime with daemon/core architecture that evolves through user interaction",
5
5
  "preferGlobal": true,
6
6
  "bin": {
@@ -147,9 +147,12 @@ async function runClaude(message: string, chatId: string): Promise<string> {
147
147
 
148
148
  const proc = Bun.spawn(buildBunWrappedAgentCliCommand("claude", args), {
149
149
  cwd: config.projectDir,
150
+ stdin: "pipe",
150
151
  stdout: "pipe",
151
152
  stderr: "pipe",
153
+ env: { ...process.env, CI: "1" },
152
154
  });
155
+ proc.stdin.end();
153
156
 
154
157
  const timeout = setTimeout(() => {
155
158
  log.warn(`Claude timed out after ${model.timeout}ms, killing process`);