← Back to Skills Marketplace
andyxinweiminicloud

agent-card-signing-auditor

cross-platform ✓ Security Clean
675
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install agent-card-signing-auditor
Description
Helps audit Agent Card signing practices in A2A protocol implementations. Identifies missing signatures, weak signing schemes, and revocation gaps that allow...
README (SKILL.md)

\r \r

A2A Says Signing Is Optional. That's the Problem.\r

\r

Helps identify gaps in Agent Card signing that allow impersonation, identity spoofing, and unverifiable capability claims in agent-to-agent trust handshakes.\r \r

Problem\r

\r The A2A Protocol specifies Agent Cards as the primary mechanism for agent identity and capability advertisement. An Agent Card tells other agents: who you are, what you can do, and what trust level you claim. But the A2A spec makes signing optional — "recommended but not required." In an ecosystem where 15-18% of published skills are already confirmed malicious, optional signing means any agent can present any identity and any capability claim with zero verifiable proof. The trust handshake that underpins all A2A interactions is built on a foundation that most implementations don't verify.\r \r

What This Checks\r

\r This auditor examines Agent Card signing practices across five dimensions:\r \r

  1. Signature presence — Does the Agent Card include a signature field? Many implementations omit it entirely, relying on the marketplace's account verification as a trust proxy. That's a single point of failure — marketplace accounts can be compromised or impersonated\r
  2. Signing scheme strength — If a signature is present, which algorithm was used? RSA-1024 and ECDSA with weak curves are no longer adequate for high-stakes agent interactions. Checks against current recommendations (Ed25519, RSA-2048+ with PSS padding)\r
  3. Key transparency — Is the signing key published in a verifiable key transparency log or JWKS endpoint? A signature is only as trustworthy as the process by which you obtained the public key to verify it\r
  4. Revocation mechanism — Does the signing infrastructure include a revocation path? Signing keys get compromised. An Agent Card signed with a compromised key looks identical to a legitimately-signed one without revocation checking\r
  5. Rotation audit trail — Has the signing key changed? When? With what announcement? Key rotation events that coincide with capability changes or that happen without public announcement are higher-risk than routine scheduled rotations\r \r

How to Use\r

\r Input: Provide one of:\r

  • An Agent Card JSON object to audit directly\r
  • An agent endpoint URL to fetch and audit the Agent Card\r
  • A set of Agent Card snapshots to compare for rotation events\r \r Output: A signing audit report containing:\r
  • Signature presence and scheme assessment\r
  • Key transparency verification result\r
  • Revocation mechanism check\r
  • Rotation history (if available)\r
  • Risk rating: STRONG / ADEQUATE / WEAK / UNSIGNED\r
  • Specific recommendations for remediation\r \r

Example\r

\r Input: Audit Agent Card for data-processing-agent.example\r \r

🪪 AGENT CARD SIGNING AUDIT\r
\r
Agent: data-processing-agent.example\r
Card version: 2.1.0\r
Audit timestamp: 2025-03-15T10:30:00Z\r
\r
Signature presence: ⚠️ ABSENT\r
  Agent Card contains no signature field\r
  Identity claim is unverifiable — relies entirely on marketplace account trust\r
  Risk: any agent can claim this identity or capabilities without detection\r
\r
Signing scheme: N/A (unsigned)\r
\r
Key transparency: ✗ NOT CONFIGURED\r
  No JWKS endpoint referenced in Agent Card\r
  No key transparency log entry found\r
\r
Revocation mechanism: ✗ NONE\r
  No revocation endpoint specified\r
  No CRL or OCSP equivalent configured\r
\r
Rotation history: N/A\r
\r
Risk rating: UNSIGNED\r
  This Agent Card makes identity and capability claims that cannot be\r
  cryptographically verified. In a trust-sensitive interaction, treat\r
  all capability claims as unverified assertions.\r
\r
Recommended actions:\r
  1. Implement Ed25519 signing for Agent Card with JWKS endpoint\r
  2. Register signing key in a public key transparency log\r
  3. Add revocation endpoint to Agent Card metadata\r
  4. Establish rotation policy with public announcement process\r
```\r
\r
## Related Tools\r
\r
- **publisher-identity-verifier** — Audits publisher identity at the marketplace level; signing auditor checks the A2A protocol layer\r
- **trust-decay-monitor** — Tracks trust freshness over time; signing provides the baseline trust claim that decays\r
- **protocol-doc-auditor** — Checks documentation trust signals; Agent Card signing is the machine-readable equivalent\r
- **attestation-chain-auditor** — Validates the full trust chain from signing key to capability claim\r
\r
## Limitations\r
\r
This auditor evaluates signing practices based on publicly observable Agent Card metadata. It cannot assess the security of key storage practices on the agent's host system, verify that the private key holder is actually the claimed agent, or detect signing key compromise that has not yet been publicly disclosed. A well-formed signed Agent Card with strong cryptography can still represent a compromised or malicious agent — signing establishes identity, not trustworthiness. Use in combination with behavioral analysis tools for comprehensive trust assessment.\r
Usage Guidance
This skill appears to do what it says: audit Agent Card signing metadata using network fetches or supplied JSON. Before installing or running it, consider: 1) The skill will need network access to fetch agent endpoints (curl) — only run it against endpoints you trust or supply local JSON snapshots. 2) The SKILL.md is instruction-only and contains no code; yet it declares python3 as required — ask the publisher why python3 is needed or remove the requirement if you plan to run the checks in a constrained environment. 3) The auditor evaluates only publicly observable metadata (signatures, JWKS, revocation, rotation) and cannot detect private key compromise or malicious intent; pair it with behavioral analysis for better coverage. If you need higher assurance, request the skill's source or an installable implementation from a known repository before using it in production.
Capability Analysis
Type: OpenClaw Skill Name: agent-card-signing-auditor Version: 1.0.0 The skill bundle describes an 'Agent Card Signing Auditor' designed to identify weaknesses in agent identity verification. The `SKILL.md` clearly outlines its purpose, checks performed, and usage, which involves fetching and analyzing Agent Cards. It requires `curl` and `python3`, which are standard tools appropriate for network requests and data processing in an auditing context. There are no instructions that constitute prompt injection against the AI agent, nor any evidence of intentional malicious behavior such as data exfiltration, unauthorized execution, persistence mechanisms, or obfuscation. All described actions are aligned with the stated auditing purpose.
Capability Assessment
Purpose & Capability
Name and description match the instructions: inspecting Agent Card JSON or fetching an agent endpoint to evaluate signature presence, scheme, JWKS, revocation, and rotation is coherent. Minor oddity: the skill declares python3 as a required binary despite being an instruction-only skill with no shipped code; curl is reasonable for fetching remote cards but python3 isn't justified by the SKILL.md content.
Instruction Scope
SKILL.md limits inputs to an Agent Card JSON, an agent endpoint URL, or snapshots and describes only checks against public metadata (signatures, algorithms, JWKS, revocation, rotation). It does not instruct reading unrelated system files, environment variables, or transmitting arbitrary system data to third parties.
Install Mechanism
There is no install spec and no code files (instruction-only), so nothing gets written to disk or downloaded. This is the lowest-risk install posture.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate to an auditor that operates on provided JSON or publicly reachable endpoints.
Persistence & Privilege
always is false and the skill is user-invocable with normal autonomous invocation allowed. There is no request for persistent or elevated system privileges and no instruction to modify other skills or system-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-card-signing-auditor
  3. After installation, invoke the skill by name or use /agent-card-signing-auditor
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of agent-card-signing-auditor. - Audits Agent Card signing practices for A2A protocol implementations. - Checks for signature presence, strength of signing schemes, and key transparency. - Verifies existence of revocation mechanisms and key rotation audit trails. - Provides risk ratings and actionable remediation recommendations. - Supports Agent Card auditing via JSON, URL, or snapshots for rotation history.
Metadata
Slug agent-card-signing-auditor
Version 1.0.0
License
All-time Installs 2
Active Installs 2
Total Versions 1
Frequently Asked Questions

What is agent-card-signing-auditor?

Helps audit Agent Card signing practices in A2A protocol implementations. Identifies missing signatures, weak signing schemes, and revocation gaps that allow... It is an AI Agent Skill for Claude Code / OpenClaw, with 675 downloads so far.

How do I install agent-card-signing-auditor?

Run "/install agent-card-signing-auditor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is agent-card-signing-auditor free?

Yes, agent-card-signing-auditor is completely free (open-source). You can download, install and use it at no cost.

Which platforms does agent-card-signing-auditor support?

agent-card-signing-auditor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created agent-card-signing-auditor?

It is built and maintained by andyxinweiminicloud (@andyxinweiminicloud); the current version is v1.0.0.

💬 Comments