polpo-agents
Installation
SKILL.md
Polpo Agent Design
Agent Configuration
An agent is defined by its AgentConfig. Create via API or dashboard.
{
name: "coder", // unique identifier
role: "Senior Full-Stack Engineer", // human-readable role description
model: "xai/grok-4-fast", // provider/model format
allowedTools: ["bash", "read", "write", "edit", "glob", "grep"],
systemPrompt: "You are a senior engineer. Write clean, tested code.",
maxTurns: 150, // max LLM turns per session
maxConcurrency: 3, // max parallel tasks
reasoning: "medium", // thinking depth
}