@engineeros/connector 0.8.3 → 0.8.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/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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engineeros/connector",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
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})`, "");