[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-92501":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":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":16,"stars30d":17,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":18,"rankGlobal":10,"rankLanguage":10,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":22,"hasPages":20,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":41,"readmeContent":42,"aiSummary":43,"trendingCount":16,"starSnapshotCount":16,"syncStatus":44,"lastSyncTime":45,"discoverSource":46},92501,"bike4mind","Bike4Mind\u002Fbike4mind","Bike4Mind","The open-core AI workbench — notebooks, agents, RAG, voice, and images across any model: OpenAI, Anthropic, Google, xAI, or local via Ollama\u002FvLLM. BSL 1.1,  auto-converting to Apache-2.0 on a two-year clock. Your AI keeps running when theirs doesn't.","https:\u002F\u002Fbike4mind.com\u002F",null,"TypeScript",59,15,3,113,0,5,44.11,"Other",false,"main",true,[24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],"agents","ai","ai-agents","ai-workbench","anthropic","llm","mcp","mongodb","multi-model","nextjs","ollama","open-core","openai","rag","self-hosted","typescript","vllm","2026-07-22 04:02:06","\u003Cdiv align=\"center\">\n\n# Bike4Mind\n\n**Your bicycle for the mind in the age of AI.**\n\nAn open-core AI knowledge platform — a multi-model workspace where notebooks, autonomous agents, and a RAG knowledge engine work together to augment any cognitive task.\n\n[![Chat on Bike4Mind](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fchat-Bike4Mind-6d28d9)](https:\u002F\u002Fapp.bike4mind.com) &nbsp;\n[![License: BUSL-1.1](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flicense-BUSL--1.1-blue)](.\u002FLICENSE) &nbsp;\n[![Discussions](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fcommunity-Discussions-24292f)](https:\u002F\u002Fgithub.com\u002Fbike4mind\u002Fbike4mind\u002Fdiscussions) &nbsp;\n[![GitHub stars](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fstars\u002Fbike4mind\u002Fbike4mind?style=flat&label=stars&color=6d28d9)](https:\u002F\u002Fgithub.com\u002Fbike4mind\u002Fbike4mind)\n\n\u003C\u002Fdiv>\n\n---\n\n## What is Bike4Mind?\n\nBike4Mind is an AI-powered knowledge platform that wires a superset of AI technologies together behind one workspace. Bring your own models, keep your data, and let agents do the heavy lifting.\n\n- **Notebooks** — the core workspace: chat, documents, and context in one place, across any model.\n- **Multi-LLM by design** — swap freely between **Anthropic, OpenAI, Google Gemini, xAI, Ollama** (local), and more, plus image models (FLUX, DALL·E 3, Stable Diffusion).\n- **Quest Master** — autonomous, multi-step task planning: text and image generation, vision review, web search, math, code, and human-in-the-loop steps, run in parallel.\n- **AI Agents** — autonomous ReAct-style agents that carry out complex tasks against your tools and knowledge.\n- **Knowledge Engine** — RAG over your documents: smart chunking, vector search, collections, and tagging so agents can reason about what you know.\n- **Artifacts** — reusable snippets, documents, and visualizations produced by agents, with a built-in publish-and-share layer.\n\nTry the hosted service at **[app.bike4mind.com](https:\u002F\u002Fapp.bike4mind.com)**, or self-host the open core on your own infrastructure (below).\n\n## Open core\n\nBike4Mind is **open core**. The engine is public and self-hostable; the multi-tenant hosted service is our business.\n\n- **Open** (this repo, BUSL-1.1): the agent engine, LLM adapters, CLI, data models, and the self-host path — published as `@bike4mind\u002F*` packages.\n- **Commercial \u002F closed**: operating the multi-tenant hosted service — billing, entitlements, hosted infrastructure — and premium overlays such as Overwatch.\n\nSee [CONTRIBUTING.md](.\u002FCONTRIBUTING.md#the-openclosed-boundary) for the exact open\u002Fclosed boundary.\n\n## Quickstart\n\n**Hosted (fastest):** sign in at **[app.bike4mind.com](https:\u002F\u002Fapp.bike4mind.com)** — nothing to install.\n\n**Self-host:** run the open core on your own hardware with Docker — no AWS account or cloud provider required. See the **[Self-Host Quickstart](.\u002FSELF_HOST.md)**. In short:\n\n```bash\n# 1. Copy the env template, then generate JWT_SECRET \u002F SESSION_SECRET \u002F\n#    SECRET_ENCRYPTION_KEY (see SELF_HOST.md) and add your model keys\ncp .env.selfhost.example .env.selfhost\n\n# 2. Bring up the stack (app + MongoDB + object storage + queues + mail catcher)\ndocker compose -f compose.selfhost.yaml --env-file .env.selfhost up -d\n```\n\nBike4Mind then runs at `http:\u002F\u002Flocalhost:3000`; sign-in code emails land in the bundled Mailpit at `http:\u002F\u002Flocalhost:8025`. The self-host image is published to `ghcr.io\u002Fbike4mind\u002Fbike4mind-selfhost`.\n\n## Develop\n\nBike4Mind is a pnpm + Turborepo monorepo (Node 24).\n\n```bash\npnpm i -r              # install\npnpm turbo:core:build  # build the @bike4mind\u002F* core packages\npnpm turbo:typecheck   # type check\npnpm turbo:test        # run tests\n```\n\nProject layout: `apps\u002Fclient` (Next.js SPA + pages API backend), `packages\u002Fcli` (interactive CLI + ReAct agent), `b4m-core\u002F*` (the `@bike4mind\u002F*` engine packages), `packages\u002Fdatabase` (Mongoose models + migrations). Realtime WebSocket fanout ships as a separate `@bike4mind\u002Fsubscriber-fanout` image. See [CONTRIBUTING.md](.\u002FCONTRIBUTING.md) for the full guide.\n\n## Contributing\n\nContributions are welcome — fork → topic branch → PR → squash-merge. All contributors sign a lightweight CLA on their first PR (you keep your copyright). Start with [CONTRIBUTING.md](.\u002FCONTRIBUTING.md) and our [Code of Conduct](.\u002FCODE_OF_CONDUCT.md). Questions and self-hosting help go in [Discussions](https:\u002F\u002Fgithub.com\u002Fbike4mind\u002Fbike4mind\u002Fdiscussions).\n\n## Security\n\nPlease report vulnerabilities privately — see [SECURITY.md](.\u002FSECURITY.md). Do not open public issues for security problems.\n\n## License\n\nBike4Mind is licensed under the **[Business Source License 1.1](.\u002FLICENSE)** with a broad Additional Use Grant:\n\n- ✅ You **may** read, modify, redistribute, and make production use of the code — including self-hosting it for your organization's own internal use, and building or commercializing your own products on top of it.\n- ❌ You **may not** offer the software to third parties as a competing hosted\u002Fmanaged service (a \"Bike4Mind Service\", as defined in the LICENSE).\n- 🕓 Each released version **converts to Apache-2.0** two years after its public release. This license will never be tightened.\n\nFor alternative licensing, contact **licensing@bike4mind.com**.\n\n© 2026 Bike4Mind, Inc.\n","Bike4Mind 是一个开源核心的 AI 知识工作台，支持多模型协同的智能任务处理。它集成 Notebook 交互界面、自主式 ReAct 代理（Quest Master）、RAG 知识引擎、多模态（文本\u002F图像）模型接入（OpenAI、Anthropic、Gemini、xAI、Ollama\u002FvLLM 等），并提供可复用的工件（Artifacts）管理与本地化部署能力。采用 TypeScript 开发，强调数据主权与模型自由切换，适用于知识密集型团队的私有化 AI 协作、研究辅助、技术文档增强与自动化认知任务编排等场景。",2,"2026-07-09 02:30:09","CREATED_QUERY"]