- Mobile header row polish: finalize QuickChatFAB CSS for mobile viewport handling, apply visual viewport height to quick chat panel, remove duplicate keyboard overlap subtraction - Add `node-routing-policy.ts` with routing logic for mesh network nodes; expand scheduler node-routing tests with new policy coverage - Improve reviewer decision logic and add reviewer test cases for changed behavior - Refactor triage module (48 lines changed) with updated agent selection logic - Update `AgentsView` component and styles; add `AgentsView.test.tsx` integration test - Simplify `QuickChatFAB.test.tsx` test by removing CSS class permutation coverage - Update architecture docs and settings reference to reflect new routing capabilities Commits merged: - fix(FN-2925): remove duplicate keyboard overlap subtraction - feat(FN-2925): complete Step 5 — finalize mobile header row polish - fix(FN-2925): apply visual viewport height to mobile quick chat panel - feat(FN-2903): merge fusion/fn-2903 - feat(FN-2950): merge fusion/fn-2950 Files changed: docs/architecture.md | 19 +-- docs/settings-reference.md | 2 +- packages/dashboard/app/components/AgentsView.css | 20 +++- packages/dashboard/app/components/AgentsView.tsx | 11 +- packages/dashboard/app/components/QuickChatFAB.css | 32 ++++- .../dashboard/app/components/SettingsModal.tsx | 4 +- .../app/components/__tests__/AgentsView.test.tsx | 37 ++++++ .../app/components/__tests__/QuickChatFAB.test.tsx | 18 +-- .../src/__tests__/node-routing-policy.test.ts | 78 ++++++++++++ packages/engine/src/__tests__/reviewer.test.ts | 19 ++- .../src/__tests__/scheduler-node-routing.test.ts | 131 ++++++++++++++++++++- packages/engine/src/__tests__/triage.test.ts | 16 +-- packages/engine/src/node-routing-policy.ts | 45 +++++++ packages/engine/src/reviewer.ts | 33 ++++-- packages/engine/src/scheduler.ts | 44 ++++++- packages/engine/src/triage.ts | 48 ++++---- 16 files changed, 473 insertions(+), 84 deletions(-) Fusion-Task-Id: FN-2925
99 lines
3.0 KiB
JSON
99 lines
3.0 KiB
JSON
{
|
|
"name": "@fusion/dashboard",
|
|
"version": "0.8.4",
|
|
"license": "MIT",
|
|
"description": "Fusion dashboard: React UI and HTTP API server for monitoring and controlling the Fusion AI coding agent.",
|
|
"homepage": "https://github.com/Runfusion/Fusion#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Runfusion/Fusion",
|
|
"directory": "packages/dashboard"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Runfusion/Fusion/issues"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"source": "./src/index.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./planning": {
|
|
"types": "./src/planning.ts",
|
|
"import": "./src/planning.ts"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build && tsc",
|
|
"build:client": "vite build",
|
|
"dev": "pnpm build && pnpm typecheck && pnpm dev:serve",
|
|
"dev:serve": "vite dev",
|
|
"test": "vitest run --silent=passed-only --reporter=dot --exclude '**/build-output.test.ts'",
|
|
"test:build": "vitest run --silent=passed-only --reporter=dot app/__tests__/build-output.test.ts",
|
|
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.app.json"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/basic-setup": "^0.20.0",
|
|
"@codemirror/lang-css": "^6.3.1",
|
|
"@codemirror/lang-javascript": "^6.2.3",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-markdown": "^6.3.2",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/theme-one-dark": "^6.1.2",
|
|
"@codemirror/view": "^6.36.4",
|
|
"@fusion-plugin-examples/hermes-runtime": "workspace:*",
|
|
"@fusion-plugin-examples/openclaw-runtime": "workspace:*",
|
|
"@fusion-plugin-examples/paperclip-runtime": "workspace:*",
|
|
"@fusion/core": "workspace:*",
|
|
"@fusion/engine": "workspace:*",
|
|
"@mariozechner/pi-coding-agent": "^0.70.0",
|
|
"@types/multer": "^2.1.0",
|
|
"@xterm/addon-fit": "^0.10.0",
|
|
"@xterm/addon-search": "^0.15.0",
|
|
"@xterm/addon-web-links": "^0.11.0",
|
|
"@xterm/addon-webgl": "^0.18.0",
|
|
"@xterm/xterm": "^5.5.0",
|
|
"archiver": "^7.0.1",
|
|
"express": "^5.1.0",
|
|
"ioredis": "^5.6.0",
|
|
"lucide-react": "^1.7.0",
|
|
"multer": "^2.1.1",
|
|
"node-pty": "npm:@homebridge/node-pty-prebuilt-multiarch@^0.13.1",
|
|
"qrcode": "^1.5.4",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-markdown": "^10.1.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"ws": "^8.18.0",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.5.0",
|
|
"@types/archiver": "^7.0.0",
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"@types/qrcode": "^1.5.6",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@types/ws": "^8.5.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"@vitest/coverage-v8": "^3.1.0",
|
|
"jsdom": "^29.0.1",
|
|
"tinyrainbow": "^2.0.0",
|
|
"typescript": "^5.7.0",
|
|
"vite": "^6.0.0",
|
|
"vitest": "^3.1.0"
|
|
},
|
|
"private": true
|
|
}
|