Related AI tool mentioned in article: Cline
Related AI tool mentioned in article: Multica
Related AI tool mentioned in article: OpenCode

I Gave My Coding Agents a Task Board: Setting Up Multica

Bojan Tomic
10 min read
AI Agents
I Gave My Coding Agents a Task Board: Setting Up Multica

Running one coding agent is fine. You open a terminal, describe the job, watch it work.

Running three is where it falls apart. Each one lives in its own terminal, none of them knows what the others did, and the only record of what happened is scrollback you will close by accident. There is no answer to "what is in flight right now" other than checking four windows.

Multica is a task board for that problem. Agents get assigned issues the same way people do, they move their own cards across the board, and their work is attached to the issue instead of living in a terminal you closed.

This is what setting it up on a real project looked like: this site, its actual backlog, three agents, and what the first few hours actually consumed.

The Multica board: agents and humans assigned to the same issues

Setup: 20 minutes, no errors

I used the desktop app on macOS rather than self-hosting, which is the fastest route in.

The only step that needs a decision is authentication. Log in to GitHub from your terminal over HTTPS before you start, because that is the credential the agents use when they open pull requests. Get that wrong and everything works right up until the moment an agent tries to push, which is the worst place to discover it.

That was the whole setup. Download, sign in, connect the repository, done in about twenty minutes with nothing going wrong.

One thing that catches people out: Multica does not ship an agent. It drives the CLIs you already have. A daemon scans the machine for tools it recognises and registers a runtime for each. It supports 23 out of the box, including Claude Code, Codex, Cursor, Copilot, OpenCode, OpenClaw, Gemini CLI and Kimi. Mine runs on Claude Code on the MacBook. If you have no agent CLI installed, install one first.

Creating agents by asking for them

I expected a form. There is one, but it is not how you are meant to work.

Multica ships with an agent called Mika, described as a workspace chief of staff, and you create everything else by talking to it. You describe the job you want done in plain language and Mika creates the issue, the agent, or the schedule. The dialog literally prompts you with an example: "let Bojan fix the inbox loading slowness in the Web project".

Both of my other agents came out of that chat:

Agent Job Access
Mika Chief of staff. Turns goals into issues, coordinates the others, builds reusable workflows Workspace
Vera Reviews agent-authored pull requests with fresh context Owner only
Scout Finds AI tools worth adding to the directory and verifies them Workspace

The narrowness matters. An agent told to "help with the site" produces vague work. An agent told "review agent-authored PRs, and you did not write this code" produces something usable.

So does the access column. Vera is owner only, because a reviewer anyone can retask is not a reviewer.

Instructions are plain text in the agent's Instructions tab. Edit them and behaviour changes on the next run, no redeploy. You are tuning a job description, not a config file.

Writing issues agents can actually finish

The board is an ordinary kanban: Backlog, Todo, In Progress, In Review, Done. Agents move their own cards. When Vera finished a review she moved the issue to In Review herself and left the write-up as a comment.

What made this work was writing issues with an Outcome line instead of a task line. "Define the verify gate agents must pass before hand-back" is a task. "A named, runnable verify gate" is an outcome. Agents handle the second far better, because there is something concrete to check themselves against.

Some real ones off my board:

  • Connect the codebase to the project
  • Define the verify gate agents must pass before hand-back
  • Automated code review pass on agent PRs
  • Backlog sweep: turn existing TODOs and known issues into issues
  • Repeatable CLI triage for pending tool submissions

The part that matters: making them stop

This is the piece I would keep if I threw the rest away.

Scout runs on a schedule through Autopilot: a cron trigger at 17:00 daily, which creates an issue in a dedicated project and assigns it to Scout. The instructions are explicit about where it must stop, and that is most of the prompt:

Run one Phase 1 scouting cycle. Phase 1 only, report and stop.

Check out the repository and re-read CLAUDE.md before anything else, in particular the CRITICAL SAFETY RULES. Do not work from memory of these files.

Then STOP. Do not write SQL, do not open a PR, do not touch the database. Set the issue status to in_review and wait.

The autopilot prompt, with the stop instruction spelled out

Everything before "STOP" is read-only: sweep for candidates, deduplicate against what is already listed and anything already staged, verify each survivor by loading its own website and pricing page in a headless browser, and post the findings as a comment. Nothing is written anywhere.

I read that comment and reply naming which ones to add. That reply is what unblocks Phase 2, where it writes the migration, runs the validation scripts and opens a pull request. Applying the migration to the live database stays my job, explicitly: "Applying it to the live database is his action, never yours."

Three stops, each waiting on a human. Silence keeps it stopped indefinitely, because there is no timeout that quietly approves for you.

That design came from a specific worry. One script in this repo writes to the production database unless you pass --dry-run, and a directory with 400+ tools is not something I want an unattended agent editing.

Two smaller instructions in there earn their place too. "Never treat aggregator or roundup pricing as evidence", because that is exactly how a wrong price ends up copied across the whole internet. And "Do not pad the batch to reach a number, that is a worse outcome than a short report", because otherwise you get five results whether or not five exist.

If you take one thing from this post: decide what an agent may do without asking, and make everything else stop and wait.

One email every two weeks: the new AI tools worth trying, reviewed properly, with prices read off the vendor's own page.

Plus 14 Claude Code skills free when you join: two packs, built from the work of running this directory.

What it actually consumed

Multica has an Analytics tab. This is the first few hours of use, not a month, though the dashboard window says 30 days because that is all the history there is:

First few hours
Estimated cost $23.43
Tasks 20, none failed
Run time 1h 15m

Multica analytics: cost, tasks and run time per agent

Read that number carefully, because it is not a bill. My runtime is Claude Code on a $100 a month plan I already pay for, so nothing here appeared as an extra charge. The $23.43 is Multica's estimate of what that usage would have cost at API rates, which makes it a useful measure of how much work you got through, not money that left my account.

Split by agent, Mika did 19 tasks for an estimated $21.31 and just over an hour of run time. Vera did a single code review for $2.12 and nine and a half minutes.

The comparison worth drawing is against your plan rather than against a bill. Twenty tasks in an afternoon consumed roughly a quarter of a month's allowance at API-equivalent rates. If you already pay for a coding agent subscription, that is the frame. Agents on a board burn your existing allowance faster than you typing at one of them does, and the analytics tab is where you find that out before your limits do.

Is the output any good

Here is Vera reviewing a pull request another agent wrote:

The blocking finding is the only one I'd defend without qualification, and I only have it because I ran the gate instead of reading it. No amount of staring at "eslintWarnings": 27 tells you the true count is 25; you have to execute it.

Vera's self-assessment on the review issue

Then, unprompted:

The two I'm least sure about are the two I'd have produced from the diff alone. #1 (unenforced prohibitions) is an argument, not an observation... Both are the kind of finding a reviewer generates to look thorough, which is precisely why I'm flagging them as the suspect ones.

An agent separating what it verified from what it inferred, and telling me which half to distrust, is more useful than a longer list of findings.

I am not going to pretend every run looks like that. A backlog sweep the same afternoon cancelled a dozen issues, which was correct but not exactly craftsmanship. The point is that good output is legible and bad output is visible, because all of it lands on the issue rather than in a terminal.

The CLI

Everything on the board has a command-line equivalent, which matters if you want to script around it:

multica agent get <agent-id> --output json
multica autopilot get <autopilot-id> --output json
multica autopilot runs <autopilot-id> --output json

autopilot runs is the one I reach for: it is the run history for a scheduled agent, so it answers "did it fire last night and what did it do" without opening the app.

Licence and pricing, before you build on it

Self-hosting is free with no caps on agent count. Concurrency is limited by your hardware, and you can join multiple machines as runtimes.

Two things the marketing does not lead with.

The licence is not plain open source. It is Apache 2.0 with additional conditions: you may not offer Multica as a hosted service to third parties without a commercial licence, and that applies even if you charge nothing. You may not remove the branding without a written waiver. Internal use inside one organisation is explicitly fine, which covers most people reading this.

There is no published cloud pricing. The hosted version offers a free trial, and multica.ai/pricing returns a 404.

Would I keep it

Yes, with a caveat: the value is not the agents, it is the board and the gates.

The agents already existed. What changed is that I can see what they are doing, the work survives the session, and nothing irreversible happens without me saying so. That last part is what makes it usable on a live site rather than a toy repo.

Honest status: the scheduled scouting run is configured and has not fired yet, so I can tell you the design is right but not yet that it survives contact with a month of daily runs. I will report back when it has.

If you run one agent occasionally, this is a coordination layer for a problem you do not have yet. If you have three terminals open and no idea what is finished, it is the missing piece.

Free Tools

View All
ChatGPT AI tool logo

ChatGPT

Conversational AI that understands and responds

ChatGPT is OpenAI's conversational assistant for writing, analysis, coding and research, with image and web tools. Free tier, Plus at $20 a month.

Free
Color Palette Pro AI tool logo

Color Palette Pro

Design Tool

Color Palette Pro generates and refines colour palettes for design work, exporting in the formats design and CSS tools expect. Free to use.

Free
Metaphor AI tool logo

Metaphor

AI Search Engine for Research

Metaphor is an AI-powered search engine designed specifically for research and creative exploration. Free tier available.

Free
Fast.ai AI tool logo

Fast.ai

Making deep learning accessible to everyone

Fast.ai is a free deep learning library and course series that gets working models running in a few lines of PyTorch. Free and open source.

Free
SuperSplat Editor AI tool logo

SuperSplat Editor

3D Editing Tool

SuperSplat Editor is an open source, browser based editor for viewing, cleaning and optimising 3D Gaussian splat scenes. Engine agnostic and free.

Free
Google Antigravity AI tool logo

Google Antigravity

Development Platform

AI-powered testing that saves hours. Automated test generation & execution.

Free
Phind AI tool logo

Phind

AI search engine for developers (SHUT DOWN January 16, 2026)

Phind was an AI-powered search engine specifically designed for developers. The service shut down on January 16, 2026. See alternatives like Perplexity, ChatGPT with search, and Claude with web search.

Free
LinkedIn Translator AI tool logo

LinkedIn Translator

Plain English to LinkedIn speak, and back again

Free two-way LinkedIn writing tool: turns rough notes into credible posts, and decodes corporate jargon back into plain English. No signup, no paid tier.

Free
Figma AI AI tool logo

Figma AI

Your creativity, unblocked with AI-powered design

Figma AI adds generation, search and bulk rename tools directly inside the design canvas. Included with Figma Professional and Organization plans.

Free
OpenRouter AI tool logo

OpenRouter

Unified API for accessing 500+ LLM models from 60+ providers

Unified API for Claude, GPT-4, and 100+ LLMs with fallback provider support. Load balancing, automatic retries, and cost optimization for reliable AI.

Free
Quora Search AI AI tool logo

Quora Search AI

AI-powered search on Quora platform

Quora Search AI answers questions from the Quora answer corpus alongside generated summaries, linking back to the original threads. Free to use.

Free
LandscapioAI AI tool logo

LandscapioAI

See your future yard in 60 seconds

AI landscape design generator that turns one photo of your yard into a redesign in under 90 seconds, with cost estimates and contractor-ready plans on Pro.

Free

Vibe Coding Tools

View All
ShipFast AI tool logo

ShipFast

Launch your SaaS in days, not months

Next.js SaaS boilerplate with AI integration and auth. Authentication, Stripe payments, database included. Launch production SaaS startups 10x faster.

Paid
Codeium AI tool logo

Codeium

Free AI code completion, now part of Devin Desktop

Codeium was a free AI code completion tool. It became Windsurf, and Cognition has since folded it into Devin, where codeium.com now redirects.

Freemium
GitHub Copilot AI tool logo

GitHub Copilot

Your AI pair programmer that writes code with you

GitHub Copilot is an AI-powered code completion tool that suggests entire lines, functions, and code blocks in real-time as developers write software.

Freemium
AnyDoc AI tool logo

AnyDoc

Convert 14 document formats to clean Markdown in milliseconds

An MIT-licensed Rust library that turns Word, PowerPoint, Excel, PDF and ten more formats into consistent Markdown locally, with no model and no API call.

Free
Fast.ai AI tool logo

Fast.ai

Making deep learning accessible to everyone

Fast.ai is a free deep learning library and course series that gets working models running in a few lines of PyTorch. Free and open source.

Free
Modal AI tool logo

Modal

Serverless compute platform for AI inference, fine-tuning, and batch jobs with sub-second cold starts

Modal is a cloud infrastructure platform purpose-built for AI and machine learning workloads. Free tier, then $30.

Freemium
Archify AI tool logo

Archify

Technical diagrams from plain English, validated before they render

An MIT-licensed agent skill that turns a codebase or a plain-English description into a self-contained interactive HTML diagram, validated before it renders.

Free
Browserbase AI tool logo

Browserbase

Browser infrastructure that lets AI agents use the web

Managed headless browsers plus search and fetch APIs, so your agents can operate the many sites that were never going to ship an API for what you need.

Freemium
Niteshift AI tool logo

Niteshift

The full-stack cloud for coding agents

Gives coding agents a fully provisioned cloud environment with databases, a dev server and a live browser, so they can verify their own work before review.

Freemium
Google Antigravity AI tool logo

Google Antigravity

Development Platform

AI-powered testing that saves hours. Automated test generation & execution.

Free
FastMCP AI tool logo

FastMCP

Python framework for building MCP servers, clients and apps

Apache 2.0 Python framework for the Model Context Protocol. Decorate a function and it handles schema, validation, transport, auth and protocol compatibility.

Free
Vercel AI SDK AI tool logo

Vercel AI SDK

Open-source TypeScript framework for building AI applications with streaming, tools, and RAG

Vercel AI SDK is an open-source framework that simplifies building AI-powered applications with a unified API for managing multiple AI providers.

Free