{"id":49306959,"url":"https://github.com/sujay888999/vgo-code","last_synced_at":"2026-04-26T10:01:49.355Z","repository":{"id":351245687,"uuid":"1210147050","full_name":"sujay888999/vgo-code","owner":"sujay888999","description":"VGO AI Platform - AI Chat Workspace with Cloud \u0026 Local Models","archived":false,"fork":false,"pushed_at":"2026-04-22T07:58:57.000Z","size":33618,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"codex/main","last_synced_at":"2026-04-22T09:37:14.993Z","etag":null,"topics":["ai","chatbot","electron","local-ai","nestjs","nextjs","ollama","vgo-code"],"latest_commit_sha":null,"homepage":"https://vgoai.cn","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sujay888999.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-14T06:09:51.000Z","updated_at":"2026-04-22T07:59:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sujay888999/vgo-code","commit_stats":null,"previous_names":["sujay888999/vgo-code"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sujay888999/vgo-code","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujay888999%2Fvgo-code","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujay888999%2Fvgo-code/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujay888999%2Fvgo-code/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujay888999%2Fvgo-code/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sujay888999","download_url":"https://codeload.github.com/sujay888999/vgo-code/tar.gz/refs/heads/codex/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujay888999%2Fvgo-code/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32292958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","chatbot","electron","local-ai","nestjs","nextjs","ollama","vgo-code"],"created_at":"2026-04-26T10:01:48.166Z","updated_at":"2026-04-26T10:01:49.345Z","avatar_url":"https://github.com/sujay888999.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VGO CODE\n\nVGO CODE 是一个桌面端 Agent 工作台项目。\n当前工程已完成前端主链路迁移，默认使用 React + Vite 构建产物作为 Electron 渲染层。\n\n## 当前能力\n\n- Electron 桌面应用\n- 多会话管理\n- 多引擎切换（含 VGO Remote）\n- VGO AI 账号绑定与模型选择\n- 本地 API 模板服务（`server/`）\n\n## 工程结构\n\n```text\nE:\\VGO-CODE\n├─ build/\n├─ docs/\n├─ electron/\n│  ├─ main.js\n│  ├─ preload.js\n│  └─ core/\n├─ src/                  # 前端源码（开发入口）\n├─ dist-web/             # 前端构建产物（运行入口）\n├─ server/\n├─ scripts/\n├─ ui/                   # 旧版静态页面，仅兼容兜底\n├─ vendor/\n├─ package.json\n└─ README.md\n```\n\n## 渲染层加载策略\n\nElectron 主进程优先加载 `dist-web/index.html`。\n仅在以下情况允许回退旧版 `ui/index.html`：\n\n- 开发模式（`app.isPackaged === false`）\n- 显式设置环境变量：`VGO_ALLOW_LEGACY_UI_FALLBACK=1`\n\n如果缺少 `dist-web` 且未开启回退，会显示错误提示页，避免生产环境误回退旧 UI。\n\n## 常用命令\n\n开发运行：\n\n```powershell\nnpm start\n```\n\n构建前端：\n\n```powershell\nnpm run build:web\n```\n\n目录版打包：\n\n```powershell\nnpm run pack\n```\n\n安装包打包：\n\n```powershell\nnpm run dist\n```\n\n## 本地 API 服务\n\n单独启动本地 API：\n\n```powershell\ncd E:\\VGO-CODE\\server\nnpm start\n```\n\n默认接口：\n\n- `GET /health`\n- `GET /models`\n- `POST /auth/register`\n- `POST /auth/login`\n- `POST /chat`\n\n## 相关文档\n\n- `docs/ARCHITECTURE.md`\n- `docs/VGO-CORE-ROADMAP.md`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsujay888999%2Fvgo-code","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsujay888999%2Fvgo-code","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsujay888999%2Fvgo-code/lists"}