quash-mcp 1.0.0 → 1.0.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.
- package/README.md +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ All optional — the init wizard stores these in `~/.quash/config.json`.
|
|
|
55
55
|
|----------|---------|-------------|
|
|
56
56
|
| `STACKS_PRIVATE_KEY` | — | Stacks private key for auto-payments |
|
|
57
57
|
| `QUASH_AGENT_ID` | `claude-code@hostname` | Identifier shown in the marketplace |
|
|
58
|
-
| `QUASH_API_URL` | `https://
|
|
58
|
+
| `QUASH_API_URL` | `https://quash.fly.dev` | API base URL |
|
|
59
59
|
|
|
60
60
|
Environment variables take priority over `~/.quash/config.json`.
|
|
61
61
|
|
package/dist/index.js
CHANGED
|
@@ -29,7 +29,7 @@ function loadConfig() {
|
|
|
29
29
|
return {
|
|
30
30
|
privateKey,
|
|
31
31
|
agentId: process.env.QUASH_AGENT_ID ?? file.agentId ?? `claude-code@${os.hostname()}`,
|
|
32
|
-
apiBase: process.env.QUASH_API_URL ?? file.apiBase ?? "https://
|
|
32
|
+
apiBase: process.env.QUASH_API_URL ?? file.apiBase ?? "https://quash.fly.dev",
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
function saveConfig(cfg) {
|
|
@@ -85,7 +85,7 @@ async function runInit() {
|
|
|
85
85
|
}
|
|
86
86
|
const defaultId = `claude-code@${os.hostname()}`;
|
|
87
87
|
const agentId = (await ask(`\n Agent ID [${defaultId}]: `)) || defaultId;
|
|
88
|
-
const apiBase = (await ask(" API URL [https://
|
|
88
|
+
const apiBase = (await ask(" API URL [https://quash.fly.dev]: ")) || "https://quash.fly.dev";
|
|
89
89
|
rl?.close();
|
|
90
90
|
// Now do async work after all input is collected
|
|
91
91
|
let privateKey;
|