# skill-agent-web **Repository Path**: leke_code/skill-agent-web ## Basic Information - **Project Name**: skill-agent-web - **Description**: skill-agent-web - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2026-04-24 - **Last Updated**: 2026-04-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # skill-agent-web `skill-agent-web` 是从 `skill-agent/examples/next-client` 剥离出来的独立 Next.js 前端项目,用来连接本地 `skill-agent` API Server。 ## 启动方式 先安装依赖: ```bash npm install ``` 启动前端: ```bash npm run dev ``` 默认访问地址: ```text http://127.0.0.1:3001 ``` ## 后端联调 前端默认连接下面这个 API 地址: ```text http://127.0.0.1:3789 ``` 如果你的 API Server 地址不同,可以通过环境变量覆盖: ```powershell $env:NEXT_PUBLIC_API_BASE = "http://127.0.0.1:3789" $env:NEXT_PUBLIC_API_ROUTE_PREFIX = "/skill_api" npm run dev ``` ## 当前迁移状态 - 已准备好独立运行所需的 `package.json`、`tsconfig.json` 和 `.gitignore` - 接下来会把 `skill-agent/examples/next-client` 的源码复制到当前仓库 - 按你的要求,原仓库中的前端文件暂时不会删除