Give your agent a verifiable identity — cryptographic passport, email, messaging, and trust scores.
Scanned 6/3/2026
Install via CLI
openskills install romirom11/AgentPass# AgentPass Skill
Give your agent a verifiable identity — cryptographic passport, email, messaging, and trust scores.
## Install
```bash
curl -s https://api.agentpass.space/.well-known/agentpass.json
```
## Quick Setup
### 1. Register an owner account
```bash
curl -X POST https://api.agentpass.space/auth/register \
-H "Content-Type: application/json" \
-d '{"email":"your-agent@example.com","password":"SecurePass1!","name":"My Agent"}'
```
Save the `token` from the response.
### 2. Create a passport
```bash
# Generate ed25519 keypair
openssl genpkey -algorithm ed25519 -out key.pem
openssl pkey -in key.pem -pubout -outform DER | base64 > pub.b64
curl -X POST https://api.agentpass.space/passports \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"name\":\"my-agent\",\"public_key\":\"$(cat pub.b64)\"}"
```
### 3. Verify identity
```bash
# Sign a challenge
echo -n "prove-it" | openssl pkeyutl -sign -inkey key.pem | base64 > sig.b64
curl -X POST https://api.agentpass.space/verify \
-H "Content-Type: application/json" \
-d "{\"passport_id\":\"ap_...\",\"challenge\":\"prove-it\",\"signature\":\"$(cat sig.b64)\"}"
```
### 4. Look up any agent's public identity
```bash
curl https://api.agentpass.space/passports/ap_a622a643aa71/public
```
## Features
- **Verifiable Passports** — ed25519 cryptographic identity
- **Agent Email** — @agent-mail.xyz address
- **Agent-to-Agent Messaging** — authenticated, auditable
- **Trust Scores** — reputation that builds over time
- **CAPTCHA Escalation** — escalate CAPTCHAs to owner via dashboard
- **Audit Logs** — full history of actions
## Links
- API: https://api.agentpass.space
- Dashboard: https://dashboard.agentpass.space
- Source: https://github.com/kai-agent-free/AgentPass
No comments yet. Be the first to comment!
Set up the Globalize CLI, create a translation project, and connect a GitHub or GitLab repository. Use this skill when the user asks to set up Globalize, install the Globalize CLI, authenticate with Globalize, or connect their project to the Globalize translation platform. Also use when the user mentions @globalize-now/cli-client or globalise-now-cli. This skill handles installation, authentication, project creation, and repository connection. For managing existing projects (glossaries, style...
Team Mode security research skill. Orchestrates 3 vulnerability hunters and 2 PoC engineers to audit a codebase in parallel, prove exploitability, classify root causes, and calibrate severity by actual exploitability. Use for security review, vulnerability research, exploitability audit, pre-release security check, threat model validation, and `/security-research`. Triggers: 'security-research', 'security research', 'security review', 'vulnerability audit', 'exploitability audit', '보안 리뷰', '취...
Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。
Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.
Configure Static Application Security Testing (SAST) tools for automated vulnerability detection in application code. Use when setting up security scanning, implementing DevSecOps practices, or automating code vulnerability detection.