agentica-sdk
Build Python agents with Agentica SDK - @agentic decorator, spawn(), persistence, MCP integration
npx skills add parcadei/Continuous-Claude-v3 --skill agentica-sdk --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Agentica SDK Reference (v0.3.1) Build AI agents in Python using the Agentica framework. Agents can implement functions, maintain state, use tools, and coordinate with each other. ## When to Use Use this skill when: - Building new Python agents - Adding agentic capabilities to existing code - Integrating MCP tools with agents - Implementing multi-agent orchestration - Debugging agent behavior ## Quick Start ### Agentic Function (simplest) ```python from agentica import agentic @agentic() async def add(a: int, b: int) -> int: """Returns the sum of a and b""" ... result = await add(1, 2) # Agent computes: 3 ``` ### Spawned Agent (more control) ```python from agentica import spawn agent = await spawn(premise="You are a truth-teller.") result: bool = await agent.call(bool, "The Earth is flat") # Returns: False ``` ## Core Patterns ### Return Types ```python # String (default) result = await agent.call("What is 2+2?") # Typed output result: int = await agent.call(int, "What is 2+2?") result: dict[str, int] = await agent.call(dict[str, int], "Count items") # Side-effects only await agent.call(None, "Send message to John") ``` ### Premise vs System Prompt ```python # Premise: adds to def
- When to Use
- Quick Start
- Agentic Function (simplest)
- Spawned Agent (more control)
- Core Patterns
- Return Types
- Premise vs System Prompt
- Passing Tools (Scope)
- SDK Integration Pattern
- Agent Instantiation
- spawn() - Async (most cases)
- Agent() - Sync (for init)
- Model Selection
- Persistence (Stateful Agents)
What does the agentica-sdk skill do?
Build Python agents with Agentica SDK - @agentic decorator, spawn(), persistence, MCP integration
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill agentica-sdk --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
