opc-agent 4.0.2 → 4.0.3

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.
@@ -345,7 +345,7 @@ class ClaudeCLIProvider {
345
345
  if (options?.tools && options.tools.length > 0) {
346
346
  prompt += buildToolPrompt(options.tools);
347
347
  }
348
- const args = ['-p'];
348
+ const args = ['-p', '--bare'];
349
349
  // Write system prompt to temp file to avoid shell escaping issues
350
350
  let tmpFile;
351
351
  if (systemPrompt) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opc-agent",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Open Agent Framework — Build, test, and run AI Agents for business workstations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -352,7 +352,7 @@ class ClaudeCLIProvider implements LLMProvider {
352
352
  prompt += buildToolPrompt(options.tools);
353
353
  }
354
354
 
355
- const args = ['-p'];
355
+ const args = ['-p', '--bare'];
356
356
  // Write system prompt to temp file to avoid shell escaping issues
357
357
  let tmpFile: string | undefined;
358
358
  if (systemPrompt) {