{"id":46729949,"url":"https://github.com/flooredApe/openclaw-xmtp","last_synced_at":"2026-03-23T16:01:06.545Z","repository":{"id":336322638,"uuid":"1148562688","full_name":"flooredApe/openclaw-xmtp","owner":"flooredApe","description":"XMTP channel plugin for OpenClaw — wallet messaging for AI agents","archived":false,"fork":false,"pushed_at":"2026-02-03T21:13:24.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-04T10:18:42.436Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flooredApe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"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-02-03T05:22:38.000Z","updated_at":"2026-02-03T21:13:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/flooredApe/openclaw-xmtp","commit_stats":null,"previous_names":["flooredape/openclaw-xmtp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/flooredApe/openclaw-xmtp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flooredApe%2Fopenclaw-xmtp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flooredApe%2Fopenclaw-xmtp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flooredApe%2Fopenclaw-xmtp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flooredApe%2Fopenclaw-xmtp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flooredApe","download_url":"https://codeload.github.com/flooredApe/openclaw-xmtp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flooredApe%2Fopenclaw-xmtp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30863009,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-23T14:38:03.667Z","status":"ssl_error","status_checked_at":"2026-03-23T14:38:01.683Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2026-03-09T15:00:26.394Z","updated_at":"2026-03-23T16:01:06.536Z","avatar_url":"https://github.com/flooredApe.png","language":"TypeScript","funding_links":[],"categories":["Skills vs Plugins: What's the Difference?","Other Notable Plugins"],"sub_categories":["Bundled Plugins","Messaging \u0026 Channels"],"readme":"# openclaw-xmtp\n\nXMTP channel plugin for [OpenClaw](https://github.com/openclaw/openclaw) — enables web3 messaging via the XMTP protocol.\n\n\u003e **📐 Note:** This plugin was written autonomously by [Metatron](https://github.com/openclaw/openclaw), an AI agent running on OpenClaw. Human contributions, feedback, and improvements are welcome!\n\n## Installation\n\n```bash\nopenclaw plugins install @openclaw/xmtp\n# or from local path\nopenclaw plugins install --link /path/to/openclaw-xmtp\n```\n\n## Configuration\n\nAdd to your `openclaw.json`:\n\n```json\n{\n  \"channels\": {\n    \"xmtp\": {\n      \"enabled\": true,\n      \"dmPolicy\": \"open\",\n      \"allowFrom\": [\"*\"],\n      \"accounts\": {\n        \"default\": {\n          \"privateKey\": \"${XMTP_PRIVATE_KEY}\",\n          \"enabled\": true,\n          \"name\": \"My Agent\"\n        }\n      }\n    }\n  },\n  \"plugins\": {\n    \"entries\": {\n      \"xmtp\": { \"enabled\": true }\n    }\n  }\n}\n```\n\n### Multi-agent routing\n\nBind specific XMTP accounts to different agents:\n\n```json\n{\n  \"bindings\": [\n    {\n      \"agentId\": \"support-agent\",\n      \"match\": { \"channel\": \"xmtp\", \"accountId\": \"support\" }\n    }\n  ]\n}\n```\n\n## Configuration Options\n\n| Option | Type | Description |\n|--------|------|-------------|\n| `accounts.\u003cid\u003e.privateKey` | string | Ethereum private key (hex with 0x prefix) |\n| `accounts.\u003cid\u003e.enabled` | boolean | Enable/disable this account |\n| `accounts.\u003cid\u003e.name` | string | Display name |\n| `accounts.\u003cid\u003e.dbPath` | string | Path to persist XMTP database |\n| `dmPolicy` | string | `\"pairing\"`, `\"allowlist\"`, `\"open\"`, or `\"disabled\"` |\n| `allowFrom` | string[] | Allowed sender addresses (use `[\"*\"]` for open) |\n\n## Dependencies\n\n- `@xmtp/agent-sdk` — XMTP Agent SDK\n- `viem` — Ethereum wallet library\n- `zod` — Schema validation\n\n## Development\n\n```bash\ncd ~/.openclaw/extensions/xmtp\nnpm install\n```\n\nAfter code changes, clear jiti cache and restart gateway:\n\n```bash\nrm -rf /tmp/jiti*\nopenclaw gateway restart\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FflooredApe%2Fopenclaw-xmtp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FflooredApe%2Fopenclaw-xmtp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FflooredApe%2Fopenclaw-xmtp/lists"}