Tools
Lobster Powers
๐ฆ OpenClaw superpowers for any AI agent โ memory, browser automation, TTS, scheduling, and more. Claude Code plugin + standalone CLI.
README
# ๐ฆ lobster-powers โย OpenClaw tools for any agent
[](https://opensource.org/licenses/MIT)
[](https://www.python.org/downloads/)
**Snap snap!** Give your AI agent some serious claws.
> *"Why should OpenClaw have all the fun?"*
Transform any AI agent (Claude Code, Cursor, Copilot, whatever) into a crustacean powerhouse with scheduling, memory, browser automation, and more.
## ๐ค What's the deal?
[OpenClaw](https://openclaw.ai) is an awesome AI assistant with superpowers built-in. But those powers are locked inside the OpenClaw ecosystem.
**lobster-powers** breaks them free! ๐ฆ๐ฅ
Same capabilities. Standalone CLI tools. Works everywhere.
## ๐ฅ The Powers
| Power | CLI | What it does |
|-------|-----|--------------|
| ๐ **cron** | `lp-cron` | "Remind me to touch grass at 5pm" |
| ๐ง **memory** | `lp-memory` | "What did we decide about auth last month?" |
| ๐ **browser** | `lp-browser` | "Fill out that form for me" |
| ๐ฃ๏ธ **tts** | `lp-tts` | "Say it out loud" |
| ๐ **web-search** | `lp-web-search` | "Google this for me" |
| ๐ **web-fetch** | `lp-web-fetch` | "Read that article" |
| ๐ผ๏ธ **image** | `lp-image` | "What's in this picture?" |
| ๐ **notify** | `lp-notify` | *ping* |
## ๐ฆ Installation
### ๐ฆ Claude Code (recommended)
```bash
# Add the lobster marketplace
/plugin marketplace add superbereza/lobster-powers
# Unleash the powers
/plugin install lobster-powers@lobster-powers
```
Done. Your Claude now has claws.
### ๐ง Manual install (any agent)
```bash
git clone https://github.com/superbereza/lobster-powers
cd lobster-powers
./install.sh
```
This installs:
- CLI tools โ `~/.local/bin/lp-*`
- Skills โ `~/.claude/skills/`
## โ๏ธ Requirements
- **Python**: 3.10+
- **OS**: Linux, macOS, Windows
- **Optional**: Playwright browsers for `lp-browser` (auto-installed)
## ๐ API Keys
Some powers need API keys. Copy `.env.example` to `.env` and fill in your keys:
```bash
cp .env.example .env
# Edit .env with your keys
```
| Power | Required Key | Free Tier? |
|-------|-------------|------------|
| ๐ง memory | `OPENAI_API_KEY` | No (~$0.01/100 files) |
| ๐ผ๏ธ image | `OPENAI_API_KEY` or `ANTHROPIC_API_KEY` | No |
| ๐ฃ๏ธ tts | None (Edge TTS) | โ
Yes |
| ๐ฃ๏ธ tts | `OPENAI_API_KEY` or `ELEVENLABS_API_KEY` | No |
| ๐ web-search | `BRAVE_API_KEY` or `PERPLEXITY_API_KEY` | โ
Brave free tier |
| ๐ web-fetch | None | โ
Yes |
| ๐ cron | None | โ
Yes |
| ๐ notify | None | โ
Yes |
| ๐ browser | None | โ
Yes |
## ๐ Quick Start
```bash
# Set a reminder
lp-cron add "Stand up and stretch!" --at "now + 1 hour"
# Search your notes
lp-memory search "that auth decision"
# Speak!
lp-tts "Hello, I am a lobster with powers"
# Take a screenshot
lp-browser screenshot
```
## ๐ค For AI Agents
Each power comes with a skill that teaches your AI when and how to use it.
**Claude Code / OpenCode** โ skills load automatically via plugin system
**Other agents** โ `./install.sh` symlinks skills to `~/.claude/skills/`
Then just ask naturally:
- *"Remind me to deploy at 3pm"*
- *"What did we decide about the database schema?"*
- *"Read that HN article and summarize it"*
Your agent figures out which claw to use. ๐ฆ
## ๐๏ธ Architecture
```
You โโโถ AI Agent โโโถ lobster-powers CLI โโโถ Magic happens
โ
โโโ lp-cron (system at/crontab)
โโโ lp-memory (OpenAI embeddings + SQLite)
โโโ lp-browser (Playwright)
โโโ lp-tts (Edge TTS / OpenAI / ElevenLabs)
โโโ ...
```
No servers. No daemons. Just CLI tools that do their job and get out of the way.
## ๐ Free Tier Friendly
- **TTS**: Edge TTS is free (300+ Microsoft voices)
- **Memory**: ~$0.01 to index 100 files
- **Search**: Brave API has a free tier
## ๐ Documentation
- [Full Design Doc](docs/DESIGN.md) โ All the technical details
- [Skills](skills/) โ AI agent instructions
## ๐ฆ Why "lobster-powers"?
Because:
1. OpenClaw โ Claw โ Lobster ๐ฆ
2. Lobsters are mass and have superpowers (immortality, basically)
3. The name was available
## ๐ License
MIT โ Do whatever you want, just don't blame the lobster.
---
*Made with ๐ฆ by humans and Claude*
tools
Comments
Sign in to leave a comment