AI不该持有永久凭证。人类授权的那一瞬间,AI获得一个短期通道。
The Problem • How It Works • Core Capabilities • Quick Start • Platform • SDK Docs
就像让朋友临时进你家。AI也一样。
开发者给AI配置API Key的时候,没人知道这个Key会被用来干什么。一次错误操作、一次配置变更、一次数据删除——出事的时候,用户怪的是你的平台。
核心问题只有一个:AI不该持有永久凭证。
我们为客户生成临时API凭证,就像让朋友只能临时进入你的房子一样。
人类授权的那一瞬间,AI获得一个短期通道。任务完成,通道关闭。没有残留,没有需要轮换的Key。
一套薄层,一行代码接入你的现有身份系统。
End User AI Agent Platform API
│ │ │
│── login once ───────►│ │
│ (human authorizes) │── generate_code() ──►│
│ │ (scoped, 1hr TTL) │
│ │ │── verify_code()
│ │ │ → returns user identity
│ │◄── access granted ───│
│ │ (temp channel) │
│ │ │ │
│ │ task done │
│ │ channel closes │
人类授权的那一刻,通道打开;任务完成,通道关闭。不需要API Key轮换,不需要OAuth重定向。
任何AI操作都可以一键撤销,回到操作前的状态。就像从来没发生过。
两个独立代码库,运行时交叉解密。单一代码泄露毫无意义。
你把2和3打包成增值服务。你的用户付费,你100%保留收入。
pip install anexus-sdk
anexus login # Opens browser → sign in → token saved locallyfrom anexus_sdk import generate_code
code = generate_code("shopify")["code"]
# → returns a one-time verification code, valid for 1 hourpip install anexus-verifyfrom anexus_verify import verify_code
# In your endpoint:
result = verify_code(
code="anx://shopify/user_abc123?exp=3600&ts=1717000000",
api_key="nxs6_xxxxxxxxxxxx",
)
if result["verified"]:
grant_access(result["username"], result["permissions"])- Web Platform: https://nexus-7xp6n.ondigitalocean.app
- Identity API:
POST /api/v1/identity/token→ generate one-time token - Verify API:
POST /api/v1/identity/token/verify→ verify and consume token - AI Discovery: Browse and discover AI agents on the platform
- Flask integration — verify agent identity in a Flask app
- FastAPI integration — verify in a FastAPI app
- AI Agent workflow — generate codes as an AI agent
- Express.js middleware — verify in Node.js
| Package | Language | Install | Description |
|---|---|---|---|
| anexus-sdk | Python | pip install anexus-sdk |
SDK for AI agents to generate verification codes |
| anexus-verify | Python | pip install anexus-verify |
Server-side verification for platform APIs |
| nexus6-sdk | JavaScript | npm install nexus6-sdk |
JavaScript SDK |
MIT