@engineeros/connector 0.10.3 → 0.10.4

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": "@engineeros/connector",
3
- "version": "0.10.3",
3
+ "version": "0.10.4",
4
4
  "description": "Connect a local coding agent to EngineerOS, using ACP when supported.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -51,7 +51,7 @@ export async function inspectCodexExecutionProfiles({
51
51
  }, timeoutMs);
52
52
  try {
53
53
  await request("initialize", {
54
- clientInfo: { name: "engineeros-connector", title: "EngineerOS Connector", version: "0.10.3" },
54
+ clientInfo: { name: "engineeros-connector", title: "EngineerOS Connector", version: "0.10.4" },
55
55
  });
56
56
  child.stdin.write(`${JSON.stringify({ method: "initialized" })}\n`);
57
57
  const models = [];
@@ -168,7 +168,7 @@ export function launchCodexAppServer({
168
168
  void (async () => {
169
169
  try {
170
170
  await request("initialize", {
171
- clientInfo: { name: "engineeros-connector", title: "EngineerOS Connector", version: "0.10.3" },
171
+ clientInfo: { name: "engineeros-connector", title: "EngineerOS Connector", version: "0.10.4" },
172
172
  });
173
173
  child.stdin.write(`${JSON.stringify({ method: "initialized" })}\n`);
174
174
  const threadResult = previousSessionId
package/src/runner.mjs CHANGED
@@ -1047,14 +1047,13 @@ export function codexExecutionArgs({
1047
1047
  : ["exec", ...optionArgs, "--sandbox", sandbox, "-C", workspace, "-"];
1048
1048
  }
1049
1049
 
1050
- export function sanitizeAgentResponse(value) {
1051
- return String(value || "")
1052
- .replace(
1053
- /^Warning: Exceeded skills context budget(?: of \d+%)?\. All skill descriptions were removed and \d+ additional skills? (?:was|were) not included in the model-visible skills list\.\s*/i,
1054
- "",
1055
- )
1056
- .trimStart();
1057
- }
1050
+ export function sanitizeAgentResponse(value) {
1051
+ return String(value || "")
1052
+ .replace(
1053
+ /^Warning: Exceeded skills context budget(?: of \d+%)?\. All skill descriptions were removed and \d+ additional skills? (?:was|were) not included in the model-visible skills list\.\s*/i,
1054
+ "",
1055
+ );
1056
+ }
1058
1057
 
1059
1058
  function tomlLiteralString(value) {
1060
1059
  const text = String(value);