SUPERBOT

Orchestrate AI agents across all your projects. Persistent spaces. Knowledge that survives sessions. Agents that never start from scratch.

Uses your existing Claude Code account. No extra AI costs.

superbot
localhost:5173
superbot
Escalations
Instagram creds expired
blocker · high
Auth strategy — JWT or sessions?
decision · med
Spaces
api 6 tasks
social-media 3 tasks
Chat
Manage social media and build the API
orchestrator
Spawning 2 workers. 9 tasks across both.
→ social-media-worker · api-worker dispatched
Message the orchestrator...
feat: add JWT authentication middleware
+21 −0
src/middleware/auth.ts
12import { verify } from 'jsonwebtoken'
13
14export const authMiddleware = (req, res, next) => {
+16 const token = req.headers.authorization?.split(' ')[1]
+17 if (!token) return res.status(401).json({ error: 'No token' })
+18 const decoded = verify(token, process.env.JWT_SECRET!)
+19 req.user = decoded
+20 next()
+21}
Request changes
Approve
f
Search
Tech Community 2h ago

Just deployed our new microservice architecture. The monitoring dashboard is looking clean...

Like Comment Share
Great architecture! Have you considered adding circuit breakers?

AI cursor navigating autonomously

10x what you ship.

Deploy a website

From code to live URL, no manual steps

Fix failing tests

Diagnose, patch, and verify automatically

Set up CI/CD

Pipelines configured and running

Build a REST API

Endpoints, validation, and docs

Migrate to TypeScript

Automated codebase conversion

Add authentication

OAuth, JWT, or sessions — handled

Refactor legacy code

Clean up without breaking anything

Write unit tests

Full coverage, no effort

Set up a database

Schema, migrations, and seed data

Ship a CLI tool

Args to npm publish in one shot

Monitor your servers

Alerts before your users notice

Build a landing page

Design to deploy, hands-free

Deploy a website

From code to live URL, no manual steps

Fix failing tests

Diagnose, patch, and verify automatically

Set up CI/CD

Pipelines configured and running

Build a REST API

Endpoints, validation, and docs

Migrate to TypeScript

Automated codebase conversion

Add authentication

OAuth, JWT, or sessions — handled

Refactor legacy code

Clean up without breaking anything

Write unit tests

Full coverage, no effort

Set up a database

Schema, migrations, and seed data

Ship a CLI tool

Args to npm publish in one shot

Monitor your servers

Alerts before your users notice

Build a landing page

Design to deploy, hands-free

Post on social media

Captions, hashtags, and scheduling

Reply to comments

Engage across every platform

Draft email campaigns

Personalized outreach at scale

Write blog posts

Research, write, and publish

Schedule content

Content calendar on autopilot

Track brand mentions

Know when people talk about you

Create ad copy

Headlines and CTAs that convert

Send cold outreach

Personalized emails that land

Generate weekly reports

Metrics compiled while you sleep

Manage your inbox

Triage, respond, and archive

Write press releases

Newsworthy drafts, ready to send

Find trending topics

Stay ahead of the conversation

Post on social media

Captions, hashtags, and scheduling

Reply to comments

Engage across every platform

Draft email campaigns

Personalized outreach at scale

Write blog posts

Research, write, and publish

Schedule content

Content calendar on autopilot

Track brand mentions

Know when people talk about you

Create ad copy

Headlines and CTAs that convert

Send cold outreach

Personalized emails that land

Generate weekly reports

Metrics compiled while you sleep

Manage your inbox

Triage, respond, and archive

Write press releases

Newsworthy drafts, ready to send

Find trending topics

Stay ahead of the conversation

Research competitors

Market intel delivered daily

Summarize documents

Key points extracted instantly

Translate content

Multi-language support, automated

Generate invoices

Billing without lifting a finger

Onboard new hires

Docs, access, and checklists

Sync data between apps

Keep everything in lockstep

Parse and extract PDFs

Structured data from any file

Monitor price changes

Alerts when competitors move

Create training materials

SOPs and guides, auto-generated

Draft contracts

Templates filled, ready for review

Track expenses

Categorized and reported automatically

Run nightly backups

Set once, never think about it

Research competitors

Market intel delivered daily

Summarize documents

Key points extracted instantly

Translate content

Multi-language support, automated

Generate invoices

Billing without lifting a finger

Onboard new hires

Docs, access, and checklists

Sync data between apps

Keep everything in lockstep

Parse and extract PDFs

Structured data from any file

Monitor price changes

Alerts when competitors move

Create training materials

SOPs and guides, auto-generated

Draft contracts

Templates filled, ready for review

Track expenses

Categorized and reported automatically

Run nightly backups

Set once, never think about it

How it works

Orchestrates Agents

The orchestrator triages work across all your projects, spawns workers into isolated spaces, and coordinates results. You set the direction — agents handle the rest.

Persistent Spaces

Every project gets its own space with plans, tasks, and knowledge. Agents write what they learn as they go. The next session picks up where the last one left off.

Built on Claude Code

No new AI subscription. Superbot runs on your existing Claude Code account. Every component — orchestrator, workers, skills — is a Claude Code primitive.

The Dashboard

Your control center. Review agent decisions, chat with the orchestrator, and watch workers ship across all your spaces.

superbot dashboard
Escalations

Instagram credentials expired — need re-login

social blocker high

Auth strategy for the new API — JWT or sessions?

api decision medium
Spaces
api
6 tasks
social-media
3 tasks
research
2 tasks
Chat

Manage social media and build the new API.

orchestrator

On it. Spawning social-media-worker and api-worker...

→ social-media-worker dispatched
→ api-worker dispatched
worker

Published 3 posts. Engaged 2 group discussions. Created escalation for expired Instagram credentials.

orchestrator

social-media done. api-worker building — 4/6 tasks complete.

Message the orchestrator...

Put it to work.

One command. That's it.

$ curl -fsSL https://raw.githubusercontent.com/gkkirsch/superbot2/main/install.sh | bash

Requires: Node.js, git, jq, and Claude Code

View on GitHub