agenticx-agent-builder

Solid

Guide for creating and configuring AgenticX agents with roles, goals, tools, LLM providers, and execution strategies. Use when the user wants to create agents, assign tools to agents, configure LLM backends, set up agent execution, or build multi-agent systems.

AI & Automation 5 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
26
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# AgenticX Agent Builder Guide for creating production-grade agents in AgenticX. ## Core Concepts An Agent in AgenticX consists of: - **Identity**: id, name, role, goal - **LLM Provider**: the language model backend - **Tools**: functions the agent can invoke - **Executor**: the runtime that orchestrates agent reasoning ## Creating an Agent ### Minimal Agent ```python from agenticx import Agent, Task, AgentExecutor from agenticx.llms import OpenAIProvider agent = Agent( id="assistant", name="Assistant", role="General Purpose Assistant", goal="Help users with tasks", organization_id="default" ) ``` ### Agent with Rich Configuration ```python agent = Agent( id="research-analyst", name="Research Analyst", role="Senior Research Analyst", goal="Produce thorough, well-cited research reports", backstory="10 years experience in data-driven research", organization_id="research-team", verbose=True ) ``` ### CLI Creation ```bash agx agent create research-analyst --role "Senior Research Analyst" agx agent list ``` ## LLM Providers AgenticX supports multiple LLM backends through a unified interface: ```python from agenticx.llms import OpenAIProvider, LiteLLMProvider # OpenAI llm = OpenAIProvider(model="gpt-4") # Any model via LiteLLM (Claude, Gemini, local models, etc.) llm = LiteLLMProvider(model="anthropic/claude-sonnet-4-20250514") llm = LiteLLMProvider(model="ollama/llama3") ``` ## Adding Tools ### Function Decorator To...

Details

Author
opencue
Repository
opencue/cuecards
Created
2 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category