feat: add codex skills support and enhance system status UI

- Introduced new query keys for codex skills and their list.
- Updated English and Chinese locale files for system status messages.
- Enhanced the SettingsPage to display installation details and upgrade options.
- Integrated CLI mode toggle in SkillsManagerPage for better skill management.
- Modified skills routes to handle CLI type for skill operations and configurations.
This commit is contained in:
catlog22
2026-02-07 21:45:12 +08:00
parent 2094c1085b
commit 678be8d41f
14 changed files with 519 additions and 168 deletions

View File

@@ -8,7 +8,9 @@ export default defineConfig({
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
use: {
baseURL: 'http://localhost:5173/react/',
// E2E runs the Vite dev server with a root base to keep route URLs stable in tests.
// (Many tests use absolute paths like `/sessions` which should resolve to the app router.)
baseURL: 'http://localhost:5173/',
trace: 'on-first-retry',
},
projects: [
@@ -27,7 +29,11 @@ export default defineConfig({
],
webServer: {
command: 'npm run dev',
url: 'http://localhost:5173/react/',
url: 'http://localhost:5173/',
env: {
...process.env,
VITE_BASE_URL: '/',
},
reuseExistingServer: !process.env.CI,
timeout: 120 * 1000,
},