{"id":46064506,"url":"https://github.com/kamiyo-ai/kamiyo-protocol","last_synced_at":"2026-03-01T12:06:36.276Z","repository":{"id":336200027,"uuid":"1145122036","full_name":"kamiyo-ai/kamiyo-protocol","owner":"kamiyo-ai","description":"Open-source Solana AI agent protocol for escrow payments, reputation, disputes, and autonomous service coordination.","archived":false,"fork":false,"pushed_at":"2026-02-27T00:12:55.000Z","size":637865,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-27T01:23:30.076Z","etag":null,"topics":["ai-agents","autonomous-systems","dispute-resolution","escrow","mcp","protocol","reputation","solana","web3","x402"],"latest_commit_sha":null,"homepage":"https://www.kamiyo.ai/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kamiyo-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":"SUPPORT.md","governance":"GOVERNANCE.md","roadmap":"docs/ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-29T13:02:04.000Z","updated_at":"2026-02-27T00:13:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kamiyo-ai/kamiyo-protocol","commit_stats":null,"previous_names":["kamiyo-ai/kamiyo-protocol"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/kamiyo-ai/kamiyo-protocol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamiyo-ai%2Fkamiyo-protocol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamiyo-ai%2Fkamiyo-protocol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamiyo-ai%2Fkamiyo-protocol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamiyo-ai%2Fkamiyo-protocol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kamiyo-ai","download_url":"https://codeload.github.com/kamiyo-ai/kamiyo-protocol/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kamiyo-ai%2Fkamiyo-protocol/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29969243,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T11:43:06.159Z","status":"ssl_error","status_checked_at":"2026-03-01T11:43:03.887Z","response_time":124,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","autonomous-systems","dispute-resolution","escrow","mcp","protocol","reputation","solana","web3","x402"],"created_at":"2026-03-01T12:06:35.569Z","updated_at":"2026-03-01T12:06:36.201Z","avatar_url":"https://github.com/kamiyo-ai.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KAMIYO Protocol\n\n[![CI](https://github.com/kamiyo-ai/kamiyo-protocol/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/kamiyo-ai/kamiyo-protocol/actions/workflows/ci.yml)\n[![Kani](https://github.com/kamiyo-ai/kamiyo-protocol/actions/workflows/kani.yml/badge.svg?branch=main)](https://github.com/kamiyo-ai/kamiyo-protocol/actions/workflows/kani.yml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n\n![kamiyo-protocol](https://github.com/user-attachments/assets/707baf74-fdb8-451e-8bc2-931afb143d2a)\n\nMonorepo for KAMIYO protocol code.\n\nThe repository includes on-chain programs, Rust crates, TypeScript packages, backend services, and verification tooling.\n\n## What Is Included\n\n- Stake-backed identity and trust primitives\n- Escrow and dispute workflows\n- Oracle commit/reveal logic\n- Trust-layer engine with deterministic receipts\n- Transactional outbox service for trust event ingest\n- Kani proof harnesses for selected invariants\n\n## Repository Layout\n\n| Path | Purpose |\n|---|---|\n| `programs/` | Solana on-chain programs (Anchor) |\n| `crates/` | Rust libraries (`kamiyo-trust-layer`, `kani-solana`) |\n| `packages/` | TypeScript SDKs and integrations |\n| `services/` | Service runtimes and operators |\n| `examples/` | End-to-end and integration examples |\n| `contracts/` | EVM-side contracts and related artifacts |\n| `circuits/`, `noir/` | ZK circuits |\n\n## Quick Start\n\n### Prerequisites\n\n- Node.js 20+\n- pnpm 9+\n- Rust stable + Cargo\n- Solana CLI 2.x\n- Anchor CLI 0.31.x\n\n### Install and Build\n\n```bash\ngit clone https://github.com/kamiyo-ai/kamiyo-protocol.git\ncd kamiyo-protocol\npnpm install\nanchor build\npnpm run build:sdk\n```\n\n### Run Core Test Suites\n\n```bash\nanchor test\npnpm run test:sdk\ncargo test -p kamiyo-trust-layer\ncargo test -p trust-layer-service\n```\n\n### Enterprise Readiness Gate\n\nRun deterministic onboarding and tool-wiring checks from the repo root:\n\n```bash\npnpm run preflight:enterprise\n```\n\nRun full live smoke (requires live env and funded devnet agent keypair):\n\n```bash\npnpm run smoke:enterprise\n```\n\n`smoke:enterprise` includes:\n\n- API runtime env + `/health` and `/ready` smoke\n- Operator runtime env + boot smoke\n- MCP stdio handshake + live credential preflight\n- SDK devnet lifecycle smoke\n\n## Trust Layer Service\n\nThe trust layer service provides:\n\n- idempotent trust-event ingest API\n- exactly-once durable database writes per `event_id`\n- Kafka publish via transactional outbox relay\n- dead-letter re-drive and retention sweep tooling\n- Prometheus metrics output and alert/dashboard assets\n\nService docs are available in `services/trust-layer-service/README.md`.\n\n## Formal Verification\n\nKani harnesses are maintained for trust-layer and Solana-related invariants.\n\n```bash\ncargo kani -p kani-solana\ncargo kani -p kamiyo-trust-layer\n```\n\nSee `KANI.md` for full verification workflows.\n\n## Documentation\n\n- Build and local setup: `BUILD.md`\n- System architecture: `ARCHITECTURE.md`\n- Development workflows: `docs/DEVELOPMENT.md`\n- Contributor guide: `CONTRIBUTING.md`\n- Security policy: `SECURITY.md`\n- Governance model: `GOVERNANCE.md`\n- Support channels: `SUPPORT.md`\n- Public roadmap: `docs/ROADMAP.md`\n\n## Contributing\n\nContributions are welcome. Please read `CONTRIBUTING.md` before opening a pull request.\n\n## Security\n\nReport vulnerabilities privately via the process in `SECURITY.md`.\n\n## License\n\nMIT. See `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamiyo-ai%2Fkamiyo-protocol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkamiyo-ai%2Fkamiyo-protocol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkamiyo-ai%2Fkamiyo-protocol/lists"}