-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagent-template-attested.json
More file actions
212 lines (212 loc) · 6.34 KB
/
Copy pathagent-template-attested.json
File metadata and controls
212 lines (212 loc) · 6.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
{
"$schema": "./agent-template-full.json",
"name": "attested-agent",
"displayName": "⛓️ Attested Agent",
"version": "1.0.0",
"description": "Formally verified agent with on-chain attestation via Solana Attestation Service - vault-integrated wallet at birth, skill attestations via QEDGen, and Metaplex identity minting",
"ecosystem": "OpenClawd",
"x402Support": true,
"registry": {
"protocol": "8004",
"program_id": "Ag8004rWo8ao8AUKhLk78iv2nLQpZMyBPXiAh5QLbFiE",
"verified": true,
"attestation_service": "22zoJMtdu4tQc2PzL74ZUT7FrwgB1Udec8DdW4yw4BdG"
},
"persona": {
"name": "AttestedAgent",
"role": "Formally Verified Agent",
"greeting": "⛓️ AttestedAgent online. Verified and vault-secured at birth.",
"traits": ["verified", "vault-protected", "formally-assured", "trustless"],
"avatar": "⛓️🤖"
},
"skills": [
{
"name": "solana-attestation-skill",
"enabled": true,
"priority": "primary",
"path": "skills/solana-attestation-skill"
},
{
"name": "solana-formal-verification",
"enabled": true,
"priority": "required",
"path": "skills/solana-formal-verification"
},
{
"name": "openrouter-oauth",
"enabled": true,
"priority": "bundled-at-birth",
"path": "skills/openrouter-oauth",
"verified": true,
"provides": ["OPENROUTER_API_KEY"],
"description": "OAuth PKCE sign-in with OpenRouter. Populates ~/.openclawd/.env at birth so the agent can reach LLMs via clawdrouter without a human paste step."
},
{
"name": "x402-payment-verification",
"enabled": true,
"priority": "required",
"path": "skills/x402-payment-verification",
"provides": ["PAYMENT_SESSION", "VAULT_ACCESS"],
"description": "Verifies x402 payment sessions and unlocks Hermes-adapted vault execution only for attested requests."
}
],
"capabilities": {
"formalVerification": {
"qedgen_integration": true,
"lean4_proofs": true,
"proof_verification": true
},
"attestation": {
"sas_program": "22zoJMtdu4tQc2PzL74ZUT7FrwgB1Udec8DdW4yw4BdG",
"credential_creation": true,
"schema_management": true,
"attestation_issuance": true,
"attestation_verification": true
},
"metaplex": {
"mint_core_nft": true,
"create_agent_token": true,
"token_metadata": true
},
"vault": {
"hermes_integration": true,
"wallet_custody": true,
"vault_initialization_at_birth": true,
"multi_sig_required": true,
"x402_payment_gate": true,
"delegated_execution": true
},
"inference": {
"openrouter_oauth_at_birth": true,
"pkce_flow": true,
"populates_env_var": "OPENROUTER_API_KEY",
"no_client_registration": true,
"no_backend_required": true
},
"security": {
"formal_verification": true,
"attestation_verified": true,
"vault_protected": true,
"proof_of_execution": true
}
},
"services": [
{
"name": "vault",
"endpoint": "https://x402.wtf/vault",
"description": "Hermes-adapted secure custody with x402 payment verification and proof of execution."
}
],
"infrastructure": {
"proofOfExecution": {
"type": "x402-vault-delegation",
"verified": true
}
},
"attestation": {
"service": "solana-attestation-service",
"program_id": "22zoJMtdu4tQc2PzL74ZUT7FrwgB1Udec8DdW4yw4BdG",
"credential_authority": "OpenClawd Skill Authority",
"skill_schema": {
"name": "OpenClawdSkillAttestation",
"layout": [12, 32, 12, 8, 1],
"field_names": [
"skill_id",
"verifier_pubkey",
"proof_hash",
"verification_timestamp",
"is_formally_verified"
]
},
"agent_identity_schema": {
"name": "OpenClawdAgentIdentity",
"layout": [12, 32, 12, 32, 1],
"field_names": [
"agent_id",
"wallet_pubkey",
"skill_attestation",
"vault_address",
"is_vault_initialized"
]
}
},
"permissions": {
"level": "attested",
"allowedPaths": [
"./",
"./src/",
"./skills/",
"./agents/",
"./config/",
"./scripts/",
"./acp_registry/"
],
"blockedPatterns": ["**/.env", "**/*.key", "**/secrets/**", "**/credentials/**"]
},
"securityRules": {
"neverExpose": true,
"requireConfirmation": true,
"auditTrail": true,
"maxChangesPerSession": 50,
"formalVerificationRequired": true,
"vaultCustody": true
},
"tools": {
"read_file": true,
"search_files": true,
"execute_command": true,
"write_to_file": true,
"list_files": true
},
"commands": [
{
"name": "attest-skill",
"description": "Create formal attestation for a skill",
"usage": "attest-skill --skill <skill-id> --verifier <verifier-id> [--expiry <timestamp>]"
},
{
"name": "verify-attestation",
"description": "Verify an existing skill attestation",
"usage": "verify-attestation --attestation <address> [--schema <schema-id>]"
},
{
"name": "create-agent-identity",
"description": "Create Metaplex agent identity with attestation",
"usage": "create-agent-identity --agent <agent-id> --wallet <wallet-pubkey> [--skills <skill-list>]"
},
{
"name": "vault-init",
"description": "Initialize agent wallet in Hermès vault",
"usage": "vault-init --agent <agent-id> --wallet <wallet-pubkey> [--vault <vault-address>]"
},
{
"name": "x402-verify-payment",
"description": "Verify x402 payment and unlock vault",
"usage": "x402-verify --session <token>"
},
{
"name": "formal-verify",
"description": "Run QEDGen formal verification on code",
"usage": "formal-verify --program <program-id> --idl <idl-path>"
},
{
"name": "mint-agent-nft",
"description": "Mint agent as MPL Core NFT",
"usage": "mint-agent-nft --agent <agent-id> --metadata <metadata-json>"
}
],
"output": {
"format": "markdown",
"includeTimestamp": true,
"includeAttestation": true,
"verbose": false
},
"metadata": {
"author": "OpenClawd",
"created": "2026-04-23",
"updated": "2026-04-23",
"tags": ["attestation", "formal-verification", "vault", "metaplex", "solana", "openclawd"],
"category": "agent",
"license": "MIT"
}
}