gobot-tools 1.1.2 → 1.1.3
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 +13 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,6 +82,19 @@ Real-time flight tracking via FlightAware AeroAPI. Look up any flight, set up ac
|
|
|
82
82
|
- **Setup time:** ~10 minutes
|
|
83
83
|
- **Requires:** `FLIGHTAWARE_API_KEY`
|
|
84
84
|
|
|
85
|
+
### [E2B Code Sandbox](packages/e2b-sandbox) — `gobot-tools install e2b-sandbox`
|
|
86
|
+
|
|
87
|
+
Execute Python code in isolated cloud sandboxes via [E2B](https://e2b.dev). Adds a `/run` command for direct execution and a Claude-initiated confirmation flow — Claude can write code, propose running it, and report real results back to chat. Each execution runs in a fresh Firecracker microVM that is destroyed the moment it finishes. No local Docker required.
|
|
88
|
+
|
|
89
|
+
- `/run <code>` — execute Python directly from Telegram, get stdout/stderr back instantly
|
|
90
|
+
- Claude-proposed execution — Claude generates `[ACTION:run_code]` tags; you confirm with a button tap
|
|
91
|
+
- Useful for: calculations, data processing, text manipulation, quick scripts, algorithmic problems
|
|
92
|
+
- Ephemeral VMs — no filesystem state between runs, no outbound network access from code
|
|
93
|
+
- Daily limit on Claude-initiated runs (default 20/day, configurable)
|
|
94
|
+
- **New accounts receive $100 in free credits** — typical personal use lasts months before any charges
|
|
95
|
+
- **Setup time:** ~5 minutes
|
|
96
|
+
- **Requires:** `E2B_API_KEY`, `SANDBOX_ENABLED=true`
|
|
97
|
+
|
|
85
98
|
---
|
|
86
99
|
|
|
87
100
|
## Health
|
package/dist/index.js
CHANGED
|
@@ -77,4 +77,4 @@ Expecting one of '${z.join("', '")}'`);let R=`${$}Help`;return this.on(R,(J)=>{l
|
|
|
77
77
|
`);return}if(z.length===0){console.log(`
|
|
78
78
|
No tools installed yet. Run "gobot-tools install <tool>" first.
|
|
79
79
|
`);return}let R=0,J=0;for(let Q of z){let Z=L$(Q.name);if(Z===Q.version){console.log(` ${Q.displayName}: already up to date (${Q.version})`),J++;continue}let X=Z??"unknown";console.log(`
|
|
80
|
-
Updating ${Q.displayName}: ${X} → ${Q.version}...`);try{await f(Q),console.log(" Updated."),R++}catch(Y){console.log(` Update failed: ${Y.message}`)}}if(console.log(),R>0)console.log(` ${R} tool(s) updated.`);if(J>0&&R===0)console.log(" All tools are up to date.");console.log()}var H=new Q$;H.name("gobot-tools").description("CLI marketplace for Autonomee community bot tools").version("1.1.
|
|
80
|
+
Updating ${Q.displayName}: ${X} → ${Q.version}...`);try{await f(Q),console.log(" Updated."),R++}catch(Y){console.log(` Update failed: ${Y.message}`)}}if(console.log(),R>0)console.log(` ${R} tool(s) updated.`);if(J>0&&R===0)console.log(" All tools are up to date.");console.log()}var H=new Q$;H.name("gobot-tools").description("CLI marketplace for Autonomee community bot tools").version("1.1.3");H.command("init").description("Set up gobot-tools for your project").action(Y$);H.command("list").description("Browse all available tools").action(I$);H.command("search <query>").description("Search tools by name, category, or keyword").action(K$);H.command("info <tool>").description("Show details about a specific tool").action(P$);H.command("install <tool>").description("Install a tool into your project").action(W$);H.command("uninstall <tool>").description("Remove an installed tool").action(S$);H.command("update [tool]").description("Update an installed tool, or all installed tools if no name given").action(y$);H.parse();
|
package/package.json
CHANGED