@digipair/skill-codex 0.99.3 → 0.100.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/index.cjs.js CHANGED
@@ -23924,14 +23924,14 @@ function indent(str, spaces) {
23924
23924
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23925
23925
  // match is required
23926
23926
  if (!match) {
23927
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23927
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23928
23928
  v: nextMatch1
23929
23929
  };
23930
23930
  }
23931
23931
  var token = match.token, offset = match.offset;
23932
23932
  i1 += offset;
23933
23933
  if (token === " ") {
23934
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23934
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23935
23935
  }
23936
23936
  tokens1 = _to_consumable_array$1(tokens1).concat([
23937
23937
  token
@@ -23950,7 +23950,7 @@ function indent(str, spaces) {
23950
23950
  if (contextKeys.some(function(el) {
23951
23951
  return el.startsWith(name);
23952
23952
  })) {
23953
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23953
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23954
23954
  }
23955
23955
  if (dateTimeIdentifiers.some(function(el) {
23956
23956
  return el === name;
@@ -23969,9 +23969,9 @@ function indent(str, spaces) {
23969
23969
  if (dateTimeIdentifiers.some(function(el) {
23970
23970
  return el.startsWith(name);
23971
23971
  })) {
23972
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
23972
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23973
23973
  }
23974
- return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
23974
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23975
23975
  v: nextMatch1
23976
23976
  };
23977
23977
  };
@@ -28044,7 +28044,7 @@ let CodexService = class CodexService {
28044
28044
  let line = '';
28045
28045
  let listening = false;
28046
28046
  const regexNewLine = /^\[\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\] /;
28047
- const regexCodex = /^\[\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\] codex\n\n/;
28047
+ const regexCodex = /^\[\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\] codex\n/;
28048
28048
  const onData = (chunk)=>{
28049
28049
  const s = chunk.toString();
28050
28050
  stdout += s;
package/index.esm.js CHANGED
@@ -23902,14 +23902,14 @@ function indent(str, spaces) {
23902
23902
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23903
23903
  // match is required
23904
23904
  if (!match) {
23905
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
23905
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23906
23906
  v: nextMatch1
23907
23907
  };
23908
23908
  }
23909
23909
  var token = match.token, offset = match.offset;
23910
23910
  i1 += offset;
23911
23911
  if (token === " ") {
23912
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23912
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23913
23913
  }
23914
23914
  tokens1 = _to_consumable_array$1(tokens1).concat([
23915
23915
  token
@@ -23928,7 +23928,7 @@ function indent(str, spaces) {
23928
23928
  if (contextKeys.some(function(el) {
23929
23929
  return el.startsWith(name);
23930
23930
  })) {
23931
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23931
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23932
23932
  }
23933
23933
  if (dateTimeIdentifiers.some(function(el) {
23934
23934
  return el === name;
@@ -23947,9 +23947,9 @@ function indent(str, spaces) {
23947
23947
  if (dateTimeIdentifiers.some(function(el) {
23948
23948
  return el.startsWith(name);
23949
23949
  })) {
23950
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23950
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23951
23951
  }
23952
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
23952
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23953
23953
  v: nextMatch1
23954
23954
  };
23955
23955
  };
@@ -28022,7 +28022,7 @@ let CodexService = class CodexService {
28022
28022
  let line = '';
28023
28023
  let listening = false;
28024
28024
  const regexNewLine = /^\[\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\] /;
28025
- const regexCodex = /^\[\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\] codex\n\n/;
28025
+ const regexCodex = /^\[\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\] codex\n/;
28026
28026
  const onData = (chunk)=>{
28027
28027
  const s = chunk.toString();
28028
28028
  stdout += s;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-codex",
3
- "version": "0.99.3",
3
+ "version": "0.100.0",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "service",