Agentica Infrastructure Reference
A lookup skill covering the Agentica multi-agent framework's pattern classes, core infrastructure, and primitives.
Dev & CodingAdvanced★ 3,940⑂ 300AI 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, andcreate_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.mdin 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
- "Review this code in parallel from security and performance perspectives" → get the exact
Swarm(perspectives=[...], db=db).execute(...)call shape. - "Have 3 jurors vote on whether this code is production ready" → reference
Jury(num_jurors=3, consensus_mode=ConsensusMode.MAJORITY). - "My spawned sub-agents aren't being tracked" → check the roles of
CoordinationDBandtracked_spawnto 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal and move to your preferred working directory.
- Clone the repository:
git clone https://github.com/parcadei/Continuous-Claude-v3.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r Continuous-Claude-v3/.claude/skills/agentica-infrastructure ~/.claude/skills/ - Because the skill references
scripts/agentica_patterns/, run Claude Code from inside the cloned repo if you want the code samples to actually execute. - Restart Claude Code and ask something like "build a multi-agent workflow using Agentica patterns" — the skill is auto-referenced rather than user-invoked.
View source on GitHub ↗License: MIT