gobot-tools 1.2.3 → 1.3.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 +33 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -93,6 +93,20 @@ Connect your bot to Fireflies.ai so meeting transcripts are automatically stored
|
|
|
93
93
|
- **Setup time:** ~10 minutes
|
|
94
94
|
- **Requires:** `FIREFLIES_API_KEY`, `FIREFLIES_WEBHOOK_SECRET`
|
|
95
95
|
|
|
96
|
+
### [Rachio Irrigation](packages/rachio) — `gobot-tools install rachio`
|
|
97
|
+
|
|
98
|
+
Control and monitor your Rachio smart irrigation system via Telegram. Start zones, set rain delays, check schedules, and receive push notifications when watering starts or finishes — all in natural language.
|
|
99
|
+
|
|
100
|
+
- Zone control — "water front yard for 15 min", "run zone 3 for 10 minutes"
|
|
101
|
+
- Schedule management — start, skip, or seasonally adjust schedules
|
|
102
|
+
- Rain delay — "rain delay 2 days" activates with resume date in the reply
|
|
103
|
+
- Status queries — "rachio status", "is it watering?", "watering schedule"
|
|
104
|
+
- Push notifications — Telegram alert when zone completes, schedule finishes, rain sensor triggers, or device goes offline (via VPS webhook)
|
|
105
|
+
- Morning briefing — next scheduled run appended to daily briefing automatically
|
|
106
|
+
- **No LLM parsing** — regex intent matching keeps it fast and offline-safe
|
|
107
|
+
- **Setup time:** ~5 minutes
|
|
108
|
+
- **Requires:** `RACHIO_API_KEY`, `RACHIO_WEBHOOK_SECRET` (for push notifications)
|
|
109
|
+
|
|
96
110
|
### [FlightAware Flight Tracking](packages/flightaware) — `gobot-tools install flightaware`
|
|
97
111
|
|
|
98
112
|
Real-time flight tracking via FlightAware AeroAPI. Look up any flight, set up active tracking with proactive Telegram notifications for gate changes, delays, and arrivals, and pull travel data into morning briefings.
|
|
@@ -222,6 +236,25 @@ A 9-phase hardening prompt for your Linux VPS. Paste it into Claude Code while S
|
|
|
222
236
|
|
|
223
237
|
---
|
|
224
238
|
|
|
239
|
+
## Family
|
|
240
|
+
|
|
241
|
+
### [Homework Helper](packages/homework-helper) — `gobot-tools install homework-helper`
|
|
242
|
+
|
|
243
|
+
A standalone web app that turns your existing API keys into a grades 5–8 homework helper. Your child opens it on any device — iPad, tablet, laptop, phone — on the same WiFi as the computer running the server. No public URL needed.
|
|
244
|
+
|
|
245
|
+
The design priority is correctness for math: Claude writes Python code, E2B runs it in an isolated cloud VM, and the verified output becomes the answer. Claude only explains how to get there — it never states or guesses the number itself. Science and history use a single vision call that can read photos of worksheets or textbook pages.
|
|
246
|
+
|
|
247
|
+
- Math: Claude generates Python → E2B executes → verified answer → step-by-step explanation
|
|
248
|
+
- Science/History: Vision call reads question and optional reference image, explains at grade level
|
|
249
|
+
- Camera input on mobile — snap a photo of the worksheet directly from the browser
|
|
250
|
+
- KaTeX math rendering for clean fraction and equation display
|
|
251
|
+
- Mobile-first UI with 44px+ touch targets and dark mode
|
|
252
|
+
- Completely standalone — shares only your API keys, no bot stack required
|
|
253
|
+
- **Setup time:** ~5 minutes
|
|
254
|
+
- **Requires:** `ANTHROPIC_API_KEY`, `E2B_API_KEY`
|
|
255
|
+
|
|
256
|
+
---
|
|
257
|
+
|
|
225
258
|
## Infrastructure
|
|
226
259
|
|
|
227
260
|
### [Supabase to Convex Migration](packages/supabase-to-convex) — `gobot-tools install supabase-to-convex`
|
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.
|
|
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.3.1");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