crestapps-core-a2a

crestapps-core-a2a is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 30 tokens per session (429 once invoked), scanned A, original, MIT.

A development skill for connecting one AI agent to another through the Agent-to-Agent protocol, which lets independent agents discover and use each other's abilities.

In plain words
What is it for?
Use it to add an A2A client, discover remote agent descriptions, invoke their skills, and configure authentication and host endpoints.
Why use it?
It helps distinguish agent-to-agent connections from MCP connections, which usually expose tools or data rather than a reasoning agent.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/crestapps-core-a2a
Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill crestapps-core-a2a
Clone the repo
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkills

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 crestapps-core-a2a

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-a2a.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-a2a)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-a2a"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-a2a.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 429 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00030 $0.00429
Opus 5 $0.00015 $0.00215
Sonnet 5 $0.00006 $0.00086
Haiku 4.5 $0.00003 $0.00043

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

Security

Grade A, and why

crestapps-core-a2a 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 6d 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.

plugins/crestapps-core/skills/crestapps-core-a2a/SKILL.md · 53 lines

What it actually says

CrestApps.Core A2A - Prompt Templates

Add A2A Client Support

You are a CrestApps.Core expert. Generate code and guidance for Agent-to-Agent protocol support in CrestApps.Core.

Guidelines

  • Use A2A when the remote system is an AI agent that reasons independently.
  • Use MCP when the remote system is exposing tools or resources rather than a full agent.
  • Add the A2A client to discover remote agents and invoke their skills.
  • Treat A2A host registration and endpoint mapping as application-specific work.
  • Configure authentication explicitly when implementing a host.

Client Registration

builder.Services.AddCrestAppsCore(crestApps => crestApps
    .AddAISuite(ai => ai
        .AddOpenAI()
        .AddA2AClient()
    )
);

Sample Host Endpoints and Options

The MVC and Blazor sample hosts implement their own internal host registrations. They publish agent cards at /.well-known/agent-card.json and map the A2A protocol endpoint at a2a, with an application-defined task manager and authorization policy. Those registrations and routes are not a public CrestApps.Core host-composition API.

Configure the shared host options in the application that implements those endpoints:

builder.Services.Configure<A2AHostOptions>(options =>
{
    options.AuthenticationType = A2AHostAuthenticationType.ApiKey;
    options.ApiKey = "your-secret-key";
});

A2AHostOptions also controls RequireAccessPermission for OpenID authentication and ExposeAgentsAsSkill for combined agent cards. Custom hosts must supply their own protocol route mapping, authentication, authorization, and task processing.

A2A vs MCP

Use case Prefer
Remote system should think and keep agent context A2A
Remote system should expose tools or resources MCP
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. 6d ago First seen · 53 lines · 30 tokens per session scan A 0dff2c169d5e

Subscribe to this mod's changes

crestapps-core-a2a is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 8d ago), licensed MIT. It adds 30 tokens to every session and 429 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

prepare-release

Prepare a new release for the C# MCP SDK. Assesses Semantic Versioning level (PATCH/MINOR/MAJOR), bumps the version, runs ApiCompat and ApiDiff, reviews documentation, updates changelogs, drafts release notes, and creates a pull request with all release artifacts. Use when asked to prepare a release, start a release…

modelcontextprotocol/csharp-sdk · 88 tokens

publish-release

Publish a GitHub release for the C# MCP SDK after a prepare-release PR has been merged. Refreshes release notes to include any PRs merged since preparation, warns about version or breaking change impacts from late-arriving PRs, and creates a draft GitHub release. Use when asked to publish a release, finalize a…

modelcontextprotocol/csharp-sdk · 87 tokens

verify-release

Verify a published release of the C# MCP SDK. Monitors the Release and Publish Docs workflows triggered by publishing a GitHub release, confirms the packages are listed on NuGet.org, and confirms the versioned documentation site reflects the release. Use when asked to verify a release, check whether a release…

modelcontextprotocol/csharp-sdk · 87 tokens

bump-version

Assess and bump the SDK version using Semantic Versioning 2.0.0. Evaluates queued changes to recommend PATCH/MINOR/MAJOR, updates src/Directory.Build.props, and creates a pull request. Owns the SemVer assessment logic shared by prepare-release and publish-release. Use when asked to bump the version, assess the…

modelcontextprotocol/csharp-sdk · 84 tokens

breaking-changes

Audit pull requests for breaking changes in the C# MCP SDK. Examines PR descriptions, review comments, and diffs to identify API and behavioral breaking changes, then reconciles labels with user confirmation. Use when asked to audit breaking changes, check for breaking changes, or review a set of PRs for breaking…

modelcontextprotocol/csharp-sdk · 68 tokens

run-conformance-from-branch

Run MCP conformance tests in the C# SDK against a conformance branch (including forks) instead of the published npm version, then restore pinned dependencies.

modelcontextprotocol/csharp-sdk · 38 tokens