speculos-toolkit 1.1.2 → 1.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speculos-toolkit",
3
- "version": "1.1.2",
3
+ "version": "1.2.0",
4
4
  "description": "The Speculos toolkit for coding agents \u2014 deploy any frontend/backend to a live URL and build against your linked data connectors (BigQuery, Postgres, Snowflake, Salesforce, \u2026). Built for Claude Code, Codex, Cursor, and friends.",
5
5
  "bin": {
6
6
  "speculos-toolkit": "bin/speculos-toolkit.js"
package/src/client.js CHANGED
@@ -1,8 +1,10 @@
1
- // HTTP client to the Speculos orchestrator (management API). Holds no platform
2
- // secrets. The orchestrator runs self-hosted behind the Cloudflare forwarding
3
- // deploy-orch-38hd4.speculos.ai; it drives Daytona backends and pushes frontends
4
- // to the EC2 host that serves them at user-deployed.speculos.ai.
5
- const DEFAULT_API = process.env.SPECULOS_API || "https://deploy-orch-38hd4.speculos.ai";
1
+ // HTTP client to the Speculos platform gateway (management API). Holds no
2
+ // platform secrets. The gateway proxies these calls to the deploy orchestrator
3
+ // on the same box and files every deploy in the console's shared history, so a
4
+ // CLI deploy and a console publish sit in one list under one identity. The
5
+ // orchestrator's own hostname (deploy-orch-38hd4.speculos.ai) still answers and
6
+ // can be selected with --api; deployed apps keep calling the broker there.
7
+ const DEFAULT_API = process.env.SPECULOS_API || "https://unified-api.speculos.ai/toolkit";
6
8
 
7
9
  function base(opts) { return (opts.api || DEFAULT_API).replace(/\/$/, ""); }
8
10
 
package/src/index.js CHANGED
@@ -129,7 +129,7 @@ OPTIONS
129
129
  --args <json> connectors exec: tool arguments as inline JSON
130
130
  --args-file <f> connectors exec: tool arguments from a JSON file (preferred
131
131
  in agents — inline JSON with $ ( ) etc. may need approval)
132
- --api <url> orchestrator base url (default https://deploy-orch-38hd4.speculos.ai)
132
+ --api <url> platform API base (default https://unified-api.speculos.ai/toolkit)
133
133
  --timeout <sec> max seconds to wait for the backend (default 600)
134
134
  --json machine-readable only (auto-on when non-TTY/CI)
135
135