@rubytech/create-realagent 1.0.632 → 1.0.633

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/dist/index.js CHANGED
@@ -840,7 +840,10 @@ function installUv() {
840
840
  }
841
841
  console.log(" Installing uv (Python tool runner — required by Neo4j MCP server)...");
842
842
  logFile(" uv: installing via astral.sh installer");
843
- const result = spawnSync("bash", ["-c", "curl -LsSf https://astral.sh/uv/install.sh | sh -s -- -y"], { stdio: "inherit" });
843
+ // astral.sh installer auto-confirms when stdin is not a TTY (our case under
844
+ // systemd-run). Historically we passed `-y`, which the script rejects with
845
+ // "unknown option -y" and causes uv to never install on upgrade.
846
+ const result = spawnSync("bash", ["-c", "curl -LsSf https://astral.sh/uv/install.sh | sh"], { stdio: "inherit" });
844
847
  if (result.status !== 0) {
845
848
  console.error(` WARNING: uv install exited ${result.status} — graph MCP server will fail at session start until this is retried`);
846
849
  logFile(` WARNING: uv install failed with status ${result.status}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-realagent",
3
- "version": "1.0.632",
3
+ "version": "1.0.633",
4
4
  "description": "Install Real Agent — Built for agents. By agents.",
5
5
  "bin": {
6
6
  "create-realagent": "./dist/index.js"