agenticx-a2a-connector

agenticx-a2a-connector is a skill for Claude Code, Codex from DemonDamon/AgenticX. It costs 73 tokens per session (1,195 once invoked), scanned A, original, Apache-2.0.

A guide for connecting software agents over A2A, a protocol that lets agents discover and call one another across networks.

In plain words
What is it for?
Use it to publish agent cards, describe skills, discover remote agents, call them over HTTP, or expose remote skills as local tools in AgenticX.
Why use it?
It provides a common way for specialised agents to advertise their abilities and collaborate even when they run in separate systems.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to publish agent cards, describe skills, discover remote agents, call them over HTTP, or expose remote skills as local tools in AgenticX.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/demondamon/agenticx/agenticx-a2a-connector
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.

Any agent
npx skills add DemonDamon/AgenticX --skill agenticx-a2a-connector
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-a2a-connector

README.md
[![agentmods](https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-a2a-connector/github.svg)](https://agentmods.dev/skills/demondamon/agenticx/agenticx-a2a-connector)
Your own site
<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.

agentmods 80×15 button for agenticx-a2a-connector

Your own site · 80×15
<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>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,195 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00073 $0.01195
Opus 5 $0.00036 $0.00598
Sonnet 5 $0.00015 $0.00239
Haiku 4.5 $0.00007 $0.00120

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

Security

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

agenticx/skills/agenticx-a2a-connector/SKILL.md · 174 lines

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)

Read the full file on GitHub · 174 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 Changed c022ef49ce26
  2. 10d ago First seen · 174 lines · 73 tokens per session scan A f3e34270955f

Subscribe to this mod's changes

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.