[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-80774":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":13,"openIssues":13,"contributorsCount":14,"subscribersCount":14,"size":14,"stars1d":14,"stars7d":13,"stars30d":15,"stars90d":14,"forks30d":14,"starsTrendScore":14,"compositeScore":16,"rankGlobal":10,"rankLanguage":10,"license":17,"archived":18,"fork":18,"defaultBranch":19,"hasWiki":18,"hasPages":20,"topics":21,"createdAt":10,"pushedAt":10,"updatedAt":22,"readmeContent":23,"aiSummary":24,"trendingCount":14,"starSnapshotCount":14,"syncStatus":25,"lastSyncTime":26,"discoverSource":27},80774,"foundation-protocol","FoundationAgents\u002Ffoundation-protocol","FoundationAgents","A Python runtime for multi-entity AI collaboration — agents, humans, and tools on a shared protocol layer.","https:\u002F\u002Ffoundation-protocol.pages.dev\u002F",null,"Python",43,1,0,3,41.7,"MIT License",false,"main",true,[],"2026-06-12 04:01:30","# Foundation Protocol\n\nEnglish | [中文](README.zh.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [Español](README.es.md) | [Tiếng Việt](README.vi.md)\n\n[![GitHub Stars](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fstars\u002FFoundationAgents\u002Ffoundation-protocol)](https:\u002F\u002Fgithub.com\u002FFoundationAgents\u002Ffoundation-protocol) [![License](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Flicense\u002FFoundationAgents\u002Ffoundation-protocol)](LICENSE) [![Docs](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fdocs-online-5b3fb6?logo=materialformkdocs&logoColor=white)](https:\u002F\u002Ffoundationagents.github.io\u002Ffoundation-protocol\u002F) [![arXiv](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FarXiv-2605.23218-b31b1b?logo=arxiv&logoColor=white)](https:\u002F\u002Farxiv.org\u002Fabs\u002F2605.23218) [![HuggingFace](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002F🤗-Paper-yellow)](https:\u002F\u002Fhuggingface.co\u002Fpapers\u002F2605.23218)\n\nA Python runtime for multi-entity AI collaboration — agents, humans, and tools on a shared protocol layer.\n\n> [AI-Link-Net](https:\u002F\u002Fgithub.com\u002FFoundationAgents\u002Fai-link-net) is a full-stack application built on this protocol.\n\n## Features\n\n- **Unified entity model** — agents, humans, tools, and services share a common identity and addressing system\n- **Multi-party sessions** — structured collaboration with strict lifecycle enforcement and event replay\n- **Policy & governance** — checkpoint hooks with provenance recording for trust and access control\n- **Trade & payment** — contracts, escrow, settlement, and dispute resolution via state machines\n- **Federation** — local and remote entity routing across distributed host nodes\n\n## Manifesto\n\nhttps:\u002F\u002Fgithub.com\u002Fuser-attachments\u002Fassets\u002Fceab2515-b8f2-47ec-8d7f-10452759c32a\n\n## Installation\n\nInstall as a git dependency:\n\n```bash\npip install \"foundation-protocol @ git+https:\u002F\u002Fgithub.com\u002FFoundationAgents\u002Ffoundation-protocol.git\"\n```\n\n## Usage\n\n```python\nimport asyncio\nfrom fp import EntityKind, Host, Message, MessageKind\n\nasync def main():\n    host = Host(name=\"LocalHost\")\n\n    alice = host.register_entity(name=\"Alice\", kind=EntityKind.HUMAN)\n    bot = host.register_entity(name=\"Bot\", kind=EntityKind.AGENT)\n\n    await alice.send_message(\n        to=bot.entity_card,\n        message=Message(kind=MessageKind.INVOKE, payload={\"text\": \"Hello!\"}),\n    )\n\nasyncio.run(main())\n```\n\nSee the [`example\u002F`](example\u002F) directory for more scenarios including cross-host messaging, MCP tool integration, and trade workflows.\n\n## Documentation\n\nFull documentation is published at [foundationagents.github.io\u002Ffoundation-protocol](https:\u002F\u002Ffoundationagents.github.io\u002Ffoundation-protocol\u002F). Quick links:\n\n- [Quickstart](docs\u002Fdevelop\u002Fquickstart.md) — install and run a two-entity exchange\n- [Checkpoint Pipeline](docs\u002Flearn\u002Fcheckpoint.md) — the trust and governance seam\n- [Trade & Trust](docs\u002Ftrade-and-trust\u002Findex.md) — contracts, arbitration, reputation\n- [Security Notes](docs\u002Fsecurity\u002Findex.md) — known boundaries and risks\n\n## License\n\nMIT\n","Foundation Protocol 是一个支持多实体AI协作的Python运行时环境，允许代理、人类和工具在共享协议层上进行交互。其核心功能包括统一的实体模型、多方会话管理、策略与治理机制、交易与支付处理以及联邦路由能力。项目采用MIT许可证开放源代码，并提供详尽的文档支持。它适用于需要跨多个参与者（包括AI代理和真人）进行复杂协作的应用场景，如构建分布式智能系统或实现安全可控的人机混合工作流。",2,"2026-06-11 04:01:57","CREATED_QUERY"]