@engineeros/connector 0.8.3 → 0.8.5

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/README.md CHANGED
@@ -49,7 +49,7 @@ Credentials are stored per workspace under `~/.engineeros/connectors` with owner
49
49
 
50
50
  Keep the connector online to receive Goals assigned from EngineerOS. Each Goal runs in an isolated worktree below `~/.engineeros/runs`. Cancellation stops Codex. The connector returns changed paths, a bounded diff, and the exact repository ZIP; a human still performs independent attestation.
51
51
 
52
- During the writable implementation phase, Codex receives an authenticated EngineerOS MCP server automatically. It can list, read, create, update, reclassify, and soft-delete project artifacts through the same repository boundary used by Copilot. The backend accepts those calls only while the assigned Goal is running. Read-only project prompts and the independent verification phase do not receive mutation tools.
52
+ During the writable implementation phase, Codex receives an authenticated EngineerOS MCP server automatically. It can list, read, create, update, reclassify, soft-delete, and materialize project artifacts into canonical Product records through the same repository boundary used by Copilot. The backend accepts those calls only while the assigned Goal is running. Read-only project prompts and the independent verification phase do not receive mutation tools.
53
53
 
54
54
  Requirements: Node.js 22 or newer, Git, and an authenticated Codex CLI (`codex login`).
55
55
 
@@ -16,6 +16,7 @@ import {
16
16
  executeConnectedPrompt,
17
17
  executeWorkspaceAssessment,
18
18
  inspectCodingAgent,
19
+ promptProgressMessage,
19
20
  stopProcess,
20
21
  workspaceSnapshot,
21
22
  } from "../src/runner.mjs";
@@ -385,6 +386,25 @@ function pump() {
385
386
 
386
387
  async function executePrompt(assignment) {
387
388
  const promptId = assignment.prompt_id;
389
+ let lastProgressMessage;
390
+ const reportProgress = (message) => {
391
+ if (
392
+ !message ||
393
+ message === lastProgressMessage ||
394
+ socket.readyState !== WebSocket.OPEN ||
395
+ active?.runId !== promptId
396
+ ) {
397
+ return;
398
+ }
399
+ lastProgressMessage = message;
400
+ socket.send(
401
+ JSON.stringify({
402
+ type: "prompt.progress",
403
+ prompt_id: promptId,
404
+ message: String(message).slice(0, 500),
405
+ }),
406
+ );
407
+ };
388
408
  console.log(
389
409
  `Answering ${assignment.purpose || "project"} prompt with ${codingAgent.name}.`,
390
410
  );
@@ -393,6 +413,7 @@ async function executePrompt(assignment) {
393
413
  onProcess: (child) => {
394
414
  if (active?.runId === promptId) active.child = child;
395
415
  },
416
+ onEvent: (event) => reportProgress(promptProgressMessage(event)),
396
417
  });
397
418
  config = {
398
419
  ...config,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engineeros/connector",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "Connect a local coding agent to EngineerOS, using ACP when supported.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -119,6 +119,17 @@ export const artifactTools = [
119
119
  },
120
120
  annotations: { readOnlyHint: false, destructiveHint: false },
121
121
  },
122
+ {
123
+ name: "engineeros_materialize_product_artifacts",
124
+ description:
125
+ "Materialize structured Product documents into the canonical EngineerOS Vision, Portfolio capabilities, and project graph during the currently approved writable Goal.",
126
+ inputSchema: {
127
+ type: "object",
128
+ properties: {},
129
+ additionalProperties: false,
130
+ },
131
+ annotations: { readOnlyHint: false, destructiveHint: false },
132
+ },
122
133
  {
123
134
  name: "engineeros_delete_artifact",
124
135
  description:
@@ -210,6 +221,10 @@ async function callArtifactTool(context, tool, arguments_) {
210
221
 
211
222
  function renderArtifactToolResult(result) {
212
223
  const lines = ["# EngineerOS artifact tool result", "", result.message || "Completed."];
224
+ if (result.vision_id) lines.push("", `- Vision ID: \`${result.vision_id}\``);
225
+ if (Array.isArray(result.capability_ids) && result.capability_ids.length) {
226
+ lines.push(`- Capability IDs: ${result.capability_ids.map((id) => `\`${id}\``).join(", ")}`);
227
+ }
213
228
  if (result.artifact) lines.push("", ...artifactMarkdown(result.artifact));
214
229
  if (Array.isArray(result.artifacts)) {
215
230
  lines.push("", `## Artifacts (${result.total ?? result.artifacts.length})`, "");
package/src/runner.mjs CHANGED
@@ -570,6 +570,31 @@ export function assessmentProgressMessage(event) {
570
570
  return null;
571
571
  }
572
572
 
573
+ export function promptProgressMessage(event) {
574
+ if (!event || typeof event !== "object") return null;
575
+ if (event.type === "turn.started")
576
+ return "Reviewing the request and workspace context";
577
+ if (event.type === "item.started") {
578
+ if (event.item?.type === "command_execution") {
579
+ return assessmentCommandMilestone(event.item.command);
580
+ }
581
+ if (event.item?.type === "mcp_tool_call")
582
+ return "Checking connected project evidence";
583
+ if (event.item?.type === "web_search")
584
+ return "Checking an external technical reference";
585
+ return null;
586
+ }
587
+ if (event.type === "item.completed" && event.item?.type === "agent_message") {
588
+ return "Preparing the response";
589
+ }
590
+ if (event.type === "agent.connected") return "Connected to the coding agent";
591
+ if (event.type === "acp.tool_call" || event.type === "acp.tool_call_update") {
592
+ return "Inspecting the workspace with the coding agent";
593
+ }
594
+ if (event.type === "acp.agent_message_chunk") return "Preparing the response";
595
+ return null;
596
+ }
597
+
573
598
  function assessmentCommandMilestone(command) {
574
599
  const value = Array.isArray(command)
575
600
  ? command.join(" ")