athena-agent-launcher 0.3.1 → 0.3.2

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/bin/launcher.mjs +5 -1
  2. package/package.json +1 -1
package/bin/launcher.mjs CHANGED
@@ -193,6 +193,10 @@ async function ensureHermesInstalled() {
193
193
  c = isWin
194
194
  ? // Native Windows installer (PowerShell). Hermes' CLI + ACP run
195
195
  // natively; only its own dashboard pane needs WSL2, which we don't use.
196
+ // `-SkipSetup` suppresses the interactive wizard (Nous Portal login,
197
+ // model/backend prompts) — Athena overwrites Hermes' config to point at
198
+ // the Athena proxy anyway, so the wizard is pure friction. iex can't
199
+ // pass params, so build a scriptblock from the downloaded script.
196
200
  spawn(
197
201
  "powershell",
198
202
  [
@@ -200,7 +204,7 @@ async function ensureHermesInstalled() {
200
204
  "-ExecutionPolicy",
201
205
  "Bypass",
202
206
  "-Command",
203
- "iex (irm https://hermes-agent.nousresearch.com/install.ps1)",
207
+ "& ([scriptblock]::Create((irm https://hermes-agent.nousresearch.com/install.ps1))) -SkipSetup",
204
208
  ],
205
209
  { stdio: "inherit" },
206
210
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "athena-agent-launcher",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Run an Athena-configured agent locally. Resolves runtime + bindings from the Athena control plane and spawns the correct agent binary (Anthropic SDK, OpenClaw, or Hermes).",
5
5
  "type": "module",
6
6
  "bin": {