Agent skill

agenticx-quickstart

AgenticX zero-to-hero quickstart guide. Use when the user wants to get started with AgenticX, create their first project, build their first agent, or run their first workflow. Covers installation, project scaffolding, agent creation, task execution, and CLI basics.

Stars 106
Forks 12

Install this agent skill to your Project

npx add-skill https://github.com/DemonDamon/AgenticX/tree/main/agenticx/skills/agenticx-quickstart

Metadata

Additional technical details for this skill

author
AgenticX
version
0.3.6

SKILL.md

AgenticX Quickstart

Guide for getting a user from zero to a running AgenticX agent in under 5 minutes.

Installation

bash
# Core install (lightweight, ~27 deps, installs in seconds)
pip install agenticx

# Verify
agx --version

Optional extras — install only what you need:

Extra What it adds Command
memory Mem0, ChromaDB, Qdrant pip install "agenticx[memory]"
document PDF/PPT/Word parsing pip install "agenticx[document]"
server API server (agx serve) pip install "agenticx[server]"
volcengine Volcengine AgentKit pip install "agenticx[volcengine]"
all Everything pip install "agenticx[all]"

Environment

bash
export OPENAI_API_KEY="sk-..."
# Optional
export ANTHROPIC_API_KEY="sk-ant-..."

Create a Project

bash
agx project create my-first-agent --template basic
cd my-first-agent
agx project info

Create Your First Agent (Python)

python
from agenticx import Agent, Task, AgentExecutor
from agenticx.llms import OpenAIProvider

agent = Agent(
    id="data-analyst",
    name="Data Analyst",
    role="Data Analysis Expert",
    goal="Help users analyze and understand data",
    organization_id="my-org"
)

task = Task(
    id="analysis-task",
    description="Analyze sales data trends",
    expected_output="Detailed analysis report"
)

llm = OpenAIProvider(model="gpt-4")
executor = AgentExecutor(agent=agent, llm=llm)
result = executor.run(task)
print(result)

Create via CLI

bash
# Scaffold an agent
agx agent create researcher --role "Senior Research Analyst"
agx agent list

# Scaffold a workflow
agx workflow create research-pipeline --agents "researcher"

# Run it
agx run workflows/research-pipeline.py --verbose

Add Tools

python
from agenticx.tools import tool

@tool
def calculate_sum(x: int, y: int) -> int:
    """Calculate the sum of two numbers."""
    return x + y

# Pass tools when creating agent or executor

Essential CLI Commands

Command Purpose
agx Welcome page with common commands
agx --help Full help
agx project create NAME Scaffold a project
agx agent create NAME Create an agent
agx workflow create NAME Create a workflow
agx run FILE Execute a workflow file
agx serve Start API server
agx skills list List installed skills
agx hooks list List available hooks

Next Steps

  • Build complex agents → use the agenticx-agent-builder skill
  • Design workflows → use the agenticx-workflow-designer skill
  • Create custom tools → use the agenticx-tool-creator skill
  • Deploy to production → use the agenticx-deployer skill

Expand your agent's capabilities with these related and highly-rated skills.

DemonDamon/AgenticX

agenticx-skill-manager

Guide for managing AgenticX skills including listing, searching, installing, uninstalling, publishing, and running a skill registry server. Use when the user wants to manage skills, find available skills, publish custom skills, set up a skill registry, or understand the skill ecosystem.

106 12
Explore
DemonDamon/AgenticX

agenticx-deployer

Guide for deploying AgenticX agents to production including Docker containerization, Kubernetes orchestration, Volcengine AgentKit cloud deployment, and API server setup. Use when the user wants to deploy agents, containerize applications, set up Kubernetes, configure cloud deployment, or run the AgenticX API server in production.

106 12
Explore
DemonDamon/AgenticX

agenticx-a2a-connector

Guide for using the A2A (Agent-to-Agent) communication protocol in AgenticX including agent discovery, skill invocation, remote agent cards, and distributed agent systems. Use when the user wants agents to communicate with each other, set up distributed agent systems, invoke remote agent skills, or build agent-to-agent workflows.

106 12
Explore
DemonDamon/AgenticX

agenticx-workflow-designer

Guide for designing and running AgenticX workflows including sequential pipelines, parallel execution, graph-based orchestration, conditional routing, and trigger services. Use when the user wants to create workflows, orchestrate multiple agents, design agent pipelines, or set up complex multi-step processes.

106 12
Explore
DemonDamon/AgenticX

agenticx-memory-architect

Guide for setting up and using the AgenticX memory system including Mem0 integration, long-term memory, context management, and memory-enhanced agents. Use when the user wants to add memory to agents, persist conversation history, build memory-aware workflows, or integrate with Mem0 for long-term recall.

106 12
Explore
DemonDamon/AgenticX

agenticx-automation-crontask

Build and maintain Machi Desktop scheduled (cron) tasks — default workspace ~/.agenticx/crontask, schedule_task tool, execution contract, and user-facing output. Use when the user wants recurring automation, crontab-style jobs, or to author/fix automation task prompts.

106 12
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results