{"id":51406328,"url":"https://github.com/skorotkiewicz/acp-p2p","last_synced_at":"2026-07-04T11:03:40.766Z","repository":{"id":361057890,"uuid":"1252922173","full_name":"skorotkiewicz/acp-p2p","owner":"skorotkiewicz","description":"A P2P (POC) of the ACP for decentralized agent communication","archived":false,"fork":false,"pushed_at":"2026-05-29T03:10:03.000Z","size":56,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-29T04:12:24.083Z","etag":null,"topics":["acp","p2p-network","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/skorotkiewicz.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-05-29T02:14:02.000Z","updated_at":"2026-05-29T03:10:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/skorotkiewicz/acp-p2p","commit_stats":null,"previous_names":["skorotkiewicz/acp-p2p"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/skorotkiewicz/acp-p2p","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skorotkiewicz%2Facp-p2p","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skorotkiewicz%2Facp-p2p/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skorotkiewicz%2Facp-p2p/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skorotkiewicz%2Facp-p2p/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skorotkiewicz","download_url":"https://codeload.github.com/skorotkiewicz/acp-p2p/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skorotkiewicz%2Facp-p2p/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35119016,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-04T02:00:05.987Z","response_time":113,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["acp","p2p-network","rust"],"created_at":"2026-07-04T11:03:40.071Z","updated_at":"2026-07-04T11:03:40.761Z","avatar_url":"https://github.com/skorotkiewicz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# acp-p2p\n\na peer-to-peer implementation of the Agent Client Protocol (ACP) for decentralized agent communication.\n\n## installation\n\n```bash\n# clone the repository\ngit clone --depth 1 https://github.com/skorotkiewicz/acp-p2p\ncd acp-p2p\n\n# build with ACP features enabled\ncargo build --release --features acp\n# or\njust build-all\n```\n\n## usage\n\n```bash\n# run the agent\n./target/release/agent --alias alice --caps rust,math\n```\n\n\u003cdetails\u003e\n  \u003csummary\u003eexamples\u003c/summary\u003e\n\n```bash\n# connect to a specific peer at startup\njust run --peer /ip4/127.0.0.1/tcp/12345/p2p/\u003cpeer-id\u003e --alias alice\n\n# generate ephemeral identity (don't persist to file)\njust run --ephemeral --alias test\n\n# disable mDNS discovery\njust run --no-mdns --alias isolated\n\n# custom listen address\njust run --listen /ip4/0.0.0.0/tcp/9000\n```\n\n\u003c/details\u003e\n\n\nthe agent is configured via command-line arguments:\n\n- `--alias \u003cname\u003e` - human-readable alias for this agent\n- `--caps \u003clist\u003e` - comma-separated capability tags (e.g. rust,math,python)\n- `--peer \u003cmultiaddr\u003e` - peer multiaddr to connect to at startup\n- `--ephemeral` - generate a new in-memory identity (don't persist)\n- `--no-mdns` - disable automatic peer discovery\n- `--listen \u003cmultiaddr\u003e` - custom listen address (can be repeated)\n\nonce running, the agent accepts interactive commands:\n\n- `ask \u003cquestion\u003e` - broadcast a question to all peers\n- `ask --caps rust,math \u003cquestion\u003e` - ask agents with specific capabilities\n- `ask @rust,math \u003cquestion\u003e` - short form for capability routing\n- `acp \u003cmethod\u003e \u003cjson-params\u003e` - broadcast ACP JSON-RPC payload (requires acp feature)\n- `dial \u003cmultiaddr\u003e` - manually connect to a peer\n- `peers` - list known peers\n- `quit` - exit the mesh\n\n\n\u003cdetails\u003e\n  \u003csummary\u003efeatures\u003c/summary\u003e\n\n- peer-to-peer networking using libp2p\n- agent client protocol (ACP) implementation\n- support for gossipsub messaging\n- automatic peer discovery via mDNS\n- async runtime with Tokio\n- command-line interface with clap\n\n\u003c/details\u003e\n\n\n## contributing\n\ncontributions are welcome! please feel free to submit a pull request.\n\n## license\n\nMIT license\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskorotkiewicz%2Facp-p2p","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskorotkiewicz%2Facp-p2p","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskorotkiewicz%2Facp-p2p/lists"}