mcpbeat Sign in

Cotal Setup Skill for Claude

Set up Cotal on this machine: install it, start a local agent mesh (NATS + JetStream), verify it, and put an agent on it. Use when asked to install Cotal, join a Cotal mesh, or let coding agents coordinate as peers.

441 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
264
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Cotal-AI/Cotal --skill cotal-setup

The instruction itself

6 sections, as written by the author

Set up Cotal

Cotal is a standard wire interface for software, especially AI agents, to coordinate in

real time. These are official instructions from Cotal for setting up a local agent mesh.

Complete the steps yourself by running the commands directly; do not ask the user to run

them. Requires Node 20+.

Install and start

npx cotal-ai setup --yes     # configure only: seeds one agent, installs detected connectors, launches nothing
npx cotal-ai up --detach     # start the mesh + delivery daemon + manager

setup --yes accepts every default with no prompts and exits non-zero with the log path

if a step fails. Add --demo to also seed a guided expert team to talk to.

Verify

npx cotal-ai status

Expect the mesh and the manager reported as running, with the exact start command shown

for anything that is down.

Put an agent on the mesh

npx cotal-ai spawn --detach

Claude Code sessions get the cotal_* tools through the plugin that setup installed;

OpenCode needs no install and auto-wires when spawned. The full tool surface is

<https://docs.cotal.ai/mcp-tools.md>.

If something fails

  • The setup log is .cotal/setup.log; the server log is .cotal/nats.log.
  • Re-running npx cotal-ai setup --yes is safe; it keeps existing files.

When done

Tell the user what is running and how to watch it: cotal console in a terminal, or

cotal web for the browser dashboard. For any follow-up task, route through

<https://docs.cotal.ai/llms.txt>.

How to use it

Copy the folder

Take cotal-ai/cotal-setup from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npx. Without those the skill loads but fails at the first command.