Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Agent Attestation Protocol - The Reverse Turing Test. Verify AI agents, block humans.
Agent Attestation Protocol - The Reverse Turing Test. Verify AI agents, block humans.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
The Reverse Turing Test. CAPTCHAs block bots. AAP blocks humans.
AAP verifies that a client is an AI agent by: Issuing challenges trivial for LLMs, impossible for humans in time Requiring cryptographic signature (secp256k1) for identity proof 7 challenges in 6 seconds with mandatory signing
npm install aap-agent-server # Server npm install aap-agent-client # Client
import { createServer } from 'node:http'; import { createAAPWebSocket } from 'aap-agent-server'; const server = createServer(); const aap = createAAPWebSocket({ server, path: '/aap', requireSignature: true, // v3.2 default onVerified: (result) => console.log('Verified:', result.publicId) }); server.listen(3000);
import { AAPClient, generateIdentity, createSolver } from 'aap-agent-client'; // Identity auto-generated (secp256k1 key pair) const client = new AAPClient({ serverUrl: 'ws://localhost:3000/aap' }); const result = await client.verify(solver); // Signature automatically included
β handshake (requireSignature: true) β ready (publicKey) β challenges (7 challenges) β answers + signature + timestamp β result (verified/failed + sessionToken)
Proof data signed with secp256k1: JSON.stringify({ nonce, answers, publicId, timestamp })
OptionDefaultDescriptionchallengeCount7Number of challengestotalTimeMs6000Time limit (ms)requireSignaturetrueMandate cryptographic proof
Cryptographic identity (secp256k1) Signature required = no anonymous access 7 challenges in 6 seconds = impossible for humans Non-repudiation: all actions traceable
GitHub npm: aap-agent-server npm: aap-agent-client Live Demo: ClosedClaw
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.