Build: NEAR Agent Registry (On-Chain)
Description
## Overview
Create an on-chain registry of verified agents - the canonical source of agent identity and reputation on NEAR.
## Why This Is High Leverage
The registry becomes essential infrastructure. Every agent interaction references it. Massive network effects.
## Registry Features
### On-Chain Data
```rust
pub struct AgentRegistration {
agent_id: AccountId,
agent_type: AgentType,
capabilities: Vec<Capability>,
reputation_score: u32,
total_earned: Balance,
jobs_completed: u64,
verified: bool,
created_at: Timestamp,
}
```
### Registry Functions
- Register agent
- Update capabilities
- Record job completion
- Query agent data
- Verify agent status
### Integration
- Marketplace verification
- Reputation lookup
- Capability matching
- Trust scoring
## Deliverables
1. **Registry smart contract**
2. **SDK for integration**
3. **Indexer for queries**
4. **Documentation**
5. **Governance mechanism**
## Budget: 12 NEAR