[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-95205":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":9,"totalLinesOfCode":9,"stars":12,"forks":13,"watchers":14,"openIssues":14,"contributorsCount":9,"subscribersCount":14,"size":14,"stars1d":14,"stars7d":14,"stars30d":14,"stars90d":14,"forks30d":14,"starsTrendScore":14,"compositeScore":15,"rankGlobal":9,"rankLanguage":9,"license":9,"archived":16,"fork":16,"defaultBranch":17,"hasWiki":16,"hasPages":16,"topics":9,"createdAt":9,"pushedAt":9,"updatedAt":18,"readmeContent":19,"aiSummary":9,"trendingCount":14,"starSnapshotCount":14,"syncStatus":20,"lastSyncTime":9,"discoverSource":21},95205,"nakama","ahmadrosid\u002Fnakama","ahmadrosid","It's like Hermes Agent & OpenClaw but designed to work nicely with teams.",null,"https:\u002F\u002Fgithub.com\u002Fahmadrosid\u002Fnakama","TypeScript",262,44,0,41.96,false,"main","2026-08-24 04:01:23","\u003Cp align=\"center\">\n  \u003Cpicture>\n    \u003Csource media=\"(prefers-color-scheme: dark)\" srcset=\"assets\u002Fnakama-logo-dither-dark.png\" \u002F>\n    \u003Cimg alt=\"Nakama logo\" src=\"assets\u002Fnakama-logo-dither-light.png\" width=\"188\" \u002F>\n  \u003C\u002Fpicture>\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fdiscord.com\u002Finvite\u002FCwq3erYvh\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FDiscord-5865F2?style=for-the-badge&logo=discord&logoColor=white\" alt=\"Discord\">\u003C\u002Fa>\n\u003C\u002Fp>\n\n# Nakama\n\n[Documentation](https:\u002F\u002Fahmadrosid.github.io\u002Fnakama\u002F) · [Demo](https:\u002F\u002Fdemo.getnakama.cloud) · [Managed hosting](https:\u002F\u002Fgetnakama.cloud\u002F)\n\n> Your next hire will still be human.\n> Nakama runs the agents. Your team keeps the important work.\n\nNakama is an AI agent platform for your team. You chat in a dashboard that feels like ChatGPT. Behind that, each agent can use tools, skills, memory, and channels (Telegram, WhatsApp, Discord) — with its own identity and permissions.\n\nIt was built for teams from day one: one server, many orgs, invites and roles, agents isolated from each other. Set it up in the browser — demo, managed cloud, or one Docker container.\n\nComing from [OpenClaw](https:\u002F\u002Fgithub.com\u002Fopenclaw\u002Fopenclaw) or [Hermes Agent](https:\u002F\u002Fgithub.com\u002Fnousresearch\u002Fhermes-agent)? Same class of capability, without the setup maze, and not limited to one operator on one machine.\n\n\u003Cpicture>\n  \u003Csource media=\"(prefers-color-scheme: dark)\" srcset=\"assets\u002Fnakama_demo_dark.png\" \u002F>\n  \u003Cimg alt=\"Nakama dashboard demo\" src=\"assets\u002Fnakama_demo_light.png\" \u002F>\n\u003C\u002Fpicture>\n\nOpen [ARCHITECTURE.md](.\u002FARCHITECTURE.md) for the system design.\nOpen the [docs site](https:\u002F\u002Fahmadrosid.github.io\u002Fnakama\u002F) for the full guide.\n\n## Quick start\n\n### Try the demo\n\nOpen the live demo at [https:\u002F\u002Fdemo.getnakama.cloud](https:\u002F\u002Fdemo.getnakama.cloud).\n\n- Username: `demo@getnakama.cloud`\n- Password: `demo1234`\n\n### Managed hosting\n\nUse [Nakama Cloud](https:\u002F\u002Fgetnakama.cloud\u002F) to try Nakama with the least work.\n\n1. Create an account.\n2. Provision an instance.\n3. Complete the first-time setup wizard in the browser.\n\nYou do not need Bun, Docker, or a VPS.\n\n### Run locally\n\nYou need [Bun](https:\u002F\u002Fbun.sh).\n\n```bash\n# Install dependencies\nbun install\n\n# Start the web (starts the server automatically if needed)\nbun run dev:web\n```\n\nOpen the web dashboard: http:\u002F\u002Flocalhost:3003\n\nOr start the server alone:\n\n```bash\nbun run dev:server\n```\n\n### Docker\n\nYou can also run Nakama with Docker.\n\n**Prebuilt image (fastest):**\n\n```bash\n# Pull and run the latest image\ndocker pull ghcr.io\u002Fahmadrosid\u002Fnakama:latest\ndocker run -d -p 4310:4310 -v nakama-data:\u002Fnakama\u002Fdata --name nakama ghcr.io\u002Fahmadrosid\u002Fnakama:latest\n```\n\n**Build from source:**\n\n```bash\n.\u002Fscripts\u002Fdocker-build-run.sh\n```\n\n**Fresh start:**\n\n```bash\n.\u002Fscripts\u002Fdocker-destroy.sh\n.\u002Fscripts\u002Fdocker-build-run.sh\n```\n\nOpen the dashboard at http:\u002F\u002Flocalhost:4310.\n\nThe image carries [omni](https:\u002F\u002Fgithub.com\u002Ffajarhide\u002Fomni), which shortens `bash`\nand `read_file` output before it reaches the model. Turn it on under Integrations,\nor with `NAKAMA_OMNI=1`. Build with `--build-arg OMNI_VERSION=` to leave the binary\nout; the server then downloads it, checksum verified, the first time the toggle is\nswitched on. Set `NAKAMA_OMNI_AUTO_INSTALL=0` to forbid that download.\n\n### Integrations\n\nNakama connects to **Telegram**, **WhatsApp**, and **Composio**.\nWith Composio, you can connect to more than 1,000 external apps.\nEnable them in the web app under **Integrations**.\n\nOn the first run, the server asks for a provider and an API key if none is configured.\nThe server saves settings to `~\u002F.nakama\u002Fconfig.ini`.\n\nThe server listens on `http:\u002F\u002F127.0.0.1:4310` by default.\nInteractive API docs are at `http:\u002F\u002F127.0.0.1:4310\u002Fdocs`.\n\n## License\n\nMIT\n",2,"trending"]