惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 BLOG
云风的 BLOG

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - StacyStarchum/Ai-agent-passport-: An open identi...
Stacy_Starch · 2026-05-10 · via Hacker News - Newest: "AI"

A verified identity standard for AI agents.

AI agents are showing up at websites, booking flights, paying bills, buying groceries — with no proof of who sent them, what they're allowed to do, or whether to trust them. This is the fix.

Your agent shows up at Delta.com
Delta scans the passport
Boom. Trusted. Transaction approved.

What is an AI Agent Passport?

An AI Agent Passport is a signed, verifiable JSON document that travels with an AI agent. It tells any platform:

  • Who owns this agent (cryptographically verified)
  • What it's allowed to do (scoped permissions)
  • How much it can spend (enforced limits)
  • Whether to trust it (registry-verified status)

Same way airports verify humans via passports — platforms verify agents via this standard.


Quick Start

Issue a passport (Python)

from agent_passport import PassportIssuer

issuer = PassportIssuer(private_key="your-ed25519-private-key")

passport = issuer.issue(
    agent_name="TravelBot Pro",
    owner_did="did:web:jay-volpenhein.agent",
    spend_limit={"per_month": 500, "currency": "USD"},
    permissions=["read", "book", "purchase"],
    agent_type="transactional",
    expires_in_days=365
)

print(passport.to_json())

Verify a passport (Node.js)

import { PassportVerifier } from '@agent-passport/sdk';

const verifier = new PassportVerifier({ registryUrl: 'https://registry.agentpassport.dev' });

const result = await verifier.verify(passportJson);

if (result.valid) {
  console.log(`Agent owned by: ${result.owner}`);
  console.log(`Spend limit: $${result.spendLimit.perMonth}/month`);
  console.log(`Permissions: ${result.permissions.join(', ')}`);
}

The Passport Schema

{
  "schema": "ai-agent-passport/v1",
  "agent_id": "AGT-7481-X",
  "agent_name": "TravelBot Pro",
  "agent_type": "transactional",
  "owner": {
    "name": "Jay Volpenhein",
    "did": "did:web:jay-volpenhein.agent"
  },
  "capabilities": {
    "spend_limit": {
      "per_transaction": 100,
      "per_day": 200,
      "per_month": 500,
      "currency": "USD"
    },
    "permissions": ["read", "book", "purchase"]
  },
  "trust": {
    "verified_by": "registry.agentpassport.dev",
    "verification_level": "high",
    "issued_at": "2026-05-04",
    "expires_at": "2027-05-04",
    "status": "VERIFIED"
  },
  "cryptography": {
    "algorithm": "Ed25519",
    "public_key": "ed25519:abc123...",
    "signature": "def456..."
  }
}

Full schema reference → schemas/passport-v1.json


Why This Matters

The agentic web is coming fast. Agents will handle trillions in transactions. Right now there is no standard for:

  • Proving an agent is who it claims to be
  • Limiting what an agent can spend or do
  • Revoking a compromised agent instantly
  • Giving platforms legal clarity on liability

This spec is the foundation. Like OAuth for humans → AI Agent Passport for agents.


Documentation

Doc Description
Specification v1 Full technical spec
Security Model Threat model and mitigations
Verification Flow How platforms verify passports
API Reference Registry API endpoints
Python SDK Python library
Node.js SDK Node.js library

Project Status

Status: RFC (Request for Comments) This is an open proposal. We are actively seeking feedback from developers, platform operators, and AI labs before finalising v1.

  • Initial specification draft
  • JSON Schema
  • Python SDK stub
  • Node.js SDK stub
  • Reference registry implementation
  • W3C / industry consortium submission
  • Security audit

Contributing

We welcome contributions from developers, platform operators, AI labs, and security researchers.

See CONTRIBUTING.md for guidelines.

To propose changes to the spec, open an issue using the Spec Change Proposal template.


License

The specification and schemas are released under CC BY 4.0 — free to implement, remix, and build on, with attribution.

SDK code is released under MIT.


Contact

  • Open an issue for spec discussion
  • Email: hello@agentpassport.dev (placeholder)
  • Twitter/X: @agentpassport (placeholder)

AI Agent Passport is an independent open standard proposal. Not affiliated with Anthropic, OpenAI, or any existing identity standard.