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.
npx agentmods add skills/demondamon/agenticx/agenticx-quickstartnpx skills add DemonDamon/AgenticX --skill agenticx-quickstartgit clone --depth 1 https://github.com/DemonDamon/AgenticXWrote 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.
[](https://agentmods.dev/skills/demondamon/agenticx/agenticx-quickstart)<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>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.
| Model | Per session | Once 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 |
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- agenticx-quickstart — 100% identical, 2 lines differ
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
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.
- 4d ago First seen · 122 lines · 64 tokens per session scan A 513ce45ee9b5
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.
Other skills, from other repositories
skill-creator
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
tmux
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
weather
Get current weather and forecasts (no API key required).
github
Interact with GitHub using the gh CLI. Use gh issue, gh pr, gh run, and gh api for issues, PRs, CI runs, and advanced queries.
memory
Search conversation history and understand Dream-managed profile and memory files.
browser-use
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, or extract information from web pages.