EveryDev.ai
Subscribe
Home
Tools

3,804+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. shadok-ai
    shadok-ai icon

    shadok-ai

    Multi-agent Systems

    An open-source cockpit for running multiple Claude Code agents in parallel, each in its own git worktree, with scheduling, Telegram integration, and zero-token guard checks.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open source under AGPL-3.0. Runs on your own Claude subscription.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAgent FrameworksAI Coding Assistants

    Alternatives

    RepoMasterMulticaOpen Session
    Developer
    shadok-aiEst. 2026

    Listed Sep 2026

    About shadok-ai

    shadok-ai is an open-source, AGPL-3.0-licensed tool that wraps the Claude Code CLI into a browser-based cockpit, letting you run many Claude Code sessions side by side on your existing Claude subscription — no API key required. It is installed with a single npx shadok-ai command (Node 20+) and opens a web UI that manages agents, schedules, secrets, and multi-user access from one place. The project is notable for being largely built by agents running inside itself, each working in its own git worktree and landing changes as reviewed pull requests.

    What It Is

    shadok-ai is a self-hosted agent orchestration cockpit for Claude Code. It drives the interactive claude CLI through a real terminal (via tmux or node-pty), reads responses from Claude Code's own .jsonl transcript, and exposes a browser UI plus a Telegram bridge for remote control. The core design goal is letting multiple Claude Code agents work in parallel without duplicating effort, wasting quota on silent runs, or requiring you to be at your desk to answer their questions.

    How the Multi-Agent Architecture Works

    Each agent runs in its own git worktree and branch, so parallel agents never collide on the filesystem. Agents can spawn child agents, and a parent is notified the moment a child finishes, blocks on a question, or dies — nothing polls. A shared ledger (opt-in) keeps one table of settled decisions across all agents: a bug closed or a job already run is written once, and every other agent receives the delta before its next message, so the same problem is never fixed twice. The cockpit also exposes a WebSocket protocol (ws://…/ws) so any client — another front-end, a bot, or a script — can attach to the same session and receive the same events.

    Scheduling and the Zero-Token Guard

    Agents can be given recurring prompts on a schedule (every N minutes, or daily at a specific time in a named timezone). Each schedule can carry a deterministic guard command that runs without invoking the model: if the guard prints nothing, the agent is never woken and the run costs zero tokens. This is the design the name references — Les Shadoks, French cartoon birds from 1968 who pumped relentlessly for no result, are the anti-pattern the guard is built to prevent.

    Remote Control and Multi-Pilot Access

    Connecting a Telegram group (with Topics enabled) gives every agent its own topic. Questions arrive as tappable buttons; photos and files sent from the phone land in the agent's working directory. The Telegram session and the browser session are the same process — an answer tapped on a phone appears instantly on the open browser tab. Multiple people can drive the same agent simultaneously from different browsers or from Telegram; with a password set, each pilot gets a named login via an invitation link, and every prompt arrives with the sender's name attached.

    Deployment Model

    shadok-ai runs entirely on your own machine or in a Docker container. The repo ships an official Dockerfile that bundles Claude Code, shadok-ai, a headless Playwright Chromium browser, git, gh, tmux, and a C toolchain. Three Docker volumes persist state across restarts and container recreation: ~/.shadok-ai (vault, profiles, channels, crons, SSH identity), ~/.claude (credentials, transcripts), and /workspace (agents' files). For network exposure, the server binds 127.0.0.1 by default; setting SHADOK_HOST=0.0.0.0 requires a password and enables a multi-user login system with admin and member roles.

    Update: v0.7.0 — Scheduled Agents and the Zero-Token Guard

    The latest release, v0.7.0 (published 2026-08-24), is named "scheduled agents, and a guard that costs nothing." It formalizes the cron scheduling system and the deterministic guard command as first-class features. The project follows two release channels: beta (the default, promoted deliberately by bumping the minor version) and alpha (every merge to main). Version numbers encode the channel: an alpha carries the commit count (e.g., 0.3.78), while a promotion is a round number (e.g., 0.4.0). The cockpit polls npm and can update and reload itself in place.

    shadok-ai - 1

    Community Discussions

    Be the first to start a conversation about shadok-ai

    Share your experience with shadok-ai, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free and open source under AGPL-3.0. Runs on your own Claude subscription.

    • Full cockpit UI for parallel Claude Code agents
    • Git worktree isolation per agent
    • Telegram integration
    • Scheduled prompts with zero-token guard
    • Secret vault

    Capabilities

    Key Features

    • Run multiple Claude Code agents in parallel, each in its own git worktree
    • Browser-based cockpit UI with real-time agent management
    • Telegram integration: answer agent questions from your phone
    • Scheduled recurring prompts with zero-token deterministic guard commands
    • Agent-spawns-agent hierarchy with parent notification on finish/block/death
    • Shared ledger to prevent agents from redoing each other's resolved work
    • Secret vault stored outside the repository, injected as env vars
    • Agent profiles with role prompts, model selection, permission guardrails, and secret scoping
    • Multi-pilot support: multiple users drive the same agent simultaneously
    • Named user accounts with invitation links and admin/member roles
    • Quota gauges for 5-hour and 7-day Claude subscription windows with pace guard
    • Engine room: raw TUI screen with clickable keys and experimental xterm.js terminal
    • Diff panel showing what an agent actually changed against its base branch
    • One-shot CLI mode (shadok-ai-run) for single-prompt automation
    • WebSocket protocol for custom clients and bots
    • Docker support with bundled Claude Code, Playwright Chromium, git, gh, and tmux
    • Self-update: polls npm and reloads in place
    • Tweak Shadok-AI card: one-click agent to modify shadok-ai itself via pull request
    • Guided tour for first-time browser visits
    • SSH identity management for Docker containers
    • Two release channels: beta (stable) and alpha (every merge to main)

    Integrations

    Claude Code CLI
    Anthropic Claude (subscription-based, no API key required)
    Telegram (bot with Topics)
    GitHub (gh CLI, pull request workflow)
    tmux
    Docker
    nginx
    Caddy
    npm
    git
    Playwright Chromium (headless browser in Docker)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate shadok-ai and help others make informed decisions.

    Developer

    shadok-ai Team

    shadok-ai builds an open-source cockpit for running multiple Claude Code agents in parallel on your existing Claude subscription. The project is self-hosted, AGPL-3.0 licensed, and ships as an npm package installable with a single `npx` command. It is largely built by agents running inside itself, each working in isolated git worktrees and landing changes as reviewed pull requests. The organization operates on GitHub under the shadok-ai account.

    Founded 2026
    Read more about shadok-ai Team
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    RepoMaster icon

    RepoMaster

    An open-source AI agent that autonomously discovers, understands, and executes tasks using GitHub repositories, turning 100M+ open-source repos into an intelligent toolbox.

    Multica icon

    Multica

    Open-source managed agents platform that turns coding agents into real teammates — assign tasks, track progress, and compound reusable skills across human + agent teams.

    Open Session icon

    Open Session

    Open-source, self-hosted cloud agent orchestrator that gives teams a multiplayer control room for running, managing, and reviewing coding agents with Git worktrees and PR workflows.

    Browse all tools

    Related Topics

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    343 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    679 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    820 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions