repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources15d ago| #1 | { |
| #2 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| #3 | "$id": "https://solanaclawd.com/schemas/skill-schema.v1.json", |
| #4 | "title": "OpenClawd Skill Attestation", |
| #5 | "type": "object", |
| #6 | "additionalProperties": false, |
| #7 | "required": [ |
| #8 | "skill_id", |
| #9 | "verifier_pubkey", |
| #10 | "proof_hash", |
| #11 | "verification_timestamp", |
| #12 | "is_formally_verified" |
| #13 | ], |
| #14 | "properties": { |
| #15 | "skill_id": { |
| #16 | "type": "string", |
| #17 | "description": "Stable skill identifier matching the folder name under agents/skills/." |
| #18 | }, |
| #19 | "verifier_pubkey": { |
| #20 | "type": "string", |
| #21 | "description": "Base58 Solana public key for the verifier or authority that signed the attestation." |
| #22 | }, |
| #23 | "proof_hash": { |
| #24 | "type": "string", |
| #25 | "description": "Digest of the audited skill artifact bundle or formal proof package." |
| #26 | }, |
| #27 | "verification_timestamp": { |
| #28 | "type": "integer", |
| #29 | "minimum": 0, |
| #30 | "description": "Unix timestamp in milliseconds for the verification event." |
| #31 | }, |
| #32 | "is_formally_verified": { |
| #33 | "type": "boolean", |
| #34 | "description": "True only when the skill has passed the OpenClawd verification workflow and has an issued attestation." |
| #35 | } |
| #36 | } |
| #37 | } |
| #38 |