Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Agentica Infrastructure Reference

A lookup skill covering the Agentica multi-agent framework's pattern classes, core infrastructure, and primitives.

Dev & CodingAdvanced3,940300AI score 5/10Last updated: Jan 26, 2026

What it does

  • Tabulates 11 multi-agent pattern classes (Swarm, Pipeline, Hierarchical, Jury, GeneratorCritic, CircuitBreaker, Adversarial, ChainOfResponsibility, MapReduce, Blackboard, EventDriven) with each one's key execution method.
  • Summarizes core infrastructure: CoordinationDB (SQLite agent tracking), tracked_spawn, HandoffAtom, BlackboardCache, MemoryService, and create_claude_scope, plus their source files.
  • Lists composable primitives (Consensus, Aggregator, HandoffState, build_premise, gather_fail_fast) for building custom patterns.
  • Points to API_SPEC.md in the skill directory for the full spec; the skill is read-only by design.

Who it's for

  • Developers building multi-agent workflows inside the Continuous-Claude (Agentica) repository.
  • Anyone who needs exact constructor signatures and return types for the pattern classes.
  • Engineers debugging agent tracking or orphan detection who need the coordination DB schema.

Examples

  1. "Review this code in parallel from security and performance perspectives" → get the exact Swarm(perspectives=[...], db=db).execute(...) call shape.
  2. "Have 3 jurors vote on whether this code is production ready" → reference Jury(num_jurors=3, consensus_mode=ConsensusMode.MAJORITY).
  3. "My spawned sub-agents aren't being tracked" → check the roles of CoordinationDB and tracked_spawn to narrow the cause.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/HEAD/.claude/skills/agentica-infrastructure/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .claude/skills/agentica-infrastructure folder from the GitHub repo parcadei/Continuous-Claude-v3 into my ~/.claude/skills/agentica-infrastructure/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/parcadei/Continuous-Claude-v3.git && mkdir -p ~/.claude/skills && cp -r Continuous-Claude-v3/.claude/skills/agentica-infrastructure ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and move to your preferred working directory.
  2. Clone the repository: git clone https://github.com/parcadei/Continuous-Claude-v3.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r Continuous-Claude-v3/.claude/skills/agentica-infrastructure ~/.claude/skills/
  5. Because the skill references scripts/agentica_patterns/, run Claude Code from inside the cloned repo if you want the code samples to actually execute.
  6. Restart Claude Code and ask something like "build a multi-agent workflow using Agentica patterns" — the skill is auto-referenced rather than user-invoked.