agenticx-quickstart

agenticx-quickstart is a skill for Claude Code, Codex from DemonDamon/AgenticX. It costs 64 tokens per session (825 once invoked), scanned A, original, Apache-2.0.

A getting-started guide for AgenticX, a toolkit for building software agents and workflows. It covers installation, project creation, agent setup, task execution, and basic command-line use.

In plain words
What is it for?
Use it to install AgenticX, create a project, configure API keys, define a Python agent, and run an initial workflow.
Why use it?
It gives newcomers a short path from installing AgenticX to running a first agent. It also explains optional packages for memory, document parsing, servers, and other integrations.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/demondamon/agenticx/agenticx-quickstart
Any agent
npx skills add DemonDamon/AgenticX --skill agenticx-quickstart
Clone the repo
git clone --depth 1 https://github.com/DemonDamon/AgenticX

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for agenticx-quickstart

README.md
[![agentmods](https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-quickstart.svg)](https://agentmods.dev/skills/demondamon/agenticx/agenticx-quickstart)
Your own site
<a href="https://agentmods.dev/skills/demondamon/agenticx/agenticx-quickstart"><img src="https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-quickstart.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 825 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00064 $0.00825
Opus 5 $0.00032 $0.00413
Sonnet 5 $0.00013 $0.00165
Haiku 4.5 $0.00006 $0.00082

Measured 4d ago against content hash 513ce45ee9b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agenticx-quickstart scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

agenticx/skills/agenticx-quickstart/SKILL.md · 122 lines

How it starts

The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AgenticX Quickstart

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

Installation

# 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

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

Create a Project

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

Create Your First Agent (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

# 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

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

Read the full file on GitHub · 122 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 122 lines · 64 tokens per session scan A 513ce45ee9b5

Subscribe to this mod's changes

agenticx-quickstart is a skill published in the GitHub repository DemonDamon/AgenticX (219 stars, last pushed 4d ago), licensed Apache-2.0. It adds 64 tokens to every session and 825 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.