skimpyclaw 0.3.14 → 0.3.15

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.
@@ -386,6 +386,7 @@ describe('code_with_agent', () => {
386
386
  expect(cmd).toContain('codex');
387
387
  expect(args[0]).toBe('exec');
388
388
  expect(args).toContain('--full-auto');
389
+ expect(args).toContain('--skip-git-repo-check');
389
390
  expect(args).toContain('--json');
390
391
  expect(args).toContain('--color');
391
392
  expect(args).toContain('never');
@@ -95,6 +95,7 @@ export function buildCodeAgentArgs(input) {
95
95
  '--full-auto',
96
96
  '--json',
97
97
  '--color', 'never',
98
+ '--skip-git-repo-check',
98
99
  ];
99
100
  if (input.workdir)
100
101
  args.push('-C', input.workdir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skimpyclaw",
3
- "version": "0.3.14",
3
+ "version": "0.3.15",
4
4
  "description": "A lobster in a bikini",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",