@galda/cli 0.10.0 → 0.10.1

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
@@ -26,7 +26,7 @@ Requirements:
26
26
  One line — it checks your environment, starts the local server, and opens your browser. State lives in `~/.manager-for-ai` (never in the npx cache); the directory you launch from becomes your first project:
27
27
 
28
28
  ```bash
29
- npx galda
29
+ npx @galda/cli
30
30
  ```
31
31
 
32
32
  Then pick a project (a directory on your machine), type a goal in Japanese or English, and press Enter. Include an explicit pass condition ("clicking #save shows a toast containing Saved") and Galda verifies it independently and attaches video proof. Add "make a pull request" (or プルリク) and it opens a PR with the proof committed.
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  // Galda — one-line launcher
3
3
  //
4
- // npx galda
4
+ // npx @galda/cli
5
5
  //
6
6
  // Checks the environment, starts the local server, prints (and opens) the
7
7
  // keyed URL. State lives in ~/.manager-for-ai (never in the npx cache).
@@ -56,7 +56,7 @@ process.env.MANAGER_OPEN_BROWSER = process.env.MANAGER_OPEN_BROWSER ?? '1';
56
56
  // Kept here, not in engine/server.mjs, so tests (which import the server directly)
57
57
  // and `npm start` from the repo stay env-driven and don't hit the live worker.
58
58
  // The license public key is already baked in engine/lib.mjs (offline verify).
59
- // Opt out with an empty value: `MANAGER_BILLING_API_URL= RELAY_URL= npx galda`.
59
+ // Opt out with an empty value: `MANAGER_BILLING_API_URL= RELAY_URL= npx @galda/cli`.
60
60
  process.env.MANAGER_BILLING_API_URL = process.env.MANAGER_BILLING_API_URL ?? 'https://agent-manager-billing-api.a2c-tech.workers.dev';
61
61
  process.env.RELAY_URL = process.env.RELAY_URL ?? 'wss://app.galda.app/agent';
62
62
  await import(pathToFileURL(join(ROOT, 'engine', 'server.mjs')).href);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galda/cli",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "type": "module",
5
5
  "description": "Galda - hand off work to your Claude Code, get proof back. Runs on your existing subscription, no extra API cost.",
6
6
  "scripts": {