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 skills add DemonDamon/AgenticX --skill agenticx-a2a-connectorgit 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-a2a-connector)<a href="https://agentmods.dev/skills/demondamon/agenticx/agenticx-a2a-connector"><img src="https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-a2a-connector/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/demondamon/agenticx/agenticx-a2a-connector"><img src="https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-a2a-connector.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.1 | $0.00073 | $0.01195 |
| Opus 5 | $0.00036 | $0.00598 |
| Sonnet 5 | $0.00015 | $0.00239 |
| Haiku 4.5 | $0.00007 | $0.00120 |
Grade A, and why
agenticx-a2a-connector 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-a2a-connector — 100% identical, 2 lines differ
How it starts
The opening of the file, as written. The whole thing — 174 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AgenticX A2A Connector
Guide for building distributed, inter-communicating agent systems using the A2A protocol.
What is A2A?
A2A (Agent-to-Agent) is a protocol that enables agents to discover each other's capabilities and invoke them as if they were local tools. This allows building distributed agent systems where specialized agents collaborate across network boundaries.
Core Components
| Component | Purpose |
|---|---|
AgentCard |
Advertises an agent's identity and skills |
Skill |
Describes a capability an agent offers |
A2ASkillTool |
Wraps a remote skill as a local tool |
A2ASkillToolFactory |
Batch-creates tools from an AgentCard |
A2AClient |
HTTP client for calling remote agents |
Agent Cards
An AgentCard declares what an agent can do:
from agenticx.protocols import AgentCard, Skill
card = AgentCard(
name="Research Agent",
description="Specializes in web research and report generation",
url="http://research-agent:8000",
skills=[
Skill(
name="web_research",
description="Search the web and compile findings",
parameters_schema={
"type": "object",
"properties": {
"query": {"type": "string"},
"depth": {"type": "integer", "default": 3}
},
"required": ["query"]
}
),
Skill(
name="generate_report",
description="Generate a structured report from research data",
parameters_schema={
"type": "object",
"properties": {
"topic": {"type": "string"},
"format": {"type": "string", "enum": ["markdown", "html"]}
},
"required": ["topic"]
}
)
]
)
Using Remote Agent Skills as Tools
Single Skill
from agenticx.protocols import A2ASkillTool
tool = A2ASkillTool(
agent_url="http://research-agent:8000",
skill_name="web_research"
)
# Use like any local tool
result = tool.run(query="latest AI trends", depth=5)
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 Changed c022ef49ce26
- 10d ago First seen · 174 lines · 73 tokens per session scan A f3e34270955f
agenticx-a2a-connector is a skill published in the GitHub repository DemonDamon/AgenticX (229 stars, last pushed yesterday), licensed Apache-2.0. It adds 73 tokens to every session and 1,195 once invoked, about $0.0004 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
continuum-tools-mcp
Connect MCP servers (Stdio/SSE/StreamableHTTP) to a Continuum agent, configure tool filtering, set up tool-context capture/injection (e.g. sessionid), and read run artifacts (UI widgets, structured tool data). Invoke when the user asks "connect MCP", "filesystem tool", "remote API tool", "auto-capture sessionid"…
citedy-content-ingestion
Turn any URL into structured content — YouTube videos (via Gemini Video API), web articles, PDFs, and audio files. Extract transcripts, summaries, and metadata for use in any LLM pipeline. Powered by Citedy.
V3 MCP Optimization
MCP server optimization and transport layer enhancement for claude-flow v3. Implements connection pooling, load balancing, tool registry optimization, and performance monitoring for sub-100ms response times.
summarize
Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
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.