@digipair/skill-codex 0.99.0 → 0.99.1

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/index.cjs.js CHANGED
@@ -23925,14 +23925,14 @@ function indent(str, spaces) {
23925
23925
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23926
23926
  // match is required
23927
23927
  if (!match) {
23928
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23928
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23929
23929
  v: nextMatch1
23930
23930
  };
23931
23931
  }
23932
23932
  var token = match.token, offset = match.offset;
23933
23933
  i1 += offset;
23934
23934
  if (token === " ") {
23935
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23935
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23936
23936
  }
23937
23937
  tokens1 = _to_consumable_array$1(tokens1).concat([
23938
23938
  token
@@ -23951,7 +23951,7 @@ function indent(str, spaces) {
23951
23951
  if (contextKeys.some(function(el) {
23952
23952
  return el.startsWith(name);
23953
23953
  })) {
23954
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23954
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23955
23955
  }
23956
23956
  if (dateTimeIdentifiers.some(function(el) {
23957
23957
  return el === name;
@@ -23970,9 +23970,9 @@ function indent(str, spaces) {
23970
23970
  if (dateTimeIdentifiers.some(function(el) {
23971
23971
  return el.startsWith(name);
23972
23972
  })) {
23973
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23973
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23974
23974
  }
23975
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23975
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23976
23976
  v: nextMatch1
23977
23977
  };
23978
23978
  };
@@ -28044,6 +28044,8 @@ let CodexService = class CodexService {
28044
28044
  args.push('exec');
28045
28045
  // codex exec expects: codex exec --sandbox <mode> [PROMPT]
28046
28046
  args.push('--sandbox', sandbox);
28047
+ // skip git repo check
28048
+ args.push('--skip-git-repo-check');
28047
28049
  args.push(prompt);
28048
28050
  const child = child_process.spawn(process.execPath, args, {
28049
28051
  cwd,
package/index.esm.js CHANGED
@@ -23903,14 +23903,14 @@ function indent(str, spaces) {
23903
23903
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23904
23904
  // match is required
23905
23905
  if (!match) {
23906
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
23906
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23907
23907
  v: nextMatch1
23908
23908
  };
23909
23909
  }
23910
23910
  var token = match.token, offset = match.offset;
23911
23911
  i1 += offset;
23912
23912
  if (token === " ") {
23913
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23913
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23914
23914
  }
23915
23915
  tokens1 = _to_consumable_array$1(tokens1).concat([
23916
23916
  token
@@ -23929,7 +23929,7 @@ function indent(str, spaces) {
23929
23929
  if (contextKeys.some(function(el) {
23930
23930
  return el.startsWith(name);
23931
23931
  })) {
23932
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23932
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23933
23933
  }
23934
23934
  if (dateTimeIdentifiers.some(function(el) {
23935
23935
  return el === name;
@@ -23948,9 +23948,9 @@ function indent(str, spaces) {
23948
23948
  if (dateTimeIdentifiers.some(function(el) {
23949
23949
  return el.startsWith(name);
23950
23950
  })) {
23951
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23951
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23952
23952
  }
23953
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
23953
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23954
23954
  v: nextMatch1
23955
23955
  };
23956
23956
  };
@@ -28022,6 +28022,8 @@ let CodexService = class CodexService {
28022
28022
  args.push('exec');
28023
28023
  // codex exec expects: codex exec --sandbox <mode> [PROMPT]
28024
28024
  args.push('--sandbox', sandbox);
28025
+ // skip git repo check
28026
+ args.push('--skip-git-repo-check');
28025
28027
  args.push(prompt);
28026
28028
  const child = spawn(process.execPath, args, {
28027
28029
  cwd,
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@digipair/skill-codex",
3
- "version": "0.99.0",
3
+ "version": "0.99.1",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "service",
7
7
  "util"
8
8
  ],
9
- "dependencies": {},
9
+ "dependencies": {
10
+ "@openai/codex": "^0.25.0"
11
+ },
10
12
  "main": "./index.cjs.js",
11
13
  "module": "./index.esm.js"
12
14
  }