corporateai 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +10 -0
- package/.env.example +3 -0
- package/.github/workflows/publish-cli.yml +49 -0
- package/.mailmap +1 -0
- package/AGENTS.md +148 -0
- package/CONTRIBUTING.md +75 -0
- package/Dockerfile +59 -0
- package/Dockerfile.onboard-smoke +42 -0
- package/LICENSE +21 -0
- package/README.md +93 -0
- package/cli/esbuild.config.mjs +11 -0
- package/cli/package.json +24 -0
- package/cli/scripts/build-cli.mjs +5 -0
- package/cli/src/index.ts +27 -0
- package/docker-compose.quickstart.yml +18 -0
- package/docker-compose.untrusted-review.yml +33 -0
- package/docker-compose.yml +38 -0
- package/package.json +56 -0
- package/patches/embedded-postgres@18.1.0-beta.16.patch +0 -0
- package/pnpm-workspace.yaml +4 -0
- package/releases/.gitkeep +0 -0
- package/releases/v0.0.1.md +36 -0
- package/releases/v0.2.7.md +15 -0
- package/releases/v0.3.0.md +54 -0
- package/releases/v0.3.1.md +55 -0
- package/releases/v2026.318.0.md +66 -0
- package/releases/v2026.325.0.md +78 -0
- package/report/2026-03-13-08-46-token-optimization-implementation.md +48 -0
- package/scripts/backup-db.sh +17 -0
- package/scripts/build-npm.sh +80 -0
- package/scripts/check-forbidden-tokens.mjs +115 -0
- package/scripts/clean-onboard-git.sh +14 -0
- package/scripts/clean-onboard-npm.sh +13 -0
- package/scripts/clean-onboard-ref.sh +86 -0
- package/scripts/create-github-release.sh +99 -0
- package/scripts/dev-runner-paths.mjs +38 -0
- package/scripts/dev-runner.mjs +606 -0
- package/scripts/docker-onboard-smoke.sh +306 -0
- package/scripts/ensure-plugin-build-deps.mjs +47 -0
- package/scripts/generate-company-assets.ts +365 -0
- package/scripts/generate-npm-package-json.mjs +113 -0
- package/scripts/generate-org-chart-images.ts +694 -0
- package/scripts/generate-org-chart-satori-comparison.ts +225 -0
- package/scripts/generate-ui-package-json.mjs +31 -0
- package/scripts/kill-dev.sh +71 -0
- package/scripts/migrate-inline-env-secrets.ts +126 -0
- package/scripts/prepare-server-ui-dist.sh +22 -0
- package/scripts/provision-worktree.sh +333 -0
- package/scripts/release-lib.sh +306 -0
- package/scripts/release-package-map.mjs +169 -0
- package/scripts/release.sh +312 -0
- package/scripts/rollback-latest.sh +111 -0
- package/scripts/smoke/openclaw-docker-ui.sh +329 -0
- package/scripts/smoke/openclaw-gateway-e2e.sh +954 -0
- package/scripts/smoke/openclaw-join.sh +295 -0
- package/scripts/smoke/openclaw-sse-standalone.sh +146 -0
- package/scripts/workspace-compat.mjs +60 -0
- package/server/CHANGELOG.md +130 -0
- package/server/package.json +96 -0
- package/server/scripts/copy-onboarding-assets.mjs +10 -0
- package/server/scripts/dev-watch.ts +33 -0
- package/server/src/__tests__/activity-routes.test.ts +70 -0
- package/server/src/__tests__/adapter-models.test.ts +105 -0
- package/server/src/__tests__/adapter-session-codecs.test.ts +194 -0
- package/server/src/__tests__/agent-auth-jwt.test.ts +79 -0
- package/server/src/__tests__/agent-instructions-routes.test.ts +318 -0
- package/server/src/__tests__/agent-instructions-service.test.ts +361 -0
- package/server/src/__tests__/agent-permissions-routes.test.ts +275 -0
- package/server/src/__tests__/agent-shortname-collision.test.ts +69 -0
- package/server/src/__tests__/agent-skill-contract.test.ts +50 -0
- package/server/src/__tests__/agent-skills-routes.test.ts +462 -0
- package/server/src/__tests__/app-hmr-port.test.ts +19 -0
- package/server/src/__tests__/approval-routes-idempotency.test.ts +110 -0
- package/server/src/__tests__/approvals-service.test.ts +107 -0
- package/server/src/__tests__/assets.test.ts +250 -0
- package/server/src/__tests__/attachment-types.test.ts +97 -0
- package/server/src/__tests__/board-mutation-guard.test.ts +105 -0
- package/server/src/__tests__/budgets-service.test.ts +311 -0
- package/server/src/__tests__/claude-local-adapter-environment.test.ts +92 -0
- package/server/src/__tests__/claude-local-adapter.test.ts +31 -0
- package/server/src/__tests__/claude-local-skill-sync.test.ts +111 -0
- package/server/src/__tests__/cli-auth-routes.test.ts +230 -0
- package/server/src/__tests__/codex-local-adapter-environment.test.ts +143 -0
- package/server/src/__tests__/codex-local-adapter.test.ts +253 -0
- package/server/src/__tests__/codex-local-execute.test.ts +391 -0
- package/server/src/__tests__/codex-local-skill-injection.test.ts +175 -0
- package/server/src/__tests__/codex-local-skill-sync.test.ts +123 -0
- package/server/src/__tests__/companies-route-path-guard.test.ts +56 -0
- package/server/src/__tests__/company-branding-route.test.ts +196 -0
- package/server/src/__tests__/company-portability-routes.test.ts +175 -0
- package/server/src/__tests__/company-portability.test.ts +2186 -0
- package/server/src/__tests__/company-skills-routes.test.ts +113 -0
- package/server/src/__tests__/company-skills.test.ts +229 -0
- package/server/src/__tests__/costs-service.test.ts +226 -0
- package/server/src/__tests__/cursor-local-adapter-environment.test.ts +196 -0
- package/server/src/__tests__/cursor-local-adapter.test.ts +406 -0
- package/server/src/__tests__/cursor-local-execute.test.ts +263 -0
- package/server/src/__tests__/cursor-local-skill-injection.test.ts +104 -0
- package/server/src/__tests__/cursor-local-skill-sync.test.ts +145 -0
- package/server/src/__tests__/dev-runner-paths.test.ts +25 -0
- package/server/src/__tests__/dev-server-status.test.ts +66 -0
- package/server/src/__tests__/dev-watch-ignore.test.ts +42 -0
- package/server/src/__tests__/documents.test.ts +29 -0
- package/server/src/__tests__/error-handler.test.ts +53 -0
- package/server/src/__tests__/execution-workspace-policy.test.ts +170 -0
- package/server/src/__tests__/forbidden-tokens.test.ts +77 -0
- package/server/src/__tests__/gemini-local-adapter-environment.test.ts +135 -0
- package/server/src/__tests__/gemini-local-adapter.test.ts +190 -0
- package/server/src/__tests__/gemini-local-execute.test.ts +172 -0
- package/server/src/__tests__/gemini-local-skill-sync.test.ts +90 -0
- package/server/src/__tests__/health.test.ts +16 -0
- package/server/src/__tests__/heartbeat-process-recovery.test.ts +256 -0
- package/server/src/__tests__/heartbeat-run-summary.test.ts +33 -0
- package/server/src/__tests__/heartbeat-workspace-session.test.ts +334 -0
- package/server/src/__tests__/helpers/embedded-postgres.ts +7 -0
- package/server/src/__tests__/hire-hook.test.ts +181 -0
- package/server/src/__tests__/instance-settings-routes.test.ts +156 -0
- package/server/src/__tests__/invite-accept-gateway-defaults.test.ts +119 -0
- package/server/src/__tests__/invite-accept-replay.test.ts +92 -0
- package/server/src/__tests__/invite-expiry.test.ts +10 -0
- package/server/src/__tests__/invite-join-grants.test.ts +57 -0
- package/server/src/__tests__/invite-join-manager.test.ts +33 -0
- package/server/src/__tests__/invite-onboarding-text.test.ts +116 -0
- package/server/src/__tests__/issue-comment-reopen-routes.test.ts +146 -0
- package/server/src/__tests__/issue-goal-fallback.test.ts +99 -0
- package/server/src/__tests__/issues-checkout-wakeup.test.ts +48 -0
- package/server/src/__tests__/issues-goal-context-routes.test.ts +187 -0
- package/server/src/__tests__/issues-service.test.ts +317 -0
- package/server/src/__tests__/issues-user-context.test.ts +113 -0
- package/server/src/__tests__/log-redaction.test.ts +74 -0
- package/server/src/__tests__/monthly-spend-service.test.ts +90 -0
- package/server/src/__tests__/normalize-agent-mention-token.test.ts +41 -0
- package/server/src/__tests__/openclaw-gateway-adapter.test.ts +626 -0
- package/server/src/__tests__/openclaw-invite-prompt-route.test.ts +192 -0
- package/server/src/__tests__/opencode-local-adapter-environment.test.ts +97 -0
- package/server/src/__tests__/opencode-local-adapter.test.ts +226 -0
- package/server/src/__tests__/opencode-local-skill-sync.test.ts +91 -0
- package/server/src/__tests__/paperclip-env.test.ts +58 -0
- package/server/src/__tests__/paperclip-skill-utils.test.ts +63 -0
- package/server/src/__tests__/pi-local-adapter-environment.test.ts +102 -0
- package/server/src/__tests__/pi-local-skill-sync.test.ts +95 -0
- package/server/src/__tests__/plugin-dev-watcher.test.ts +68 -0
- package/server/src/__tests__/plugin-worker-manager.test.ts +43 -0
- package/server/src/__tests__/private-hostname-guard.test.ts +56 -0
- package/server/src/__tests__/project-shortname-resolution.test.ts +45 -0
- package/server/src/__tests__/quota-windows-service.test.ts +56 -0
- package/server/src/__tests__/quota-windows.test.ts +1109 -0
- package/server/src/__tests__/redaction.test.ts +66 -0
- package/server/src/__tests__/routines-e2e.test.ts +276 -0
- package/server/src/__tests__/routines-routes.test.ts +271 -0
- package/server/src/__tests__/routines-service.test.ts +424 -0
- package/server/src/__tests__/storage-local-provider.test.ts +78 -0
- package/server/src/__tests__/ui-branding.test.ts +82 -0
- package/server/src/__tests__/work-products.test.ts +95 -0
- package/server/src/__tests__/workspace-runtime.test.ts +1131 -0
- package/server/src/__tests__/worktree-config.test.ts +426 -0
- package/server/src/adapters/codex-models.ts +105 -0
- package/server/src/adapters/cursor-models.ts +171 -0
- package/server/src/adapters/http/execute.ts +42 -0
- package/server/src/adapters/http/index.ts +21 -0
- package/server/src/adapters/http/test.ts +116 -0
- package/server/src/adapters/index.ts +18 -0
- package/server/src/adapters/process/execute.ts +77 -0
- package/server/src/adapters/process/index.ts +24 -0
- package/server/src/adapters/process/test.ts +89 -0
- package/server/src/adapters/registry.ts +225 -0
- package/server/src/adapters/server-utils-compat.ts +57 -0
- package/server/src/adapters/types.ts +30 -0
- package/server/src/adapters/utils.ts +48 -0
- package/server/src/agent-auth-jwt.ts +141 -0
- package/server/src/app.ts +321 -0
- package/server/src/attachment-types.ts +74 -0
- package/server/src/auth/better-auth.ts +148 -0
- package/server/src/board-claim.ts +150 -0
- package/server/src/config-file.ts +17 -0
- package/server/src/config.ts +260 -0
- package/server/src/dev-server-status.ts +103 -0
- package/server/src/dev-watch-ignore.ts +36 -0
- package/server/src/errors.ts +34 -0
- package/server/src/home-paths.ts +95 -0
- package/server/src/index.ts +799 -0
- package/server/src/log-redaction.ts +146 -0
- package/server/src/middleware/auth.ts +178 -0
- package/server/src/middleware/board-mutation-guard.ts +66 -0
- package/server/src/middleware/error-handler.ts +71 -0
- package/server/src/middleware/index.ts +3 -0
- package/server/src/middleware/logger.ts +90 -0
- package/server/src/middleware/private-hostname-guard.ts +92 -0
- package/server/src/middleware/validate.ts +9 -0
- package/server/src/onboarding-assets/ceo/AGENTS.md +54 -0
- package/server/src/onboarding-assets/ceo/HEARTBEAT.md +72 -0
- package/server/src/onboarding-assets/ceo/SOUL.md +33 -0
- package/server/src/onboarding-assets/ceo/TOOLS.md +3 -0
- package/server/src/onboarding-assets/default/AGENTS.md +3 -0
- package/server/src/paths.ts +34 -0
- package/server/src/realtime/live-events-ws.ts +274 -0
- package/server/src/redaction.ts +59 -0
- package/server/src/routes/access.ts +2888 -0
- package/server/src/routes/activity.ts +89 -0
- package/server/src/routes/agents.ts +2313 -0
- package/server/src/routes/approvals.ts +346 -0
- package/server/src/routes/assets.ts +341 -0
- package/server/src/routes/authz.ts +52 -0
- package/server/src/routes/companies.ts +343 -0
- package/server/src/routes/company-skills.ts +300 -0
- package/server/src/routes/costs.ts +335 -0
- package/server/src/routes/dashboard.ts +19 -0
- package/server/src/routes/execution-workspaces.ts +182 -0
- package/server/src/routes/goals.ts +107 -0
- package/server/src/routes/health.ts +94 -0
- package/server/src/routes/index.ts +17 -0
- package/server/src/routes/instance-settings.ts +95 -0
- package/server/src/routes/issues-checkout-wakeup.ts +14 -0
- package/server/src/routes/issues.ts +1680 -0
- package/server/src/routes/llms.ts +86 -0
- package/server/src/routes/org-chart-svg.ts +777 -0
- package/server/src/routes/plugin-ui-static.ts +497 -0
- package/server/src/routes/plugins.ts +2220 -0
- package/server/src/routes/projects.ts +295 -0
- package/server/src/routes/routines.ts +300 -0
- package/server/src/routes/secrets.ts +166 -0
- package/server/src/routes/sidebar-badges.ts +52 -0
- package/server/src/secrets/external-stub-providers.ts +32 -0
- package/server/src/secrets/local-encrypted-provider.ts +135 -0
- package/server/src/secrets/provider-registry.ts +31 -0
- package/server/src/secrets/types.ts +23 -0
- package/server/src/services/access.ts +381 -0
- package/server/src/services/activity-log.ts +95 -0
- package/server/src/services/activity.ts +164 -0
- package/server/src/services/agent-instructions.ts +735 -0
- package/server/src/services/agent-permissions.ts +27 -0
- package/server/src/services/agents.ts +694 -0
- package/server/src/services/approvals.ts +273 -0
- package/server/src/services/assets.ts +23 -0
- package/server/src/services/board-auth.ts +355 -0
- package/server/src/services/budgets.ts +959 -0
- package/server/src/services/companies.ts +313 -0
- package/server/src/services/company-export-readme.ts +173 -0
- package/server/src/services/company-portability.ts +4263 -0
- package/server/src/services/company-skills.ts +2356 -0
- package/server/src/services/costs.ts +365 -0
- package/server/src/services/cron.ts +373 -0
- package/server/src/services/dashboard.ts +110 -0
- package/server/src/services/default-agent-instructions.ts +27 -0
- package/server/src/services/documents.ts +434 -0
- package/server/src/services/execution-workspace-policy.ts +210 -0
- package/server/src/services/execution-workspaces.ts +100 -0
- package/server/src/services/finance.ts +135 -0
- package/server/src/services/goals.ts +81 -0
- package/server/src/services/heartbeat-run-summary.ts +35 -0
- package/server/src/services/heartbeat.ts +3863 -0
- package/server/src/services/hire-hook.ts +114 -0
- package/server/src/services/index.ts +32 -0
- package/server/src/services/instance-settings.ts +138 -0
- package/server/src/services/issue-approvals.ts +175 -0
- package/server/src/services/issue-assignment-wakeup.ts +48 -0
- package/server/src/services/issue-goal-fallback.ts +56 -0
- package/server/src/services/issues.ts +1828 -0
- package/server/src/services/live-events.ts +55 -0
- package/server/src/services/plugin-capability-validator.ts +450 -0
- package/server/src/services/plugin-config-validator.ts +55 -0
- package/server/src/services/plugin-dev-watcher.ts +339 -0
- package/server/src/services/plugin-event-bus.ts +413 -0
- package/server/src/services/plugin-host-service-cleanup.ts +59 -0
- package/server/src/services/plugin-host-services.ts +1132 -0
- package/server/src/services/plugin-job-coordinator.ts +261 -0
- package/server/src/services/plugin-job-scheduler.ts +753 -0
- package/server/src/services/plugin-job-store.ts +466 -0
- package/server/src/services/plugin-lifecycle.ts +822 -0
- package/server/src/services/plugin-loader.ts +1955 -0
- package/server/src/services/plugin-log-retention.ts +87 -0
- package/server/src/services/plugin-manifest-validator.ts +164 -0
- package/server/src/services/plugin-registry.ts +683 -0
- package/server/src/services/plugin-runtime-sandbox.ts +222 -0
- package/server/src/services/plugin-secrets-handler.ts +355 -0
- package/server/src/services/plugin-state-store.ts +238 -0
- package/server/src/services/plugin-stream-bus.ts +81 -0
- package/server/src/services/plugin-tool-dispatcher.ts +449 -0
- package/server/src/services/plugin-tool-registry.ts +450 -0
- package/server/src/services/plugin-worker-manager.ts +1343 -0
- package/server/src/services/projects.ts +860 -0
- package/server/src/services/quota-windows.ts +65 -0
- package/server/src/services/routines.ts +1269 -0
- package/server/src/services/run-log-store.ts +156 -0
- package/server/src/services/secrets.ts +370 -0
- package/server/src/services/sidebar-badges.ts +56 -0
- package/server/src/services/work-products.ts +124 -0
- package/server/src/services/workspace-operation-log-store.ts +156 -0
- package/server/src/services/workspace-operations.ts +262 -0
- package/server/src/services/workspace-runtime.ts +1565 -0
- package/server/src/startup-banner.ts +176 -0
- package/server/src/storage/index.ts +35 -0
- package/server/src/storage/local-disk-provider.ts +89 -0
- package/server/src/storage/provider-registry.ts +18 -0
- package/server/src/storage/s3-provider.ts +153 -0
- package/server/src/storage/service.ts +131 -0
- package/server/src/storage/types.ts +63 -0
- package/server/src/ui-branding.ts +217 -0
- package/server/src/version.ts +10 -0
- package/server/src/worktree-config.ts +468 -0
- package/server/tsconfig.json +9 -0
- package/server/vitest.config.ts +7 -0
- package/skills/paperclip/SKILL.md +365 -0
- package/skills/paperclip/references/api-reference.md +647 -0
- package/skills/paperclip/references/company-skills.md +193 -0
- package/skills/paperclip-create-agent/SKILL.md +142 -0
- package/skills/paperclip-create-agent/references/api-reference.md +105 -0
- package/skills/paperclip-create-plugin/SKILL.md +102 -0
- package/skills/para-memory-files/SKILL.md +104 -0
- package/skills/para-memory-files/references/schemas.md +35 -0
- package/tests/e2e/onboarding.spec.ts +142 -0
- package/tests/e2e/playwright.config.ts +35 -0
- package/tests/release-smoke/docker-auth-onboarding.spec.ts +141 -0
- package/tests/release-smoke/playwright.config.ts +28 -0
- package/tsconfig.base.json +18 -0
- package/tsconfig.json +18 -0
- package/ui/README.md +12 -0
- package/ui/components.json +21 -0
- package/ui/index.html +47 -0
- package/ui/package.json +73 -0
- package/ui/public/android-chrome-192x192.png +0 -0
- package/ui/public/android-chrome-512x512.png +0 -0
- package/ui/public/apple-touch-icon.png +0 -0
- package/ui/public/brands/opencode-logo-dark-square.svg +18 -0
- package/ui/public/brands/opencode-logo-light-square.svg +18 -0
- package/ui/public/favicon-16x16.png +0 -0
- package/ui/public/favicon-32x32.png +0 -0
- package/ui/public/favicon.ico +0 -0
- package/ui/public/favicon.svg +9 -0
- package/ui/public/site.webmanifest +30 -0
- package/ui/public/sprites/1-D-1.png +0 -0
- package/ui/public/sprites/1-D-2.png +0 -0
- package/ui/public/sprites/1-D-3.png +0 -0
- package/ui/public/sprites/1-L-1.png +0 -0
- package/ui/public/sprites/1-R-1.png +0 -0
- package/ui/public/sprites/10-D-1.png +0 -0
- package/ui/public/sprites/10-D-2.png +0 -0
- package/ui/public/sprites/10-D-3.png +0 -0
- package/ui/public/sprites/10-L-1.png +0 -0
- package/ui/public/sprites/10-R-1.png +0 -0
- package/ui/public/sprites/11-D-1.png +0 -0
- package/ui/public/sprites/11-D-2.png +0 -0
- package/ui/public/sprites/11-D-3.png +0 -0
- package/ui/public/sprites/11-L-1.png +0 -0
- package/ui/public/sprites/11-R-1.png +0 -0
- package/ui/public/sprites/12-D-1.png +0 -0
- package/ui/public/sprites/12-D-2.png +0 -0
- package/ui/public/sprites/12-D-3.png +0 -0
- package/ui/public/sprites/12-L-1.png +0 -0
- package/ui/public/sprites/12-R-1.png +0 -0
- package/ui/public/sprites/13-D-1.png +0 -0
- package/ui/public/sprites/13-D-2.png +0 -0
- package/ui/public/sprites/13-D-3.png +0 -0
- package/ui/public/sprites/13-L-1.png +0 -0
- package/ui/public/sprites/13-R-1.png +0 -0
- package/ui/public/sprites/14-D-1.png +0 -0
- package/ui/public/sprites/14-D-2.png +0 -0
- package/ui/public/sprites/14-D-3.png +0 -0
- package/ui/public/sprites/14-L-1.png +0 -0
- package/ui/public/sprites/14-R-1.png +0 -0
- package/ui/public/sprites/2-D-1.png +0 -0
- package/ui/public/sprites/2-D-2.png +0 -0
- package/ui/public/sprites/2-D-3.png +0 -0
- package/ui/public/sprites/2-L-1.png +0 -0
- package/ui/public/sprites/2-R-1.png +0 -0
- package/ui/public/sprites/3-D-1.png +0 -0
- package/ui/public/sprites/3-D-2.png +0 -0
- package/ui/public/sprites/3-D-3.png +0 -0
- package/ui/public/sprites/3-L-1.png +0 -0
- package/ui/public/sprites/3-R-1.png +0 -0
- package/ui/public/sprites/4-D-1.png +0 -0
- package/ui/public/sprites/4-D-2.png +0 -0
- package/ui/public/sprites/4-D-3.png +0 -0
- package/ui/public/sprites/4-L-1.png +0 -0
- package/ui/public/sprites/4-R-1.png +0 -0
- package/ui/public/sprites/5-D-1.png +0 -0
- package/ui/public/sprites/5-D-2.png +0 -0
- package/ui/public/sprites/5-D-3.png +0 -0
- package/ui/public/sprites/5-L-1.png +0 -0
- package/ui/public/sprites/5-R-1.png +0 -0
- package/ui/public/sprites/6-D-1.png +0 -0
- package/ui/public/sprites/6-D-2.png +0 -0
- package/ui/public/sprites/6-D-3.png +0 -0
- package/ui/public/sprites/6-L-1.png +0 -0
- package/ui/public/sprites/6-R-1.png +0 -0
- package/ui/public/sprites/7-D-1.png +0 -0
- package/ui/public/sprites/7-D-2.png +0 -0
- package/ui/public/sprites/7-D-3.png +0 -0
- package/ui/public/sprites/7-L-1.png +0 -0
- package/ui/public/sprites/7-R-1.png +0 -0
- package/ui/public/sprites/8-D-1.png +0 -0
- package/ui/public/sprites/8-D-2.png +0 -0
- package/ui/public/sprites/8-D-3.png +0 -0
- package/ui/public/sprites/8-L-1.png +0 -0
- package/ui/public/sprites/8-R-1.png +0 -0
- package/ui/public/sprites/9-D-1.png +0 -0
- package/ui/public/sprites/9-D-2.png +0 -0
- package/ui/public/sprites/9-D-3.png +0 -0
- package/ui/public/sprites/9-L-1.png +0 -0
- package/ui/public/sprites/9-R-1.png +0 -0
- package/ui/public/sprites/ceo-lobster.png +0 -0
- package/ui/public/sw.js +42 -0
- package/ui/public/worktree-favicon-16x16.png +0 -0
- package/ui/public/worktree-favicon-32x32.png +0 -0
- package/ui/public/worktree-favicon.ico +0 -0
- package/ui/public/worktree-favicon.svg +9 -0
- package/ui/src/App.tsx +354 -0
- package/ui/src/adapters/claude-local/config-fields.tsx +138 -0
- package/ui/src/adapters/claude-local/index.ts +13 -0
- package/ui/src/adapters/codex-local/config-fields.tsx +104 -0
- package/ui/src/adapters/codex-local/index.ts +13 -0
- package/ui/src/adapters/cursor/config-fields.tsx +49 -0
- package/ui/src/adapters/cursor/index.ts +13 -0
- package/ui/src/adapters/gemini-local/config-fields.tsx +51 -0
- package/ui/src/adapters/gemini-local/index.ts +13 -0
- package/ui/src/adapters/http/build-config.ts +9 -0
- package/ui/src/adapters/http/config-fields.tsx +38 -0
- package/ui/src/adapters/http/index.ts +12 -0
- package/ui/src/adapters/http/parse-stdout.ts +5 -0
- package/ui/src/adapters/index.ts +9 -0
- package/ui/src/adapters/local-workspace-runtime-fields.tsx +5 -0
- package/ui/src/adapters/openclaw-gateway/config-fields.tsx +237 -0
- package/ui/src/adapters/openclaw-gateway/index.ts +13 -0
- package/ui/src/adapters/opencode-local/config-fields.tsx +72 -0
- package/ui/src/adapters/opencode-local/index.ts +13 -0
- package/ui/src/adapters/pi-local/config-fields.tsx +49 -0
- package/ui/src/adapters/pi-local/index.ts +13 -0
- package/ui/src/adapters/process/build-config.ts +18 -0
- package/ui/src/adapters/process/config-fields.tsx +77 -0
- package/ui/src/adapters/process/index.ts +12 -0
- package/ui/src/adapters/process/parse-stdout.ts +5 -0
- package/ui/src/adapters/registry.ts +34 -0
- package/ui/src/adapters/runtime-json-fields.tsx +122 -0
- package/ui/src/adapters/transcript.test.ts +30 -0
- package/ui/src/adapters/transcript.ts +62 -0
- package/ui/src/adapters/types.ts +34 -0
- package/ui/src/api/access.ts +160 -0
- package/ui/src/api/activity.ts +37 -0
- package/ui/src/api/agents.ts +194 -0
- package/ui/src/api/approvals.ts +25 -0
- package/ui/src/api/assets.ts +30 -0
- package/ui/src/api/auth.ts +74 -0
- package/ui/src/api/budgets.ts +21 -0
- package/ui/src/api/client.ts +50 -0
- package/ui/src/api/companies.ts +59 -0
- package/ui/src/api/companySkills.ts +55 -0
- package/ui/src/api/costs.ts +60 -0
- package/ui/src/api/dashboard.ts +7 -0
- package/ui/src/api/execution-workspaces.ts +27 -0
- package/ui/src/api/goals.ts +12 -0
- package/ui/src/api/health.ts +41 -0
- package/ui/src/api/heartbeats.ts +62 -0
- package/ui/src/api/index.ts +18 -0
- package/ui/src/api/instanceSettings.ts +19 -0
- package/ui/src/api/issues.ts +115 -0
- package/ui/src/api/plugins.ts +424 -0
- package/ui/src/api/projects.ts +34 -0
- package/ui/src/api/routines.ts +59 -0
- package/ui/src/api/secrets.ts +26 -0
- package/ui/src/api/sidebarBadges.ts +7 -0
- package/ui/src/components/AccountingModelCard.tsx +69 -0
- package/ui/src/components/ActiveAgentsPanel.tsx +157 -0
- package/ui/src/components/ActivityCharts.tsx +264 -0
- package/ui/src/components/ActivityRow.tsx +147 -0
- package/ui/src/components/AgentActionButtons.tsx +51 -0
- package/ui/src/components/AgentConfigForm.tsx +1468 -0
- package/ui/src/components/AgentIconPicker.tsx +81 -0
- package/ui/src/components/AgentProperties.tsx +107 -0
- package/ui/src/components/ApprovalCard.tsx +107 -0
- package/ui/src/components/ApprovalPayload.tsx +134 -0
- package/ui/src/components/AsciiArtAnimation.tsx +355 -0
- package/ui/src/components/BillerSpendCard.tsx +146 -0
- package/ui/src/components/BreadcrumbBar.tsx +113 -0
- package/ui/src/components/BudgetIncidentCard.tsx +101 -0
- package/ui/src/components/BudgetPolicyCard.tsx +220 -0
- package/ui/src/components/BudgetSidebarMarker.tsx +13 -0
- package/ui/src/components/ClaudeSubscriptionPanel.tsx +141 -0
- package/ui/src/components/CodexSubscriptionPanel.tsx +158 -0
- package/ui/src/components/CommandPalette.tsx +239 -0
- package/ui/src/components/CommentThread.tsx +503 -0
- package/ui/src/components/CompanyPatternIcon.tsx +212 -0
- package/ui/src/components/CompanyRail.tsx +329 -0
- package/ui/src/components/CompanySwitcher.tsx +81 -0
- package/ui/src/components/CopyText.tsx +56 -0
- package/ui/src/components/DevRestartBanner.tsx +89 -0
- package/ui/src/components/EmptyState.tsx +27 -0
- package/ui/src/components/EntityRow.tsx +69 -0
- package/ui/src/components/FilterBar.tsx +39 -0
- package/ui/src/components/FinanceBillerCard.tsx +45 -0
- package/ui/src/components/FinanceKindCard.tsx +44 -0
- package/ui/src/components/FinanceTimelineCard.tsx +72 -0
- package/ui/src/components/GoalProperties.tsx +165 -0
- package/ui/src/components/GoalTree.tsx +118 -0
- package/ui/src/components/Identity.tsx +39 -0
- package/ui/src/components/InlineEditor.tsx +248 -0
- package/ui/src/components/InlineEntitySelector.tsx +206 -0
- package/ui/src/components/InstanceSidebar.tsx +53 -0
- package/ui/src/components/IssueDocumentsSection.tsx +892 -0
- package/ui/src/components/IssueProperties.tsx +621 -0
- package/ui/src/components/IssueRow.tsx +149 -0
- package/ui/src/components/IssueWorkspaceCard.tsx +404 -0
- package/ui/src/components/IssuesList.tsx +889 -0
- package/ui/src/components/JsonSchemaForm.tsx +1048 -0
- package/ui/src/components/KanbanBoard.tsx +275 -0
- package/ui/src/components/Layout.tsx +441 -0
- package/ui/src/components/LiveRunWidget.tsx +160 -0
- package/ui/src/components/MarkdownBody.test.tsx +50 -0
- package/ui/src/components/MarkdownBody.tsx +152 -0
- package/ui/src/components/MarkdownEditor.tsx +622 -0
- package/ui/src/components/MetricCard.tsx +53 -0
- package/ui/src/components/MobileBottomNav.tsx +123 -0
- package/ui/src/components/NewAgentDialog.tsx +223 -0
- package/ui/src/components/NewGoalDialog.tsx +283 -0
- package/ui/src/components/NewIssueDialog.tsx +1473 -0
- package/ui/src/components/NewProjectDialog.tsx +451 -0
- package/ui/src/components/OnboardingWizard.tsx +1392 -0
- package/ui/src/components/OpenCodeLogoIcon.tsx +22 -0
- package/ui/src/components/PackageFileTree.tsx +318 -0
- package/ui/src/components/PageSkeleton.tsx +180 -0
- package/ui/src/components/PageTabBar.tsx +45 -0
- package/ui/src/components/PathInstructionsModal.tsx +143 -0
- package/ui/src/components/PriorityIcon.tsx +77 -0
- package/ui/src/components/ProjectProperties.tsx +1127 -0
- package/ui/src/components/PropertiesPanel.tsx +29 -0
- package/ui/src/components/ProviderQuotaCard.tsx +417 -0
- package/ui/src/components/QuotaBar.tsx +65 -0
- package/ui/src/components/ReportsToPicker.tsx +127 -0
- package/ui/src/components/ScheduleEditor.tsx +344 -0
- package/ui/src/components/ScrollToBottom.tsx +79 -0
- package/ui/src/components/Sidebar.tsx +130 -0
- package/ui/src/components/SidebarAgents.tsx +146 -0
- package/ui/src/components/SidebarNavItem.tsx +92 -0
- package/ui/src/components/SidebarProjects.tsx +234 -0
- package/ui/src/components/SidebarSection.tsx +17 -0
- package/ui/src/components/StatusBadge.tsx +15 -0
- package/ui/src/components/StatusIcon.tsx +71 -0
- package/ui/src/components/SwipeToArchive.tsx +152 -0
- package/ui/src/components/ToastViewport.tsx +99 -0
- package/ui/src/components/WorktreeBanner.tsx +25 -0
- package/ui/src/components/agent-config-defaults.ts +31 -0
- package/ui/src/components/agent-config-primitives.tsx +476 -0
- package/ui/src/components/transcript/RunTranscriptView.test.tsx +84 -0
- package/ui/src/components/transcript/RunTranscriptView.tsx +1015 -0
- package/ui/src/components/transcript/useLiveRunTranscripts.ts +297 -0
- package/ui/src/components/ui/avatar.tsx +107 -0
- package/ui/src/components/ui/badge.tsx +48 -0
- package/ui/src/components/ui/breadcrumb.tsx +109 -0
- package/ui/src/components/ui/button.tsx +64 -0
- package/ui/src/components/ui/card.tsx +92 -0
- package/ui/src/components/ui/checkbox.tsx +32 -0
- package/ui/src/components/ui/collapsible.tsx +33 -0
- package/ui/src/components/ui/command.tsx +194 -0
- package/ui/src/components/ui/dialog.tsx +156 -0
- package/ui/src/components/ui/dropdown-menu.tsx +257 -0
- package/ui/src/components/ui/input.tsx +21 -0
- package/ui/src/components/ui/label.tsx +22 -0
- package/ui/src/components/ui/popover.tsx +88 -0
- package/ui/src/components/ui/scroll-area.tsx +56 -0
- package/ui/src/components/ui/select.tsx +188 -0
- package/ui/src/components/ui/separator.tsx +28 -0
- package/ui/src/components/ui/sheet.tsx +143 -0
- package/ui/src/components/ui/skeleton.tsx +13 -0
- package/ui/src/components/ui/tabs.tsx +89 -0
- package/ui/src/components/ui/textarea.tsx +18 -0
- package/ui/src/components/ui/tooltip.tsx +57 -0
- package/ui/src/components/visual-office/AgentAvatar.tsx +99 -0
- package/ui/src/components/visual-office/OfficeViewExact.tsx +417 -0
- package/ui/src/components/visual-office/i18n.ts +52 -0
- package/ui/src/components/visual-office/office-view/CliUsagePanel.tsx +240 -0
- package/ui/src/components/visual-office/office-view/VirtualPadOverlay.tsx +104 -0
- package/ui/src/components/visual-office/office-view/buildScene-break-room.ts +248 -0
- package/ui/src/components/visual-office/office-view/buildScene-ceo-hallway.ts +345 -0
- package/ui/src/components/visual-office/office-view/buildScene-department-agent.ts +242 -0
- package/ui/src/components/visual-office/office-view/buildScene-departments.ts +360 -0
- package/ui/src/components/visual-office/office-view/buildScene-final-layers.ts +113 -0
- package/ui/src/components/visual-office/office-view/buildScene-types.ts +91 -0
- package/ui/src/components/visual-office/office-view/buildScene.ts +232 -0
- package/ui/src/components/visual-office/office-view/drawing-core.ts +374 -0
- package/ui/src/components/visual-office/office-view/drawing-furniture-a.ts +338 -0
- package/ui/src/components/visual-office/office-view/drawing-furniture-b.ts +241 -0
- package/ui/src/components/visual-office/office-view/model.ts +301 -0
- package/ui/src/components/visual-office/office-view/officeTicker.ts +455 -0
- package/ui/src/components/visual-office/office-view/officeTickerRoomAndDelivery.ts +133 -0
- package/ui/src/components/visual-office/office-view/themes-locale.ts +460 -0
- package/ui/src/components/visual-office/office-view/useCliUsage.ts +37 -0
- package/ui/src/components/visual-office/office-view/useOfficeDeliveryEffects.ts +465 -0
- package/ui/src/components/visual-office/office-view/useOfficePixiRuntime.ts +282 -0
- package/ui/src/components/visual-office/types.ts +123 -0
- package/ui/src/context/BreadcrumbContext.tsx +44 -0
- package/ui/src/context/CompanyContext.tsx +151 -0
- package/ui/src/context/DialogContext.tsx +135 -0
- package/ui/src/context/LiveUpdatesProvider.test.ts +119 -0
- package/ui/src/context/LiveUpdatesProvider.tsx +760 -0
- package/ui/src/context/PanelContext.tsx +73 -0
- package/ui/src/context/SidebarContext.tsx +43 -0
- package/ui/src/context/ThemeContext.tsx +83 -0
- package/ui/src/context/ToastContext.tsx +172 -0
- package/ui/src/fixtures/runTranscriptFixtures.ts +226 -0
- package/ui/src/hooks/useAgentOrder.ts +105 -0
- package/ui/src/hooks/useAutosaveIndicator.ts +72 -0
- package/ui/src/hooks/useCompanyPageMemory.test.ts +90 -0
- package/ui/src/hooks/useCompanyPageMemory.ts +79 -0
- package/ui/src/hooks/useDateRange.ts +120 -0
- package/ui/src/hooks/useInboxBadge.ts +132 -0
- package/ui/src/hooks/useKeyboardShortcuts.ts +40 -0
- package/ui/src/hooks/useProjectOrder.ts +106 -0
- package/ui/src/index.css +770 -0
- package/ui/src/lib/agent-icons.ts +99 -0
- package/ui/src/lib/agent-order.ts +107 -0
- package/ui/src/lib/agent-skills-state.test.ts +90 -0
- package/ui/src/lib/agent-skills-state.ts +41 -0
- package/ui/src/lib/assignees.test.ts +92 -0
- package/ui/src/lib/assignees.ts +82 -0
- package/ui/src/lib/color-contrast.ts +107 -0
- package/ui/src/lib/company-export-selection.test.ts +41 -0
- package/ui/src/lib/company-export-selection.ts +57 -0
- package/ui/src/lib/company-page-memory.ts +65 -0
- package/ui/src/lib/company-portability-sidebar.test.ts +101 -0
- package/ui/src/lib/company-portability-sidebar.ts +62 -0
- package/ui/src/lib/company-routes.ts +88 -0
- package/ui/src/lib/company-selection.test.ts +34 -0
- package/ui/src/lib/company-selection.ts +18 -0
- package/ui/src/lib/groupBy.ts +11 -0
- package/ui/src/lib/inbox.test.ts +404 -0
- package/ui/src/lib/inbox.ts +292 -0
- package/ui/src/lib/instance-settings.test.ts +26 -0
- package/ui/src/lib/instance-settings.ts +25 -0
- package/ui/src/lib/issueDetailBreadcrumb.ts +24 -0
- package/ui/src/lib/legacy-agent-config.test.ts +40 -0
- package/ui/src/lib/legacy-agent-config.ts +17 -0
- package/ui/src/lib/mention-aware-link-node.test.ts +50 -0
- package/ui/src/lib/mention-aware-link-node.ts +67 -0
- package/ui/src/lib/mention-chips.ts +168 -0
- package/ui/src/lib/mention-deletion.test.ts +87 -0
- package/ui/src/lib/mention-deletion.ts +143 -0
- package/ui/src/lib/model-utils.ts +16 -0
- package/ui/src/lib/onboarding-goal.test.ts +22 -0
- package/ui/src/lib/onboarding-goal.ts +18 -0
- package/ui/src/lib/onboarding-launch.test.ts +131 -0
- package/ui/src/lib/onboarding-launch.ts +54 -0
- package/ui/src/lib/onboarding-route.test.ts +80 -0
- package/ui/src/lib/onboarding-route.ts +51 -0
- package/ui/src/lib/portable-files.ts +42 -0
- package/ui/src/lib/project-order.ts +71 -0
- package/ui/src/lib/queryKeys.ts +140 -0
- package/ui/src/lib/recent-assignees.ts +36 -0
- package/ui/src/lib/router.tsx +76 -0
- package/ui/src/lib/routine-trigger-patch.test.ts +72 -0
- package/ui/src/lib/routine-trigger-patch.ts +31 -0
- package/ui/src/lib/status-colors.ts +108 -0
- package/ui/src/lib/timeAgo.ts +31 -0
- package/ui/src/lib/utils.ts +168 -0
- package/ui/src/lib/worktree-branding.ts +65 -0
- package/ui/src/lib/zip.test.ts +289 -0
- package/ui/src/lib/zip.ts +284 -0
- package/ui/src/main.tsx +67 -0
- package/ui/src/pages/Activity.tsx +141 -0
- package/ui/src/pages/AgentDetail.tsx +4053 -0
- package/ui/src/pages/Agents.tsx +415 -0
- package/ui/src/pages/ApprovalDetail.tsx +369 -0
- package/ui/src/pages/Approvals.tsx +132 -0
- package/ui/src/pages/Auth.tsx +180 -0
- package/ui/src/pages/BoardClaim.tsx +125 -0
- package/ui/src/pages/CliAuth.tsx +184 -0
- package/ui/src/pages/Companies.tsx +297 -0
- package/ui/src/pages/CompanyExport.tsx +1019 -0
- package/ui/src/pages/CompanyImport.tsx +1355 -0
- package/ui/src/pages/CompanySettings.tsx +661 -0
- package/ui/src/pages/CompanySkills.tsx +1171 -0
- package/ui/src/pages/Costs.tsx +1103 -0
- package/ui/src/pages/Dashboard.tsx +388 -0
- package/ui/src/pages/DesignGuide.tsx +1330 -0
- package/ui/src/pages/ExecutionWorkspaceDetail.tsx +82 -0
- package/ui/src/pages/GoalDetail.tsx +197 -0
- package/ui/src/pages/Goals.tsx +63 -0
- package/ui/src/pages/Inbox.tsx +1291 -0
- package/ui/src/pages/InstanceExperimentalSettings.tsx +139 -0
- package/ui/src/pages/InstanceGeneralSettings.tsx +104 -0
- package/ui/src/pages/InstanceSettings.tsx +284 -0
- package/ui/src/pages/InviteLanding.tsx +320 -0
- package/ui/src/pages/IssueDetail.tsx +1201 -0
- package/ui/src/pages/Issues.tsx +116 -0
- package/ui/src/pages/MyIssues.tsx +72 -0
- package/ui/src/pages/NewAgent.tsx +353 -0
- package/ui/src/pages/NotFound.tsx +66 -0
- package/ui/src/pages/Org.tsx +132 -0
- package/ui/src/pages/OrgChart.tsx +447 -0
- package/ui/src/pages/PluginManager.tsx +510 -0
- package/ui/src/pages/PluginPage.tsx +156 -0
- package/ui/src/pages/PluginSettings.tsx +836 -0
- package/ui/src/pages/ProjectDetail.tsx +633 -0
- package/ui/src/pages/Projects.tsx +87 -0
- package/ui/src/pages/RoutineDetail.tsx +1022 -0
- package/ui/src/pages/Routines.tsx +661 -0
- package/ui/src/pages/RunTranscriptUxLab.tsx +334 -0
- package/ui/src/pages/VisualOffice.tsx +243 -0
- package/ui/src/plugins/bridge-init.ts +69 -0
- package/ui/src/plugins/bridge.ts +476 -0
- package/ui/src/plugins/launchers.tsx +834 -0
- package/ui/src/plugins/slots.tsx +855 -0
- package/ui/tsconfig.json +21 -0
- package/ui/vite.config.ts +23 -0
- package/ui/vitest.config.ts +14 -0
- package/vitest.config.ts +11 -0
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
import type { MutableRefObject } from "react";
|
|
2
|
+
import { type Application, Container, Graphics, Text, TextStyle } from "pixi.js";
|
|
3
|
+
import type { Agent, Task } from "../types";
|
|
4
|
+
import type { Delivery, RoomTheme, WallClockVisual } from "./model";
|
|
5
|
+
import { CEO_ZONE_H, HALLWAY_H, TILE } from "./model";
|
|
6
|
+
import { LOCALE_TEXT, type SupportedLocale, pickLocale } from "./themes-locale";
|
|
7
|
+
import {
|
|
8
|
+
blendColor,
|
|
9
|
+
drawAmbientGlow,
|
|
10
|
+
drawBandGradient,
|
|
11
|
+
drawBunting,
|
|
12
|
+
drawPictureFrame,
|
|
13
|
+
drawRoomAtmosphere,
|
|
14
|
+
drawTiledFloor,
|
|
15
|
+
drawWallClock,
|
|
16
|
+
drawWaterCooler,
|
|
17
|
+
} from "./drawing-core";
|
|
18
|
+
import { drawChair, drawPlant } from "./drawing-furniture-a";
|
|
19
|
+
import { formatPeopleCount, formatTaskCount } from "./drawing-furniture-b";
|
|
20
|
+
|
|
21
|
+
interface BuildCeoAndHallwayParams {
|
|
22
|
+
app: Application;
|
|
23
|
+
OFFICE_W: number;
|
|
24
|
+
totalH: number;
|
|
25
|
+
breakRoomY: number;
|
|
26
|
+
isDark: boolean;
|
|
27
|
+
activeLocale: SupportedLocale;
|
|
28
|
+
ceoTheme: RoomTheme;
|
|
29
|
+
activeMeetingTaskId: string | null;
|
|
30
|
+
onOpenActiveMeetingMinutes?: (taskId: string) => void;
|
|
31
|
+
agents: Agent[];
|
|
32
|
+
tasks: Task[];
|
|
33
|
+
deliveriesRef: MutableRefObject<Delivery[]>;
|
|
34
|
+
ceoMeetingSeatsRef: MutableRefObject<Array<{ x: number; y: number }>>;
|
|
35
|
+
wallClocksRef: MutableRefObject<WallClockVisual[]>;
|
|
36
|
+
ceoOfficeRectRef: MutableRefObject<{ x: number; y: number; w: number; h: number } | null>;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function buildCeoAndHallway({
|
|
40
|
+
app,
|
|
41
|
+
OFFICE_W,
|
|
42
|
+
totalH,
|
|
43
|
+
breakRoomY,
|
|
44
|
+
isDark,
|
|
45
|
+
activeLocale,
|
|
46
|
+
ceoTheme,
|
|
47
|
+
activeMeetingTaskId,
|
|
48
|
+
onOpenActiveMeetingMinutes,
|
|
49
|
+
agents,
|
|
50
|
+
tasks,
|
|
51
|
+
deliveriesRef,
|
|
52
|
+
ceoMeetingSeatsRef,
|
|
53
|
+
wallClocksRef,
|
|
54
|
+
ceoOfficeRectRef,
|
|
55
|
+
}: BuildCeoAndHallwayParams): void {
|
|
56
|
+
const bg = new Graphics();
|
|
57
|
+
const bgFill = isDark ? 0x0e0e1c : 0xf5f0e8;
|
|
58
|
+
const bgGradFrom = isDark ? 0x121222 : 0xf8f4ec;
|
|
59
|
+
const bgGradTo = isDark ? 0x0a0a18 : 0xf0ece4;
|
|
60
|
+
const bgStrokeInner = isDark ? 0x2a2a48 : 0xd8cfc0;
|
|
61
|
+
const bgStrokeOuter = isDark ? 0x222240 : 0xe0d8cc;
|
|
62
|
+
const bgDotColor = isDark ? 0x2a2a48 : 0xd0c8b8;
|
|
63
|
+
bg.roundRect(0, 0, OFFICE_W, totalH, 6).fill(bgFill);
|
|
64
|
+
drawBandGradient(bg, 2, 2, OFFICE_W - 4, totalH - 4, bgGradFrom, bgGradTo, 14, 0.82);
|
|
65
|
+
bg.roundRect(2, 2, OFFICE_W - 4, totalH - 4, 5).stroke({ width: 1.5, color: bgStrokeInner, alpha: 0.55 });
|
|
66
|
+
bg.roundRect(0, 0, OFFICE_W, totalH, 6).stroke({ width: 3, color: bgStrokeOuter });
|
|
67
|
+
for (let i = 0; i < 22; i++) {
|
|
68
|
+
const sx = 12 + ((i * 97) % Math.max(24, OFFICE_W - 24));
|
|
69
|
+
const sy = 12 + ((i * 131) % Math.max(24, totalH - 24));
|
|
70
|
+
bg.circle(sx, sy, i % 3 === 0 ? 1.1 : 0.8).fill({ color: bgDotColor, alpha: i % 2 === 0 ? 0.12 : 0.08 });
|
|
71
|
+
}
|
|
72
|
+
app.stage.addChild(bg);
|
|
73
|
+
|
|
74
|
+
const ceoLayer = new Container();
|
|
75
|
+
ceoOfficeRectRef.current = { x: 4, y: 4, w: OFFICE_W - 8, h: CEO_ZONE_H - 4 };
|
|
76
|
+
const ceoFloor = new Graphics();
|
|
77
|
+
drawTiledFloor(ceoFloor, 4, 4, OFFICE_W - 8, CEO_ZONE_H - 4, ceoTheme.floor1, ceoTheme.floor2);
|
|
78
|
+
ceoLayer.addChild(ceoFloor);
|
|
79
|
+
drawRoomAtmosphere(ceoLayer, 4, 4, OFFICE_W - 8, CEO_ZONE_H - 4, ceoTheme.wall, ceoTheme.accent);
|
|
80
|
+
const ceoBorder = new Graphics();
|
|
81
|
+
ceoBorder
|
|
82
|
+
.roundRect(4, 4, OFFICE_W - 8, CEO_ZONE_H - 4, 3)
|
|
83
|
+
.stroke({ width: 2, color: blendColor(ceoTheme.wall, ceoTheme.accent, 0.55) });
|
|
84
|
+
ceoBorder
|
|
85
|
+
.roundRect(3, 3, OFFICE_W - 6, CEO_ZONE_H - 2, 4)
|
|
86
|
+
.stroke({ width: 1, color: blendColor(ceoTheme.accent, 0xffffff, 0.2), alpha: 0.35 });
|
|
87
|
+
ceoLayer.addChild(ceoBorder);
|
|
88
|
+
|
|
89
|
+
const ceoLabel = new Text({
|
|
90
|
+
text: pickLocale(activeLocale, LOCALE_TEXT.ceoOffice),
|
|
91
|
+
style: new TextStyle({
|
|
92
|
+
fontSize: 10,
|
|
93
|
+
fill: 0xffffff,
|
|
94
|
+
fontWeight: "bold",
|
|
95
|
+
fontFamily: "monospace",
|
|
96
|
+
letterSpacing: 2,
|
|
97
|
+
}),
|
|
98
|
+
});
|
|
99
|
+
const ceoLabelBg = new Graphics();
|
|
100
|
+
ceoLabelBg
|
|
101
|
+
.roundRect(10, 6, ceoLabel.width + 8, 14, 3)
|
|
102
|
+
.fill({ color: blendColor(ceoTheme.accent, ceoTheme.wall, 0.35), alpha: 1 });
|
|
103
|
+
ceoLabelBg
|
|
104
|
+
.roundRect(10, 6, ceoLabel.width + 8, 14, 3)
|
|
105
|
+
.stroke({ width: 1, color: blendColor(ceoTheme.accent, 0xffffff, 0.2), alpha: 0.8 });
|
|
106
|
+
ceoLabel.position.set(12, 8);
|
|
107
|
+
ceoLayer.addChild(ceoLabelBg);
|
|
108
|
+
ceoLayer.addChild(ceoLabel);
|
|
109
|
+
drawBunting(
|
|
110
|
+
ceoLayer,
|
|
111
|
+
148,
|
|
112
|
+
11,
|
|
113
|
+
Math.max(120, OFFICE_W - 300),
|
|
114
|
+
blendColor(ceoTheme.accent, 0xffffff, 0.2),
|
|
115
|
+
blendColor(ceoTheme.wall, ceoTheme.accent, 0.45),
|
|
116
|
+
0.7,
|
|
117
|
+
);
|
|
118
|
+
|
|
119
|
+
const cdx = 50;
|
|
120
|
+
const cdy = 28;
|
|
121
|
+
const cdg = new Graphics();
|
|
122
|
+
const deskEdge = isDark ? 0x3a2a18 : 0xb8925c;
|
|
123
|
+
const deskTop = isDark ? 0x4a3828 : 0xd0a870;
|
|
124
|
+
const monitorFrame = isDark ? 0x1a1a2a : 0x2a2a3a;
|
|
125
|
+
const monitorScreen = isDark ? 0x2255aa : 0x4488cc;
|
|
126
|
+
const namePlate = isDark ? 0x5a4820 : 0xe8c060;
|
|
127
|
+
cdg.roundRect(cdx, cdy, 64, 34, 3).fill(deskEdge);
|
|
128
|
+
cdg.roundRect(cdx + 1, cdy + 1, 62, 32, 2).fill(deskTop);
|
|
129
|
+
cdg.roundRect(cdx + 19, cdy + 2, 26, 16, 2).fill(monitorFrame);
|
|
130
|
+
cdg.roundRect(cdx + 20.5, cdy + 3.5, 23, 12, 1).fill(monitorScreen);
|
|
131
|
+
cdg.roundRect(cdx + 22, cdy + 24, 20, 7, 2).fill(namePlate);
|
|
132
|
+
ceoLayer.addChild(cdg);
|
|
133
|
+
const ceoPlateText = new Text({
|
|
134
|
+
text: "CEO",
|
|
135
|
+
style: new TextStyle({ fontSize: 5, fill: 0x000000, fontWeight: "bold", fontFamily: "monospace" }),
|
|
136
|
+
});
|
|
137
|
+
ceoPlateText.anchor.set(0.5, 0.5);
|
|
138
|
+
ceoPlateText.position.set(cdx + 32, cdy + 27.5);
|
|
139
|
+
ceoLayer.addChild(ceoPlateText);
|
|
140
|
+
drawChair(ceoLayer, cdx + 32, cdy + 46, 0xd4a860);
|
|
141
|
+
|
|
142
|
+
const mtW = 220;
|
|
143
|
+
const mtH = 28;
|
|
144
|
+
const mtX = Math.floor((OFFICE_W - mtW) / 2);
|
|
145
|
+
const mtY = 48;
|
|
146
|
+
const mt = new Graphics();
|
|
147
|
+
const tableEdge = isDark ? 0x2a2018 : 0xb89060;
|
|
148
|
+
const tableTop = isDark ? 0x382818 : 0xd0a878;
|
|
149
|
+
const tableInlay = isDark ? 0x4a3828 : 0xf7e4c0;
|
|
150
|
+
mt.roundRect(mtX, mtY, mtW, mtH, 12).fill(tableEdge);
|
|
151
|
+
mt.roundRect(mtX + 3, mtY + 3, mtW - 6, mtH - 6, 10).fill(tableTop);
|
|
152
|
+
mt.roundRect(mtX + 64, mtY + 8, 92, 12, 5).fill({ color: tableInlay, alpha: isDark ? 0.3 : 0.45 });
|
|
153
|
+
if (activeMeetingTaskId && onOpenActiveMeetingMinutes) {
|
|
154
|
+
mt.eventMode = "static";
|
|
155
|
+
mt.cursor = "pointer";
|
|
156
|
+
mt.on("pointerdown", () => {
|
|
157
|
+
if (!activeMeetingTaskId) return;
|
|
158
|
+
onOpenActiveMeetingMinutes(activeMeetingTaskId);
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
ceoLayer.addChild(mt);
|
|
162
|
+
|
|
163
|
+
const meetingSeatX = [mtX + 40, mtX + 110, mtX + 180];
|
|
164
|
+
for (const sx of meetingSeatX) {
|
|
165
|
+
drawChair(ceoLayer, sx, mtY - 4, 0xc4a070);
|
|
166
|
+
drawChair(ceoLayer, sx, mtY + mtH + 10, 0xc4a070);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
const meetingLabel = new Text({
|
|
170
|
+
text: pickLocale(activeLocale, LOCALE_TEXT.collabTable),
|
|
171
|
+
style: new TextStyle({
|
|
172
|
+
fontSize: 7,
|
|
173
|
+
fill: 0x7a5c2a,
|
|
174
|
+
fontWeight: "bold",
|
|
175
|
+
fontFamily: "monospace",
|
|
176
|
+
letterSpacing: 1,
|
|
177
|
+
}),
|
|
178
|
+
});
|
|
179
|
+
meetingLabel.anchor.set(0.5, 0.5);
|
|
180
|
+
meetingLabel.position.set(mtX + mtW / 2, mtY + mtH / 2);
|
|
181
|
+
ceoLayer.addChild(meetingLabel);
|
|
182
|
+
|
|
183
|
+
ceoMeetingSeatsRef.current = [
|
|
184
|
+
{ x: meetingSeatX[0], y: mtY + 2 },
|
|
185
|
+
{ x: meetingSeatX[1], y: mtY + 2 },
|
|
186
|
+
{ x: meetingSeatX[2], y: mtY + 2 },
|
|
187
|
+
{ x: meetingSeatX[0], y: mtY + mtH + 20 },
|
|
188
|
+
{ x: meetingSeatX[1], y: mtY + mtH + 20 },
|
|
189
|
+
{ x: meetingSeatX[2], y: mtY + mtH + 20 },
|
|
190
|
+
];
|
|
191
|
+
|
|
192
|
+
deliveriesRef.current = deliveriesRef.current.filter((delivery) => !delivery.sprite.destroyed);
|
|
193
|
+
for (const delivery of deliveriesRef.current) {
|
|
194
|
+
if (!delivery.holdAtSeat || typeof delivery.meetingSeatIndex !== "number") continue;
|
|
195
|
+
const seat = ceoMeetingSeatsRef.current[delivery.meetingSeatIndex % ceoMeetingSeatsRef.current.length];
|
|
196
|
+
if (!seat) continue;
|
|
197
|
+
delivery.toX = seat.x;
|
|
198
|
+
delivery.toY = seat.y;
|
|
199
|
+
if (delivery.arrived) {
|
|
200
|
+
delivery.sprite.position.set(seat.x, seat.y);
|
|
201
|
+
} else {
|
|
202
|
+
delivery.fromX = delivery.sprite.position.x;
|
|
203
|
+
delivery.fromY = delivery.sprite.position.y;
|
|
204
|
+
delivery.progress = 0;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
drawPictureFrame(ceoLayer, 14, 14);
|
|
209
|
+
wallClocksRef.current.push(drawWallClock(ceoLayer, OFFICE_W - 30, 18));
|
|
210
|
+
|
|
211
|
+
const workingCount = agents.filter((agent) => agent.status === "working").length;
|
|
212
|
+
const doneCount = tasks.filter((task) => task.status === "done").length;
|
|
213
|
+
const inProgress = tasks.filter((task) => task.status === "in_progress").length;
|
|
214
|
+
const stats = [
|
|
215
|
+
{
|
|
216
|
+
icon: "🤖",
|
|
217
|
+
label: pickLocale(activeLocale, LOCALE_TEXT.statsEmployees),
|
|
218
|
+
val: formatPeopleCount(agents.length, activeLocale),
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
icon: "âš¡",
|
|
222
|
+
label: pickLocale(activeLocale, LOCALE_TEXT.statsWorking),
|
|
223
|
+
val: formatPeopleCount(workingCount, activeLocale),
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
icon: "📋",
|
|
227
|
+
label: pickLocale(activeLocale, LOCALE_TEXT.statsProgress),
|
|
228
|
+
val: formatTaskCount(inProgress, activeLocale),
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
icon: "✅",
|
|
232
|
+
label: pickLocale(activeLocale, LOCALE_TEXT.statsDone),
|
|
233
|
+
val: `${doneCount}/${tasks.length}`,
|
|
234
|
+
},
|
|
235
|
+
];
|
|
236
|
+
stats.forEach((stat, index) => {
|
|
237
|
+
const sx = OFFICE_W - 340 + index * 82;
|
|
238
|
+
const sy = 12;
|
|
239
|
+
const statCard = new Graphics();
|
|
240
|
+
statCard.roundRect(sx, sy, 74, 26, 4).fill({ color: 0xfff4d8, alpha: 0.85 });
|
|
241
|
+
statCard.roundRect(sx, sy, 74, 26, 4).stroke({ width: 1, color: 0xe8c870, alpha: 0.5 });
|
|
242
|
+
ceoLayer.addChild(statCard);
|
|
243
|
+
const iconText = new Text({ text: stat.icon, style: new TextStyle({ fontSize: 10 }) });
|
|
244
|
+
iconText.position.set(sx + 4, sy + 4);
|
|
245
|
+
ceoLayer.addChild(iconText);
|
|
246
|
+
ceoLayer.addChild(
|
|
247
|
+
Object.assign(
|
|
248
|
+
new Text({
|
|
249
|
+
text: stat.label,
|
|
250
|
+
style: new TextStyle({ fontSize: 7, fill: 0x8b7040, fontFamily: "monospace" }),
|
|
251
|
+
}),
|
|
252
|
+
{ x: sx + 18, y: sy + 2 },
|
|
253
|
+
),
|
|
254
|
+
);
|
|
255
|
+
ceoLayer.addChild(
|
|
256
|
+
Object.assign(
|
|
257
|
+
new Text({
|
|
258
|
+
text: stat.val,
|
|
259
|
+
style: new TextStyle({ fontSize: 10, fill: 0x5a4020, fontWeight: "bold", fontFamily: "monospace" }),
|
|
260
|
+
}),
|
|
261
|
+
{ x: sx + 18, y: sy + 13 },
|
|
262
|
+
),
|
|
263
|
+
);
|
|
264
|
+
});
|
|
265
|
+
|
|
266
|
+
const hint = new Text({
|
|
267
|
+
text: pickLocale(activeLocale, LOCALE_TEXT.hint),
|
|
268
|
+
style: new TextStyle({
|
|
269
|
+
fontSize: 10,
|
|
270
|
+
fontWeight: "bold",
|
|
271
|
+
fill: 0x8b7040,
|
|
272
|
+
fontFamily: "monospace",
|
|
273
|
+
}),
|
|
274
|
+
});
|
|
275
|
+
hint.anchor.set(1, 1);
|
|
276
|
+
hint.position.set(OFFICE_W - 16, CEO_ZONE_H - 8);
|
|
277
|
+
ceoLayer.addChild(hint);
|
|
278
|
+
if (activeMeetingTaskId) {
|
|
279
|
+
const meetingHint = new Text({
|
|
280
|
+
text: pickLocale(activeLocale, LOCALE_TEXT.meetingTableHint),
|
|
281
|
+
style: new TextStyle({
|
|
282
|
+
fontSize: 12,
|
|
283
|
+
fill: 0x8b6b30,
|
|
284
|
+
fontWeight: "bold",
|
|
285
|
+
fontFamily: "system-ui, sans-serif",
|
|
286
|
+
}),
|
|
287
|
+
});
|
|
288
|
+
meetingHint.anchor.set(1, 1);
|
|
289
|
+
meetingHint.position.set(hint.position.x - hint.width - 18, hint.position.y);
|
|
290
|
+
ceoLayer.addChild(meetingHint);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
drawAmbientGlow(ceoLayer, OFFICE_W / 2, CEO_ZONE_H / 2, OFFICE_W * 0.35, ceoTheme.accent, 0.08);
|
|
294
|
+
drawPlant(ceoLayer, 18, 62, 0);
|
|
295
|
+
drawPlant(ceoLayer, OFFICE_W - 22, 62, 2);
|
|
296
|
+
drawWaterCooler(ceoLayer, 28, 30);
|
|
297
|
+
|
|
298
|
+
ceoLayer.addChild(ceoLabelBg);
|
|
299
|
+
ceoLayer.addChild(ceoLabel);
|
|
300
|
+
app.stage.addChild(ceoLayer);
|
|
301
|
+
|
|
302
|
+
const hallY = CEO_ZONE_H;
|
|
303
|
+
const hallG = new Graphics();
|
|
304
|
+
const hallBase = isDark ? 0x252535 : 0xe8dcc8;
|
|
305
|
+
const hallTile1 = isDark ? 0x2d2d40 : 0xf0e4d0;
|
|
306
|
+
const hallTile2 = isDark ? 0x1f1f30 : 0xe8dcc8;
|
|
307
|
+
const hallDash = isDark ? 0x3a3858 : 0xc8b898;
|
|
308
|
+
const hallTrim = isDark ? 0x3a3858 : 0xd4c4a8;
|
|
309
|
+
const hallGlow = isDark ? 0x3355bb : 0xfff8e0;
|
|
310
|
+
hallG.rect(4, hallY, OFFICE_W - 8, HALLWAY_H).fill(hallBase);
|
|
311
|
+
drawBandGradient(hallG, 4, hallY, OFFICE_W - 8, HALLWAY_H, hallTile1, hallTile2, 5, 0.38);
|
|
312
|
+
for (let dx = 4; dx < OFFICE_W - 4; dx += TILE * 2) {
|
|
313
|
+
hallG.rect(dx, hallY, TILE * 2, HALLWAY_H).fill({ color: hallTile1, alpha: 0.5 });
|
|
314
|
+
hallG.rect(dx + TILE * 2, hallY, TILE * 2, HALLWAY_H).fill({ color: hallTile2, alpha: 0.3 });
|
|
315
|
+
}
|
|
316
|
+
for (let dx = 20; dx < OFFICE_W - 20; dx += 16) {
|
|
317
|
+
hallG.rect(dx, hallY + HALLWAY_H / 2, 6, 1).fill({ color: hallDash, alpha: 0.4 });
|
|
318
|
+
}
|
|
319
|
+
hallG.rect(4, hallY, OFFICE_W - 8, 1.5).fill({ color: hallTrim, alpha: 0.5 });
|
|
320
|
+
hallG.rect(4, hallY + HALLWAY_H - 1.5, OFFICE_W - 8, 1.5).fill({ color: hallTrim, alpha: 0.5 });
|
|
321
|
+
hallG
|
|
322
|
+
.ellipse(OFFICE_W / 2, hallY + HALLWAY_H / 2 + 1, Math.max(120, OFFICE_W * 0.28), 6)
|
|
323
|
+
.fill({ color: hallGlow, alpha: isDark ? 0.06 : 0.08 });
|
|
324
|
+
|
|
325
|
+
const hall2Y = breakRoomY - HALLWAY_H;
|
|
326
|
+
hallG.rect(4, hall2Y, OFFICE_W - 8, HALLWAY_H).fill(hallBase);
|
|
327
|
+
drawBandGradient(hallG, 4, hall2Y, OFFICE_W - 8, HALLWAY_H, hallTile1, hallTile2, 5, 0.38);
|
|
328
|
+
for (let dx = 4; dx < OFFICE_W - 4; dx += TILE * 2) {
|
|
329
|
+
hallG.rect(dx, hall2Y, TILE * 2, HALLWAY_H).fill({ color: hallTile1, alpha: 0.5 });
|
|
330
|
+
hallG.rect(dx + TILE * 2, hall2Y, TILE * 2, HALLWAY_H).fill({ color: hallTile2, alpha: 0.3 });
|
|
331
|
+
}
|
|
332
|
+
for (let dx = 20; dx < OFFICE_W - 20; dx += 16) {
|
|
333
|
+
hallG.rect(dx, hall2Y + HALLWAY_H / 2, 6, 1).fill({ color: hallDash, alpha: 0.4 });
|
|
334
|
+
}
|
|
335
|
+
hallG.rect(4, hall2Y, OFFICE_W - 8, 1.5).fill({ color: hallTrim, alpha: 0.5 });
|
|
336
|
+
hallG.rect(4, hall2Y + HALLWAY_H - 1.5, OFFICE_W - 8, 1.5).fill({ color: hallTrim, alpha: 0.5 });
|
|
337
|
+
hallG
|
|
338
|
+
.ellipse(OFFICE_W / 2, hall2Y + HALLWAY_H / 2 + 1, Math.max(120, OFFICE_W * 0.28), 6)
|
|
339
|
+
.fill({ color: hallGlow, alpha: isDark ? 0.06 : 0.08 });
|
|
340
|
+
|
|
341
|
+
app.stage.addChild(hallG);
|
|
342
|
+
drawPlant(app.stage as Container, 30, hallY + HALLWAY_H - 6, 2);
|
|
343
|
+
drawPlant(app.stage as Container, OFFICE_W - 30, hallY + HALLWAY_H - 6, 1);
|
|
344
|
+
}
|
|
345
|
+
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
import type { MutableRefObject } from "react";
|
|
2
|
+
import { AnimatedSprite, Container, Graphics, Sprite, Text, TextStyle, type Texture } from "pixi.js";
|
|
3
|
+
import type { Agent, SubAgent, Task } from "../types";
|
|
4
|
+
import type { AnimItem, CallbackSnapshot, SubCloneAnimItem } from "./buildScene-types";
|
|
5
|
+
import {
|
|
6
|
+
DESK_W,
|
|
7
|
+
MAX_VISIBLE_SUB_CLONES_PER_AGENT,
|
|
8
|
+
SUB_CLONE_FIREWORK_INTERVAL,
|
|
9
|
+
TARGET_CHAR_H,
|
|
10
|
+
type SubCloneBurstParticle,
|
|
11
|
+
emitSubCloneFireworkBurst,
|
|
12
|
+
emitSubCloneSmokeBurst,
|
|
13
|
+
} from "./model";
|
|
14
|
+
import { hashStr } from "./drawing-core";
|
|
15
|
+
import { drawDesk } from "./drawing-furniture-a";
|
|
16
|
+
|
|
17
|
+
interface RenderDeskAgentAndSubClonesParams {
|
|
18
|
+
room: Container;
|
|
19
|
+
textures: Record<string, Texture>;
|
|
20
|
+
spriteMap: Map<string, number>;
|
|
21
|
+
agent: Agent;
|
|
22
|
+
tasks: Task[];
|
|
23
|
+
subAgents: SubAgent[];
|
|
24
|
+
ax: number;
|
|
25
|
+
deskY: number;
|
|
26
|
+
charFeetY: number;
|
|
27
|
+
isWorking: boolean;
|
|
28
|
+
isOffline: boolean;
|
|
29
|
+
cbRef: MutableRefObject<CallbackSnapshot>;
|
|
30
|
+
animItemsRef: MutableRefObject<AnimItem[]>;
|
|
31
|
+
subCloneAnimItemsRef: MutableRefObject<SubCloneAnimItem[]>;
|
|
32
|
+
subCloneBurstParticlesRef: MutableRefObject<SubCloneBurstParticle[]>;
|
|
33
|
+
addedWorkingSubIds: Set<string>;
|
|
34
|
+
nextSubSnapshot: Map<string, { parentAgentId: string; x: number; y: number }>;
|
|
35
|
+
themeAccent: number;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function renderDeskAgentAndSubClones({
|
|
39
|
+
room,
|
|
40
|
+
textures,
|
|
41
|
+
spriteMap,
|
|
42
|
+
agent,
|
|
43
|
+
tasks,
|
|
44
|
+
subAgents,
|
|
45
|
+
ax,
|
|
46
|
+
deskY,
|
|
47
|
+
charFeetY,
|
|
48
|
+
isWorking,
|
|
49
|
+
isOffline,
|
|
50
|
+
cbRef,
|
|
51
|
+
animItemsRef,
|
|
52
|
+
subCloneAnimItemsRef,
|
|
53
|
+
subCloneBurstParticlesRef,
|
|
54
|
+
addedWorkingSubIds,
|
|
55
|
+
nextSubSnapshot,
|
|
56
|
+
themeAccent,
|
|
57
|
+
}: RenderDeskAgentAndSubClonesParams): void {
|
|
58
|
+
const spriteNum = spriteMap.get(agent.id) ?? (hashStr(agent.id) % 13) + 1;
|
|
59
|
+
const charContainer = new Container();
|
|
60
|
+
charContainer.position.set(ax, charFeetY);
|
|
61
|
+
charContainer.eventMode = "static";
|
|
62
|
+
charContainer.cursor = "pointer";
|
|
63
|
+
charContainer.on("pointerdown", () => cbRef.current.onSelectAgent(agent));
|
|
64
|
+
|
|
65
|
+
const frames: Texture[] = [];
|
|
66
|
+
for (let frame = 1; frame <= 3; frame++) {
|
|
67
|
+
const key = `${spriteNum}-D-${frame}`;
|
|
68
|
+
if (textures[key]) frames.push(textures[key]);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (frames.length > 0) {
|
|
72
|
+
const animSprite = new AnimatedSprite(frames);
|
|
73
|
+
animSprite.anchor.set(0.5, 1);
|
|
74
|
+
const scale = TARGET_CHAR_H / animSprite.texture.height;
|
|
75
|
+
animSprite.scale.set(scale);
|
|
76
|
+
animSprite.gotoAndStop(0);
|
|
77
|
+
if (isOffline) {
|
|
78
|
+
animSprite.alpha = 0.3;
|
|
79
|
+
animSprite.tint = 0x888899;
|
|
80
|
+
}
|
|
81
|
+
charContainer.addChild(animSprite);
|
|
82
|
+
} else {
|
|
83
|
+
const fallback = new Text({ text: agent.avatar_emoji || "🤖", style: new TextStyle({ fontSize: 24 }) });
|
|
84
|
+
fallback.anchor.set(0.5, 1);
|
|
85
|
+
charContainer.addChild(fallback);
|
|
86
|
+
}
|
|
87
|
+
room.addChild(charContainer);
|
|
88
|
+
|
|
89
|
+
const deskG = drawDesk(room, ax - DESK_W / 2, deskY, isWorking);
|
|
90
|
+
|
|
91
|
+
const bedW = TARGET_CHAR_H + 20;
|
|
92
|
+
const bedH = 36;
|
|
93
|
+
const bedX = ax - bedW / 2;
|
|
94
|
+
const bedY = deskY;
|
|
95
|
+
|
|
96
|
+
const bedG = new Graphics();
|
|
97
|
+
bedG.roundRect(bedX, bedY, bedW, bedH, 4).fill(0x5c3d2e);
|
|
98
|
+
bedG.roundRect(bedX + 1, bedY + 1, bedW - 2, bedH - 2, 3).fill(0x8b6347);
|
|
99
|
+
bedG.roundRect(bedX + 3, bedY + 3, bedW - 6, bedH - 6, 2).fill(0xf0e6d3);
|
|
100
|
+
bedG.roundRect(bedX - 2, bedY - 1, 6, bedH + 2, 3).fill(0x4a2e1a);
|
|
101
|
+
bedG.ellipse(bedX + 16, bedY + bedH / 2, 9, 7).fill(0xfff8ee);
|
|
102
|
+
bedG.ellipse(bedX + 16, bedY + bedH / 2, 9, 7).stroke({ width: 0.5, color: 0xd8d0c0 });
|
|
103
|
+
bedG.ellipse(bedX + 16, bedY + bedH / 2, 5, 4).fill({ color: 0xf0e8d8, alpha: 0.6 });
|
|
104
|
+
bedG.visible = false;
|
|
105
|
+
room.addChild(bedG);
|
|
106
|
+
|
|
107
|
+
const blanketG = new Graphics();
|
|
108
|
+
const blanketX = bedX + bedW * 0.35;
|
|
109
|
+
const blanketW = bedW * 0.62;
|
|
110
|
+
blanketG.roundRect(blanketX, bedY + 2, blanketW, bedH - 4, 3).fill(0xc8d8be);
|
|
111
|
+
blanketG.roundRect(blanketX, bedY + 2, blanketW, bedH - 4, 3).stroke({ width: 0.5, color: 0xa8b898 });
|
|
112
|
+
blanketG
|
|
113
|
+
.moveTo(blanketX + 2, bedY + bedH / 2)
|
|
114
|
+
.lineTo(blanketX + blanketW - 4, bedY + bedH / 2)
|
|
115
|
+
.stroke({ width: 0.4, color: 0xb0c0a0, alpha: 0.5 });
|
|
116
|
+
blanketG.visible = false;
|
|
117
|
+
room.addChild(blanketG);
|
|
118
|
+
|
|
119
|
+
const particles = new Container();
|
|
120
|
+
room.addChild(particles);
|
|
121
|
+
animItemsRef.current.push({
|
|
122
|
+
sprite: charContainer,
|
|
123
|
+
status: agent.status,
|
|
124
|
+
baseX: ax,
|
|
125
|
+
baseY: charContainer.position.y,
|
|
126
|
+
particles,
|
|
127
|
+
agentId: agent.id,
|
|
128
|
+
cliProvider: agent.cli_provider,
|
|
129
|
+
deskG,
|
|
130
|
+
bedG,
|
|
131
|
+
blanketG,
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
const activeTask = tasks.find((task) => task.assigned_agent_id === agent.id && task.status === "in_progress");
|
|
135
|
+
if (activeTask) {
|
|
136
|
+
const txt = activeTask.title.length > 16 ? `${activeTask.title.slice(0, 16)}...` : activeTask.title;
|
|
137
|
+
const bubbleText = new Text({
|
|
138
|
+
text: `💬 ${txt}`,
|
|
139
|
+
style: new TextStyle({
|
|
140
|
+
fontSize: 6.5,
|
|
141
|
+
fill: 0x333333,
|
|
142
|
+
fontFamily: "system-ui, sans-serif",
|
|
143
|
+
wordWrap: true,
|
|
144
|
+
wordWrapWidth: 85,
|
|
145
|
+
}),
|
|
146
|
+
});
|
|
147
|
+
bubbleText.anchor.set(0.5, 1);
|
|
148
|
+
const bw = Math.min(bubbleText.width + 8, 100);
|
|
149
|
+
const bh = bubbleText.height + 6;
|
|
150
|
+
const bubbleTop = charFeetY - TARGET_CHAR_H - bh - 6;
|
|
151
|
+
const bubbleG = new Graphics();
|
|
152
|
+
bubbleG.roundRect(ax - bw / 2, bubbleTop, bw, bh, 4).fill(0xffffff);
|
|
153
|
+
bubbleG.roundRect(ax - bw / 2, bubbleTop, bw, bh, 4).stroke({ width: 1.2, color: themeAccent, alpha: 0.4 });
|
|
154
|
+
bubbleG
|
|
155
|
+
.moveTo(ax - 3, bubbleTop + bh)
|
|
156
|
+
.lineTo(ax, bubbleTop + bh + 4)
|
|
157
|
+
.lineTo(ax + 3, bubbleTop + bh)
|
|
158
|
+
.fill(0xffffff);
|
|
159
|
+
room.addChild(bubbleG);
|
|
160
|
+
bubbleText.position.set(ax, bubbleTop + bh - 3);
|
|
161
|
+
room.addChild(bubbleText);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
const workingSubs = subAgents.filter((sub) => sub.parentAgentId === agent.id && sub.status === "working");
|
|
165
|
+
if (isWorking && workingSubs.length > 0) {
|
|
166
|
+
const visibleSubs = workingSubs.slice(0, MAX_VISIBLE_SUB_CLONES_PER_AGENT);
|
|
167
|
+
visibleSubs.forEach((sub, index) => {
|
|
168
|
+
const sx = ax - 14 + index * 12;
|
|
169
|
+
const sy = charFeetY - 3.5 + (index % 2) * 0.9;
|
|
170
|
+
const cloneContainer = new Container();
|
|
171
|
+
cloneContainer.position.set(sx, sy);
|
|
172
|
+
|
|
173
|
+
const aura = new Graphics();
|
|
174
|
+
aura.ellipse(0, 2.0, 8.1, 2.7).fill({ color: 0x1f2937, alpha: 0.12 });
|
|
175
|
+
cloneContainer.addChild(aura);
|
|
176
|
+
|
|
177
|
+
const cloneSpriteNum = (hashStr(`${sub.id}:clone`) % 13) + 1;
|
|
178
|
+
const cloneFrames: Texture[] = [];
|
|
179
|
+
for (let frame = 1; frame <= 3; frame++) {
|
|
180
|
+
const key = `${cloneSpriteNum}-D-${frame}`;
|
|
181
|
+
if (textures[key]) cloneFrames.push(textures[key]);
|
|
182
|
+
}
|
|
183
|
+
const baseTexture = cloneFrames[0];
|
|
184
|
+
if (!baseTexture) return;
|
|
185
|
+
const baseScale = (TARGET_CHAR_H / baseTexture.height) * 0.76;
|
|
186
|
+
|
|
187
|
+
const cloneVisual = cloneFrames.length > 1 ? new AnimatedSprite(cloneFrames) : new Sprite(baseTexture);
|
|
188
|
+
cloneVisual.anchor.set(0.5, 1);
|
|
189
|
+
cloneVisual.scale.set(baseScale);
|
|
190
|
+
cloneVisual.tint = 0xffffff;
|
|
191
|
+
cloneVisual.alpha = 0.97;
|
|
192
|
+
if (cloneVisual instanceof AnimatedSprite) cloneVisual.gotoAndStop((index + 1) % cloneFrames.length);
|
|
193
|
+
cloneContainer.addChild(cloneVisual);
|
|
194
|
+
|
|
195
|
+
const charIdx = room.children.indexOf(charContainer);
|
|
196
|
+
if (charIdx >= 0) room.addChildAt(cloneContainer, charIdx);
|
|
197
|
+
else room.addChild(cloneContainer);
|
|
198
|
+
|
|
199
|
+
nextSubSnapshot.set(sub.id, { parentAgentId: agent.id, x: sx, y: sy });
|
|
200
|
+
if (addedWorkingSubIds.has(sub.id)) {
|
|
201
|
+
emitSubCloneSmokeBurst(room, subCloneBurstParticlesRef.current, sx, sy, "spawn");
|
|
202
|
+
emitSubCloneFireworkBurst(room, subCloneBurstParticlesRef.current, sx, sy - 24);
|
|
203
|
+
addedWorkingSubIds.delete(sub.id);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
subCloneAnimItemsRef.current.push({
|
|
207
|
+
container: cloneContainer,
|
|
208
|
+
aura,
|
|
209
|
+
cloneVisual,
|
|
210
|
+
animated: cloneVisual instanceof AnimatedSprite ? cloneVisual : undefined,
|
|
211
|
+
frameCount: cloneFrames.length,
|
|
212
|
+
baseScale,
|
|
213
|
+
baseX: sx,
|
|
214
|
+
baseY: sy,
|
|
215
|
+
phase: (hashStr(sub.id) % 360) / 57.2958 + index * 0.3,
|
|
216
|
+
fireworkOffset: Math.abs(hashStr(`${sub.id}:firework`)) % SUB_CLONE_FIREWORK_INTERVAL,
|
|
217
|
+
});
|
|
218
|
+
});
|
|
219
|
+
|
|
220
|
+
if (workingSubs.length > MAX_VISIBLE_SUB_CLONES_PER_AGENT) {
|
|
221
|
+
const remain = workingSubs.length - MAX_VISIBLE_SUB_CLONES_PER_AGENT;
|
|
222
|
+
const moreBg = new Graphics();
|
|
223
|
+
moreBg.roundRect(ax + 18, deskY - 18, 18, 10, 2).fill({ color: 0x101722, alpha: 0.82 });
|
|
224
|
+
room.addChild(moreBg);
|
|
225
|
+
const moreTxt = new Text({
|
|
226
|
+
text: `+${remain}`,
|
|
227
|
+
style: new TextStyle({ fontSize: 6.5, fill: 0xe2e8f8, fontWeight: "bold", fontFamily: "monospace" }),
|
|
228
|
+
});
|
|
229
|
+
moreTxt.anchor.set(0.5, 0.5);
|
|
230
|
+
moreTxt.position.set(ax + 27, deskY - 13);
|
|
231
|
+
room.addChild(moreTxt);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
if (isOffline) {
|
|
236
|
+
const zzz = new Text({ text: "💤", style: new TextStyle({ fontSize: 12 }) });
|
|
237
|
+
zzz.anchor.set(0.5, 0.5);
|
|
238
|
+
zzz.position.set(ax + 20, charFeetY - TARGET_CHAR_H / 2);
|
|
239
|
+
room.addChild(zzz);
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|