@smithers-orchestrator/cli 0.16.8 → 0.16.9

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.
Files changed (2) hide show
  1. package/package.json +11 -11
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithers-orchestrator/cli",
3
- "version": "0.16.8",
3
+ "version": "0.16.9",
4
4
  "description": "Smithers command-line interface, TUI, MCP server, and local workflow tools",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -29,16 +29,16 @@
29
29
  "picocolors": "^1.1.1",
30
30
  "react": "^19.2.5",
31
31
  "zod": "^4.3.6",
32
- "@smithers-orchestrator/components": "0.16.8",
33
- "@smithers-orchestrator/agents": "0.16.8",
34
- "@smithers-orchestrator/observability": "0.16.8",
35
- "@smithers-orchestrator/driver": "0.16.8",
36
- "@smithers-orchestrator/db": "0.16.8",
37
- "@smithers-orchestrator/errors": "0.16.8",
38
- "@smithers-orchestrator/scheduler": "0.16.8",
39
- "@smithers-orchestrator/time-travel": "0.16.8",
40
- "@smithers-orchestrator/server": "0.16.8",
41
- "smithers-orchestrator": "0.16.8"
32
+ "@smithers-orchestrator/agents": "0.16.9",
33
+ "@smithers-orchestrator/components": "0.16.9",
34
+ "@smithers-orchestrator/db": "0.16.9",
35
+ "@smithers-orchestrator/driver": "0.16.9",
36
+ "@smithers-orchestrator/errors": "0.16.9",
37
+ "@smithers-orchestrator/observability": "0.16.9",
38
+ "@smithers-orchestrator/scheduler": "0.16.9",
39
+ "@smithers-orchestrator/server": "0.16.9",
40
+ "@smithers-orchestrator/time-travel": "0.16.9",
41
+ "smithers-orchestrator": "0.16.9"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/bun": "latest",
package/src/index.js CHANGED
@@ -91,7 +91,7 @@ async function loadWorkflowDb(workflowPath) {
91
91
  */
92
92
  function readPackageVersion() {
93
93
  try {
94
- const pkgUrl = new URL("../../package.json", import.meta.url);
94
+ const pkgUrl = new URL("../package.json", import.meta.url);
95
95
  const raw = readFileSync(pkgUrl, "utf8");
96
96
  const parsed = JSON.parse(raw);
97
97
  return typeof parsed.version === "string" ? parsed.version : "unknown";