概要
InsForge 是一个专为 AI 编码代理设计的开源后端平台,提供数据库、认证、存储、边缘函数、模型网关和托管服务,支持端到端全栈应用的构建与部署。可通过 Docker Compose 自托管或使用云端服务。
README プレビュー
\n \n \n \n \n \n \n \n\n \n The all-in-one, open-source backend platform for agentic coding.\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n ⭐ Help us reach more developers and grow the InsForge community. Star this repo!\n\n\n## InsForge\nThe all-in-one, open-source backend platform for agentic coding. InsForge gives your coding agent database, auth, storage, compute, hosting, and AI gateway to ship full-stack apps end-to-end.\n\n\n \n\n\n### How it works\n\nCoding agents interact with InsForge through one of two interfaces:\n\n- **MCP Server** (self-hosted and cloud): exposes InsForge's operations as tools any MCP-compatible agent can call.\n- **CLI + Skills** (cloud only): a command-line interface paired with Skills that agents invoke directly from the terminal.\n\nBoth interfaces let coding agents operate the backend like backend engineers:\n\n- **Read backend context and state**: Pull documentation, schemas, metadata (deployed functions, bucket contents, auth config), and runtime logs, so the agent has what it needs to write code, verify what it built, and debug when something breaks.\n- **Configure primitives**: Deploy edge functions, run database migrations, create storage buckets, set up auth providers, and configure other backend resources directly.\n\n```mermaid\ngraph TB\n\n subgraph TOP[" "]\n AG[AI Coding Agents]\n end\n\n subgraph MID[" "]\n SL[InsForge]\n end\n\n AG --> SL\n\n SL --> AUTH[Authentication]\n SL --> DB[Database]\n SL --> ST[Storage]\n SL --> EF[Edge Functions]\n SL --> MG[Model Gateway]\n SL --> CP[Compute]\n SL --> DEP[Deployment]\n\n classDef bar fill:#0b0f14,stroke:#30363d,stroke-width:1px,color:#ffffff\n classDef card fill:#161b22,stroke:#30363d,stroke-width:1px,color:#ffffff\n\n class AG,SL bar\n class AUTH,DB,ST,EF,MG,CP,DEP card\n\n style TOP fill:transparent,str