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 agents/asit-piri/agentic-knowledge-to-action/a2agit clone --depth 1 https://github.com/asit-piri/Agentic-Knowledge-To-ActionWrote 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/agents/asit-piri/agentic-knowledge-to-action/a2a)<a href="https://agentmods.dev/agents/asit-piri/agentic-knowledge-to-action/a2a"><img src="https://agentmods.dev/badge/agents/asit-piri/agentic-knowledge-to-action/a2a.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.00000 | $0.02631 |
| Opus 5 | $0.00000 | $0.01316 |
| Sonnet 5 | $0.00000 | $0.00526 |
| Haiku 4.5 | $0.00000 | $0.00263 |
Grade A, and why
a2a scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST "http://localhost:4444/a2a" \ Copies of this mod
1 near-identical copy found in the catalogue:
- a2a — 97% identical, 8 lines differ
How it starts
The opening of the file, as written. The whole thing — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.
A2A (Agent-to-Agent) Integration
ContextForge supports A2A (Agent-to-Agent) integration, allowing you to register external AI agents and expose them as MCP tools for seamless integration with other agents and MCP clients.
Overview
A2A integration enables you to:
- Register external AI agents (OpenAI, Anthropic, custom agents)
- Expose agents as MCP tools for universal discovery and access
- Support multiple protocols (JSONRPC, custom formats)
- Manage agent lifecycle through admin UI and APIs
- Monitor performance with comprehensive metrics
- Configure authentication with various auth methods
Quick Start
!!! tip "Base URL"
- Direct installs (uvx, pip, or docker run): http://localhost:4444
- Docker Compose (nginx proxy): http://localhost:8080
1. Enable A2A Features
# In your .env file or environment variables
MCPGATEWAY_A2A_ENABLED=true
MCPGATEWAY_A2A_METRICS_ENABLED=true
2. Register an A2A Agent
Via Admin UI:
- Go to
http://localhost:4444/admin - Click the "A2A Agents" tab
- Fill out the "Add New A2A Agent" form
- Click "Add A2A Agent"
Via REST API:
curl -X POST "http://localhost:4444/a2a" \
-H "Authorization: Bearer $MCPGATEWAY_BEARER_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "hello_world_agent",
"endpoint_url": "http://localhost:9999/",
"agent_type": "jsonrpc",
"description": "External AI agent for hello world functionality",
"auth_type": "api_key",
"auth_value": "your-api-key",
"tags": ["ai", "hello-world"]
}'
3. Test the Agent
Via Admin UI:
- Click the blue "Test" button next to your agent
- See real-time test results
Via API:
curl -X POST "http://localhost:4444/a2a/hello_world_agent/invoke" \
-H "Authorization: Bearer $MCPGATEWAY_BEARER_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"parameters": {
"method": "message/send",
"params": {
"message": {
"messageId": "test-123",
"role": "user",
"parts": [{"type": "text", "text": "Hello!"}]
}
}
},
"interaction_type": "test"
}'
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 · 337 lines · 0 tokens per session scan A 9a2ca7a0226c
a2a is an agent published in the GitHub repository asit-piri/Agentic-Knowledge-To-Action (0 stars, last pushed 6mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,631 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
agentic-workflows
GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing.