AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Inter Agent Communication A2a

skill-mmccalla-coding-agent-skill-library-inter-agent-communication-a2a · by mmccalla

Use when designing agent-to-agent communication, delegation protocols, agent cards, asynchronous task exchange, or interoperable multi-agent systems.

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-mmccalla-coding-agent-skill-library-inter-agent-communication-a2a

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mmccalla-coding-agent-skill-library-inter-agent-communication-a2a)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Inter Agent Communication A2a? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Inter-Agent Communication (A2A)

When to use

Use this skill when multiple agents must collaborate across process, service, framework, repository or organisation boundaries. Apply it for delegation, capability discovery, task status tracking, streaming results and standardised hand-offs.

Objective

Define safe, interoperable contracts for agent identity, delegation, task exchange, and result hand-off.

Procedure

  1. Define each agent as an opaque service with a clear public contract.
  2. Publish an agent card describing identity, endpoint, version, capabilities, skills, input/output modes and authentication.
  3. Represent work as tasks with unique identifiers and explicit states.
  4. Exchange messages containing metadata and content parts.
  5. Return artefacts as structured outputs, files or streamed parts.
  6. Preserve context using a context identifier where multi-step collaboration is required.

Task lifecycle

Use a minimal lifecycle unless the domain needs more detail:

submitted -> working -> input_required -> completed | failed | cancelled

Every state transition should include timestamp, actor, reason and optional artefact references.

Implementation guidance

For coding agents, keep payloads structured:

{
  "task_id": "task-123",
  "context_id": "ctx-456",
  "skill": "run_tests",
  "input": {"path": "tests/"},
  "constraints": ["no network", "read-only except reports/"],
  "expected_output": "test_report"
}

Guardrails

  • Do not expose internal prompts, secrets or private state through agent cards.
  • Authenticate server endpoints and restrict discovery where capabilities are sensitive.
  • Treat remote agents as untrusted until validated.
  • Use timeouts and cancellation for long-running tasks.

OWASP ASI mapping

Use skills_docs/security/OWASP_ASI_CROSSWALK.md for the shared risk map.

| ASI risk | A2A control | | --- | --- | | ASI04 Agentic Supply Chain Vulnerabilities | Verify agent cards, versions, endpoints and allowed capabilities before delegation. | | ASI07 Insecure Inter-Agent Communication | Authenticate peers, version message schemas and treat peer output as untrusted. | | ASI08 Cascading Failures | Use fan-out limits, cancellation, bounded retries and explicit failure states. | | ASI10 Rogue Agents | Add containment, revocation and audit trails for agents that deviate from declared scope. |

References

Verification

  • [ ] Agent card exists.
  • [ ] Task states are explicit.
  • [ ] Message schema is versioned.
  • [ ] Authentication and authorisation are defined.
  • [ ] Failure and cancellation paths are implemented.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.