← Back to Plugins
Tools

Lobster Powers

superbereza By superbereza 👁 118 views ▲ 0 votes

๐Ÿฆž OpenClaw superpowers for any AI agent โ€” memory, browser automation, TTS, scheduling, and more. Claude Code plugin + standalone CLI.

GitHub

README

# ๐Ÿฆž lobster-powers โ€”ย OpenClaw tools for any agent

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](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

Loading comments...