Documentation Index
Fetch the complete documentation index at: https://smithers.sh/llms.txt
Use this file to discover all available pages before exploring further.
0.16.9
Patch release:smithers --version now prints the real version instead of unknown.
Fixes
smithers --versionno longer printsunknown.readPackageVersionin@smithers-orchestrator/cli/src/index.jsresolvednew URL("../../package.json", import.meta.url), which climbed two levels out of@smithers-orchestrator/cli/src/and landed on@smithers-orchestrator/package.json— a path that doesn’t exist, soreadFileSyncthrewENOENT, the catch returned the string"unknown", and that literal propagated through the CLI, thegetOrchestratorVersionFFI call, and all the way into the Smithers GUI sidebar (which rendered “Smithers unknown”). Fixed the URL to"../package.json"so it resolves to@smithers-orchestrator/cli/package.jsonand the declared version is read correctly. No behavior change beyond the version string being accurate.