OpenSource-Hub

open-agents

애플리케이션

vercel-labs/open-agents

开源云代理构建模板。

개요

在 Vercel 上构建和运行后台编码代理的参考应用。包含 Web UI、代理运行时、沙箱编排及 GitHub 集成,支持从提示到代码的完整工作流。

README 미리보기

# Open Agents\n\n[](https://vercel.com/new/clone?project-name=open-agents&repository-name=open-agents&repository-url=https%3A%2F%2Fgithub.com%2Fvercel-labs%2Fopen-agents&demo-title=Open+Agents&demo-description=Open-source+reference+app+for+building+and+running+background+coding+agents+on+Vercel.&demo-url=https%3A%2F%2Fopen-agents.dev%2F&env=POSTGRES_URL%2CBETTER_AUTH_SECRET%2CNEXT_PUBLIC_VERCEL_APP_CLIENT_ID%2CVERCEL_APP_CLIENT_SECRET%2CNEXT_PUBLIC_GITHUB_CLIENT_ID%2CGITHUB_CLIENT_SECRET%2CGITHUB_APP_ID%2CGITHUB_APP_PRIVATE_KEY%2CNEXT_PUBLIC_GITHUB_APP_SLUG%2CGITHUB_WEBHOOK_SECRET&envDescription=Neon+can+provide+POSTGRES_URL+automatically.+Generate+BETTER_AUTH_SECRET+yourself%2C+then+add+your+Vercel+OAuth+and+GitHub+App+credentials+for+a+full+deployment.&products=%255B%257B%2522type%2522%253A%2522integration%2522%252C%2522protocol%2522%253A%2522storage%2522%252C%2522productSlug%2522%253A%2522neon%2522%252C%2522integrationSlug%2522%253A%2522neon%2522%257D%252C%257B%2522type%2522%253A%2522integration%2522%252C%2522protocol%2522%253A%2522storage%2522%252C%2522productSlug%2522%253A%2522upstash-kv%2522%252C%2522integrationSlug%2522%253A%2522upstash%2522%257D%255D&skippable-integrations=1)\n\nOpen Agents is an open-source reference app for building and running background coding agents on Vercel. It includes the web UI, the agent runtime, sandbox orchestration, and the GitHub integration needed to go from prompt to code changes without keeping your laptop involved.\n\nThe repo is meant to be forked and adapted, not treated as a black box.\n\n## What it is\n\nOpen Agents is a three-layer system:\n\n```text\nWeb -> Agent workflow -> Sandbox VM\n```\n\n- The web app handles auth, sessions, chat, and streaming UI.\n- The agent runs as a durable workflow on Vercel.\n- The sandbox is the execution environment: filesystem, shell, git, dev servers, and preview ports.\n\n### The key architectural decision: the agent is not the sandbox\n\nThe agent does not run inside the VM. It run

FAQ (2)

문제 해결
배포된 Next.js 앱이 성공적인 빌드에도 불구하고 404 오류를 반환하는 이유는 무엇인가요?

배포 설정에서 프레임워크 드롭다운에서 'Next.js'를 선택하세요. 이렇게 하면 플랫폼이 Next.js 라우팅을 처리하도록 구성되어 404 오류를 방지합니다. 또한 Root Directory가 올바르게 설정되었는지(예: 'apps/web') 확인하고 build-time env vars가 존재하는지 확인하세요.

원본 Issue #815
문제 해결
.vercel/project.json 파일을 실수로 커밋한 후 Vercel 프로젝트 연결을 해제하는 방법은?

프로젝트 디렉토리에서 vercel unlink를 실행한 후, Git 저장소에서 .vercel/project.json 파일을 git rm .vercel/project.json으로 수동으로 제거하고 변경 사항을 커밋하세요.

원본 Issue #576