Welcome to the concinnum blog. We'll be sharing insights on building agentic systems, thinking models, and the infrastructure that powers autonomous AI agents.
What to expect
Posts about architecture patterns, implementation guides, and lessons learned from building real-world agentic systems.
- Deep dives into agentic architectures
- Practical guides for autonomous workflows
- Explorations of thinking models and decision frameworks
A quick code example
Here's a simple example of how we structure agent configurations:
interface AgentConfig {
name: string;
model: string;
tools: string[];
systemPrompt: string;
}
const agent: AgentConfig = {
name: "research-agent",
model: "claude-sonnet-4-20250514",
tools: ["web-search", "file-read", "code-execute"],
systemPrompt: "You are a research assistant...",
};Stay tuned for more.