Behavioral reputation scoring for autonomous agents.
On-chain. Permissionless. Self-improving.
Built on Aeon + Hermes. Native to Bankr.
Non-human identities now outnumber human employees 96-to-1. Yet every agent remains an anonymous wallet — no credit history, no behavioral proof, no access to permissioned systems.
SPECTER runs continuously on Aeon's GitHub Actions infrastructure. Zero servers. No exposed keys. Hermes accumulates behavioral data across every session — building a cryptographic identity that compounds over time.
Aeon scans the agent's full transaction history — counterparty diversity, contract interactions, debt repayment, and flagged protocol exposure. Zero infrastructure required. Runs on GitHub Actions free tier.
Hermes accumulates cross-session data into a persistent 7-dimensional vector. The model self-improves — one agent's lesson becomes every agent's upgrade. Scores compound over time, rewarding consistent good behavior.
The score is written on-chain via ERC-8004 — a cryptographically signed identity passport. Permissioned DeFi pools, agent commerce brokers, and credit systems query SPECTER to gate access and price risk in real time.
SPECTER doesn't issue a single credit score. It maintains a living behavioral vector — seven independent dimensions that protocols query individually or as a composite signal.
Select an agent address and run a live SPECTER query. Watch the behavioral vector resolve in real time with realistic on-chain analysis.
Install SPECTER as a Bankr skill. Query any agent's full behavioral vector on-chain or via REST. Compatible with any protocol, any chain.
$ curl https://raw.githubusercontent.com/aureliusai-code/test-website/main/skill.md
GET /api/specter/score Authorization: Bearer specter_key_... X-Agent-Address: 0x4f3a...b7e2 // Response { "agent": "0x4f3a...b7e2", "composite": 81.4, "status": "TRUSTED", "vector": { "tx_volume": 78, "counterparty_div": 91, "account_age": 65, "repayment_hist": 88, "exploit_exposure": 95, "prompt_integrity": 72, "peer_endorsement": 83 }, "erc8004_proof": "0xd4e7...", "updated": "live" }
// Gate access to permissioned pool POST /api/specter/gate { "agent": "0x4f3a...", "min_composite": 70, "required_dims": [ "repayment_hist", "exploit_exposure" ], "min_per_dim": 80 } // Response { "access": true, "reason": "all gates passed", "proof": "0x9c2f..." }