ramwisp 0.1.1 → 0.1.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/bin/wisp.js +2 -2
- package/package.json +1 -1
- package/src/mcp.js +1 -1
package/bin/wisp.js
CHANGED
|
@@ -46,8 +46,8 @@ async function main() {
|
|
|
46
46
|
case "kill": return out(await killAgent(rest[0]));
|
|
47
47
|
case "ls": return out(await listAgents());
|
|
48
48
|
case "setup":
|
|
49
|
-
return console.log(`Claude Code:\n claude mcp add --scope user
|
|
50
|
-
`Codex (~/.codex/config.toml):\n [mcp_servers.
|
|
49
|
+
return console.log(`Claude Code:\n claude mcp add --scope user ramwisp -- npx -y ramwisp@latest\n\n` +
|
|
50
|
+
`Codex (~/.codex/config.toml):\n [mcp_servers.ramwisp]\n command = "npx"\n args = ["-y", "ramwisp@latest"]\n tool_timeout_sec = 1000`);
|
|
51
51
|
default: return console.log(HELP);
|
|
52
52
|
}
|
|
53
53
|
}
|
package/package.json
CHANGED
package/src/mcp.js
CHANGED
|
@@ -4,7 +4,7 @@ import { API, getToken, startLogin } from "./account.js";
|
|
|
4
4
|
import { LoginRequired, killAgent, listAgents, result, spawnAgent, waitAgent } from "./client.js";
|
|
5
5
|
|
|
6
6
|
const PROTOCOLS = ["2025-06-18", "2025-03-26", "2024-11-05"];
|
|
7
|
-
const VERSION = "0.1.
|
|
7
|
+
const VERSION = "0.1.2";
|
|
8
8
|
|
|
9
9
|
const INSTRUCTIONS = `wisp roda subagentes Claude Code ou Codex em máquinas efêmeras na nuvem, com a RAM que você pedir,
|
|
10
10
|
sem pesar esta máquina. Cada subagente nasce numa enclave isolada (AWS Nitro): antes de mandar qualquer coisa,
|