Overview
This repo is the AI Tools Stack collaboration doc for the team: interactive and runnable, not a static wiki.
How to use this repo
-
Read — Browse the docs (run
npm run dev, open http://localhost:3000). Use the nav for Overview, Quick products, Telegram hub, and tool pages. -
Run — Each tool has at least one playground under
playgrounds/. Install deps in the playground folder and follow its README for a 5–15 min hands-on example. -
Ask the super agent — In Cursor, ask for help about a specific tool (e.g. "help me with OpenClaw and Telegram"). The super agent uses the right skill and points you to the doc and playground.
What's in the repo
The repo is organized into three areas:
| Area | Location | Description |
|---|---|---|
| Docs site | docs/, app/ | Next.js + MDX: overview, tool pages, Telegram hub, quick-product index |
| Playgrounds | playgrounds/ | Runnable apps (OpenClaw + Telegram, Telegram + Claude bot, Claude API quickstart) |
| Super agent | .cursor/rules/, .cursor/skills/ | One rule (super agent) and one skill per tool for focused help in Cursor |
Quick start (one-command run)
From repo root:
-
Docs —
npm install && npm run dev→ open http://localhost:3000 -
Telegram + Claude bot —
cd playgrounds/telegram-ai-bot && pip install -r requirements.txt && python bot.py(setTELEGRAM_BOT_TOKENandANTHROPIC_API_KEYfirst; see playground README) -
OpenClaw + Telegram — See
playgrounds/openclaw-telegram/README.mdfor setup
More one-command hints are in the main README and in each playground's README.