@aion0/forge 0.5.25 → 0.5.26
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/.forge/memory/graph.json +1 -0
- package/.forge/memory/knowledge.json +18 -0
- package/.forge/memory/meta.json +7 -0
- package/.forge/worktrees/pipeline-0a33c50d/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-0a33c50d/README.md +136 -0
- package/.forge/worktrees/pipeline-0a33c50d/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-0a33c50d/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-0a33c50d/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-0a33c50d/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-0a33c50d/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-0a33c50d/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-0a33c50d/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-0a33c50d/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-0a33c50d/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-0a33c50d/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-0a33c50d/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-0a33c50d/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-0a33c50d/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-0a33c50d/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-0a33c50d/install.sh +29 -0
- package/.forge/worktrees/pipeline-0a33c50d/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/claude-process.ts +352 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/pipeline.ts +1438 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-0a33c50d/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-0a33c50d/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-0a33c50d/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-0a33c50d/package.json +74 -0
- package/.forge/worktrees/pipeline-0a33c50d/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-0a33c50d/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-0a33c50d/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-0a33c50d/publish.sh +133 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-0a33c50d/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-0a33c50d/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-0a33c50d/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-0a33c50d/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-0a33c50d/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-0a33c50d/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-0a33c50d/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-0a33c50d/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-0a33c50d/start.sh +31 -0
- package/.forge/worktrees/pipeline-0a33c50d/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-0a33c50d/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-2ba01c10/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-2ba01c10/README.md +136 -0
- package/.forge/worktrees/pipeline-2ba01c10/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-2ba01c10/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-2ba01c10/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-2ba01c10/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-2ba01c10/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-2ba01c10/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-2ba01c10/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-2ba01c10/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-2ba01c10/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-2ba01c10/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-2ba01c10/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-2ba01c10/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-2ba01c10/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-2ba01c10/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-2ba01c10/install.sh +29 -0
- package/.forge/worktrees/pipeline-2ba01c10/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/claude-process.ts +352 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/pipeline.ts +1438 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-2ba01c10/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-2ba01c10/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-2ba01c10/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-2ba01c10/package.json +74 -0
- package/.forge/worktrees/pipeline-2ba01c10/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-2ba01c10/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-2ba01c10/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-2ba01c10/publish.sh +133 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-2ba01c10/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-2ba01c10/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-2ba01c10/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-2ba01c10/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-2ba01c10/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-2ba01c10/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-2ba01c10/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-2ba01c10/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-2ba01c10/start.sh +31 -0
- package/.forge/worktrees/pipeline-2ba01c10/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-2ba01c10/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-3156a8b3/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-3156a8b3/README.md +136 -0
- package/.forge/worktrees/pipeline-3156a8b3/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-3156a8b3/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-3156a8b3/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-3156a8b3/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-3156a8b3/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-3156a8b3/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-3156a8b3/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-3156a8b3/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-3156a8b3/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-3156a8b3/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-3156a8b3/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-3156a8b3/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-3156a8b3/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-3156a8b3/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-3156a8b3/install.sh +29 -0
- package/.forge/worktrees/pipeline-3156a8b3/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/claude-process.ts +351 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/pipeline.ts +1441 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-3156a8b3/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-3156a8b3/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-3156a8b3/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-3156a8b3/package.json +74 -0
- package/.forge/worktrees/pipeline-3156a8b3/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-3156a8b3/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-3156a8b3/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-3156a8b3/publish.sh +133 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-3156a8b3/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-3156a8b3/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-3156a8b3/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-3156a8b3/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-3156a8b3/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-3156a8b3/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-3156a8b3/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-3156a8b3/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-3156a8b3/start.sh +31 -0
- package/.forge/worktrees/pipeline-3156a8b3/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-3156a8b3/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-316c6574/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-316c6574/README.md +136 -0
- package/.forge/worktrees/pipeline-316c6574/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-316c6574/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-316c6574/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-316c6574/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-316c6574/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-316c6574/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-316c6574/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-316c6574/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-316c6574/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-316c6574/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-316c6574/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-316c6574/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-316c6574/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-316c6574/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-316c6574/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-316c6574/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-316c6574/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-316c6574/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-316c6574/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-316c6574/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-316c6574/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-316c6574/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-316c6574/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-316c6574/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-316c6574/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-316c6574/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-316c6574/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-316c6574/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-316c6574/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-316c6574/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-316c6574/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-316c6574/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-316c6574/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-316c6574/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-316c6574/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-316c6574/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-316c6574/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-316c6574/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-316c6574/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-316c6574/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-316c6574/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-316c6574/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-316c6574/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-316c6574/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-316c6574/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-316c6574/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-316c6574/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-316c6574/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-316c6574/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-316c6574/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-316c6574/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-316c6574/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-316c6574/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-316c6574/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-316c6574/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-316c6574/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-316c6574/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-316c6574/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-316c6574/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-316c6574/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-316c6574/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-316c6574/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-316c6574/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-316c6574/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-316c6574/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-316c6574/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-316c6574/install.sh +29 -0
- package/.forge/worktrees/pipeline-316c6574/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-316c6574/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-316c6574/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-316c6574/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-316c6574/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-316c6574/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-316c6574/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-316c6574/lib/claude-process.ts +361 -0
- package/.forge/worktrees/pipeline-316c6574/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-316c6574/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-316c6574/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-316c6574/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-316c6574/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-316c6574/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-316c6574/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-316c6574/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-316c6574/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-316c6574/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-316c6574/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-316c6574/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-316c6574/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-316c6574/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-316c6574/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-316c6574/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-316c6574/lib/pipeline.ts +1441 -0
- package/.forge/worktrees/pipeline-316c6574/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-316c6574/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-316c6574/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-316c6574/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-316c6574/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-316c6574/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-316c6574/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-316c6574/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-316c6574/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-316c6574/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-316c6574/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-316c6574/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-316c6574/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-316c6574/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-316c6574/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-316c6574/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-316c6574/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-316c6574/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-316c6574/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-316c6574/package.json +74 -0
- package/.forge/worktrees/pipeline-316c6574/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-316c6574/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-316c6574/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-316c6574/publish.sh +133 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-316c6574/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-316c6574/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-316c6574/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-316c6574/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-316c6574/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-316c6574/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-316c6574/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-316c6574/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-316c6574/start.sh +31 -0
- package/.forge/worktrees/pipeline-316c6574/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-316c6574/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-44a94121/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-44a94121/README.md +136 -0
- package/.forge/worktrees/pipeline-44a94121/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-44a94121/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-44a94121/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-44a94121/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-44a94121/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-44a94121/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-44a94121/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-44a94121/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-44a94121/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-44a94121/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-44a94121/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-44a94121/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-44a94121/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-44a94121/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-44a94121/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-44a94121/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-44a94121/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-44a94121/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-44a94121/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-44a94121/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-44a94121/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-44a94121/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-44a94121/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-44a94121/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-44a94121/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-44a94121/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-44a94121/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-44a94121/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-44a94121/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-44a94121/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-44a94121/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-44a94121/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-44a94121/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-44a94121/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-44a94121/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-44a94121/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-44a94121/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-44a94121/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-44a94121/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-44a94121/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-44a94121/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-44a94121/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-44a94121/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-44a94121/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-44a94121/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-44a94121/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-44a94121/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-44a94121/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-44a94121/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-44a94121/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-44a94121/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-44a94121/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-44a94121/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-44a94121/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-44a94121/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-44a94121/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-44a94121/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-44a94121/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-44a94121/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-44a94121/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-44a94121/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-44a94121/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-44a94121/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-44a94121/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-44a94121/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-44a94121/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-44a94121/install.sh +29 -0
- package/.forge/worktrees/pipeline-44a94121/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-44a94121/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-44a94121/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-44a94121/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-44a94121/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-44a94121/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-44a94121/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-44a94121/lib/claude-process.ts +351 -0
- package/.forge/worktrees/pipeline-44a94121/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-44a94121/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-44a94121/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-44a94121/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-44a94121/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-44a94121/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-44a94121/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-44a94121/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-44a94121/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-44a94121/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-44a94121/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-44a94121/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-44a94121/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-44a94121/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-44a94121/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-44a94121/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-44a94121/lib/pipeline.ts +1441 -0
- package/.forge/worktrees/pipeline-44a94121/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-44a94121/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-44a94121/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-44a94121/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-44a94121/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-44a94121/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-44a94121/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-44a94121/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-44a94121/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-44a94121/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-44a94121/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-44a94121/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-44a94121/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-44a94121/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-44a94121/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-44a94121/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-44a94121/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-44a94121/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-44a94121/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-44a94121/package.json +74 -0
- package/.forge/worktrees/pipeline-44a94121/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-44a94121/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-44a94121/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-44a94121/publish.sh +133 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-44a94121/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-44a94121/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-44a94121/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-44a94121/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-44a94121/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-44a94121/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-44a94121/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-44a94121/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-44a94121/start.sh +31 -0
- package/.forge/worktrees/pipeline-44a94121/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-44a94121/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-d1757a50/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-d1757a50/README.md +136 -0
- package/.forge/worktrees/pipeline-d1757a50/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-d1757a50/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-d1757a50/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-d1757a50/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-d1757a50/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-d1757a50/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-d1757a50/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-d1757a50/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-d1757a50/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-d1757a50/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-d1757a50/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-d1757a50/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-d1757a50/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-d1757a50/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-d1757a50/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-d1757a50/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-d1757a50/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-d1757a50/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-d1757a50/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-d1757a50/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-d1757a50/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-d1757a50/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-d1757a50/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-d1757a50/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-d1757a50/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-d1757a50/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-d1757a50/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-d1757a50/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-d1757a50/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-d1757a50/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-d1757a50/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-d1757a50/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-d1757a50/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-d1757a50/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-d1757a50/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-d1757a50/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-d1757a50/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-d1757a50/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-d1757a50/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-d1757a50/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-d1757a50/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-d1757a50/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-d1757a50/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-d1757a50/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-d1757a50/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-d1757a50/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-d1757a50/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-d1757a50/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-d1757a50/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-d1757a50/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-d1757a50/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-d1757a50/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-d1757a50/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-d1757a50/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-d1757a50/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-d1757a50/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-d1757a50/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-d1757a50/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-d1757a50/install.sh +29 -0
- package/.forge/worktrees/pipeline-d1757a50/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/claude-process.ts +361 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/pipeline.ts +1441 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-d1757a50/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-d1757a50/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-d1757a50/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-d1757a50/package.json +74 -0
- package/.forge/worktrees/pipeline-d1757a50/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-d1757a50/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-d1757a50/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-d1757a50/publish.sh +133 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-d1757a50/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-d1757a50/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-d1757a50/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-d1757a50/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-d1757a50/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-d1757a50/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-d1757a50/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-d1757a50/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-d1757a50/start.sh +31 -0
- package/.forge/worktrees/pipeline-d1757a50/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-d1757a50/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-d59c2fe2/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-d59c2fe2/README.md +136 -0
- package/.forge/worktrees/pipeline-d59c2fe2/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-d59c2fe2/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-d59c2fe2/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-d59c2fe2/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-d59c2fe2/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-d59c2fe2/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-d59c2fe2/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-d59c2fe2/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-d59c2fe2/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-d59c2fe2/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-d59c2fe2/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-d59c2fe2/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-d59c2fe2/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-d59c2fe2/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-d59c2fe2/install.sh +29 -0
- package/.forge/worktrees/pipeline-d59c2fe2/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/claude-process.ts +361 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/pipeline.ts +1441 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-d59c2fe2/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-d59c2fe2/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-d59c2fe2/package.json +74 -0
- package/.forge/worktrees/pipeline-d59c2fe2/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-d59c2fe2/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-d59c2fe2/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-d59c2fe2/publish.sh +133 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-d59c2fe2/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-d59c2fe2/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-d59c2fe2/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-d59c2fe2/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-d59c2fe2/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-d59c2fe2/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-d59c2fe2/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-d59c2fe2/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-d59c2fe2/start.sh +31 -0
- package/.forge/worktrees/pipeline-d59c2fe2/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-d59c2fe2/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-d6a6ef23/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-d6a6ef23/README.md +136 -0
- package/.forge/worktrees/pipeline-d6a6ef23/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-d6a6ef23/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-d6a6ef23/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-d6a6ef23/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-d6a6ef23/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-d6a6ef23/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-d6a6ef23/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-d6a6ef23/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-d6a6ef23/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-d6a6ef23/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-d6a6ef23/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-d6a6ef23/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-d6a6ef23/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-d6a6ef23/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-d6a6ef23/install.sh +29 -0
- package/.forge/worktrees/pipeline-d6a6ef23/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/claude-process.ts +352 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/pipeline.ts +1438 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-d6a6ef23/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-d6a6ef23/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-d6a6ef23/package.json +74 -0
- package/.forge/worktrees/pipeline-d6a6ef23/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-d6a6ef23/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-d6a6ef23/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-d6a6ef23/publish.sh +133 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-d6a6ef23/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-d6a6ef23/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-d6a6ef23/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-d6a6ef23/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-d6a6ef23/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-d6a6ef23/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-d6a6ef23/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-d6a6ef23/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-d6a6ef23/start.sh +31 -0
- package/.forge/worktrees/pipeline-d6a6ef23/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-d6a6ef23/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-e7f78b7a/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-e7f78b7a/README.md +136 -0
- package/.forge/worktrees/pipeline-e7f78b7a/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-e7f78b7a/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-e7f78b7a/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-e7f78b7a/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-e7f78b7a/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-e7f78b7a/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-e7f78b7a/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-e7f78b7a/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-e7f78b7a/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-e7f78b7a/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-e7f78b7a/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-e7f78b7a/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-e7f78b7a/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-e7f78b7a/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-e7f78b7a/install.sh +29 -0
- package/.forge/worktrees/pipeline-e7f78b7a/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/claude-process.ts +352 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/pipeline.ts +1441 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-e7f78b7a/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-e7f78b7a/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-e7f78b7a/package.json +74 -0
- package/.forge/worktrees/pipeline-e7f78b7a/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-e7f78b7a/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-e7f78b7a/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-e7f78b7a/publish.sh +133 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-e7f78b7a/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-e7f78b7a/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-e7f78b7a/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-e7f78b7a/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-e7f78b7a/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-e7f78b7a/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-e7f78b7a/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-e7f78b7a/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-e7f78b7a/start.sh +31 -0
- package/.forge/worktrees/pipeline-e7f78b7a/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-e7f78b7a/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-e97c13c7/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-e97c13c7/README.md +136 -0
- package/.forge/worktrees/pipeline-e97c13c7/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-e97c13c7/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-e97c13c7/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-e97c13c7/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-e97c13c7/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-e97c13c7/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-e97c13c7/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-e97c13c7/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-e97c13c7/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-e97c13c7/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-e97c13c7/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-e97c13c7/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-e97c13c7/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-e97c13c7/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-e97c13c7/install.sh +29 -0
- package/.forge/worktrees/pipeline-e97c13c7/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/claude-process.ts +352 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/pipeline.ts +1438 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-e97c13c7/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-e97c13c7/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-e97c13c7/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-e97c13c7/package.json +74 -0
- package/.forge/worktrees/pipeline-e97c13c7/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-e97c13c7/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-e97c13c7/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-e97c13c7/publish.sh +133 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-e97c13c7/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-e97c13c7/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-e97c13c7/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-e97c13c7/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-e97c13c7/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-e97c13c7/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-e97c13c7/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-e97c13c7/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-e97c13c7/start.sh +31 -0
- package/.forge/worktrees/pipeline-e97c13c7/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-e97c13c7/tsconfig.json +42 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/CLAUDE.md +86 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/README.md +136 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/RELEASE_NOTES.md +11 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/agents/route.ts +17 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/auth/[...nextauth]/route.ts +3 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/auth/verify/route.ts +46 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude/[id]/route.ts +31 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude/[id]/stream/route.ts +63 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude/route.ts +28 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/[projectName]/route.ts +37 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/sync/route.ts +17 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-templates/route.ts +145 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/code/route.ts +299 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/delivery/[id]/route.ts +62 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/delivery/route.ts +40 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/detect-cli/route.ts +46 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/docs/route.ts +176 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/docs/sessions/route.ts +54 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/favorites/route.ts +26 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/flows/route.ts +6 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/flows/run/route.ts +19 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/git/route.ts +149 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/help/route.ts +84 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/issue-scanner/route.ts +116 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/logs/route.ts +100 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/mobile-chat/route.ts +115 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/monitor/route.ts +74 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/notifications/route.ts +42 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/notify/test/route.ts +33 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/online/route.ts +40 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/pipelines/[id]/route.ts +41 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/pipelines/route.ts +90 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/plugins/route.ts +75 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/preview/[...path]/route.ts +64 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/preview/route.ts +156 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/project-pipelines/route.ts +91 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/project-sessions/route.ts +61 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/projects/route.ts +26 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/[id]/chat/route.ts +64 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/[id]/messages/route.ts +9 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/[id]/route.ts +17 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/route.ts +20 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/settings/route.ts +64 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/skills/local/route.ts +228 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/skills/route.ts +182 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/smith-templates/route.ts +81 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/status/route.ts +12 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tabs/route.ts +25 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/[id]/route.ts +51 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/[id]/stream/route.ts +77 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/link/route.ts +37 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/route.ts +44 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/session/route.ts +14 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/telegram/route.ts +23 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/templates/route.ts +6 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/terminal-bell/route.ts +35 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/terminal-cwd/route.ts +19 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/terminal-state/route.ts +15 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tunnel/route.ts +26 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/upgrade/route.ts +43 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/usage/route.ts +20 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/version/route.ts +78 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/watchers/route.ts +33 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/agents/route.ts +35 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/memory/route.ts +23 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/smith/route.ts +22 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/stream/route.ts +28 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/route.ts +100 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/global-error.tsx +21 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/globals.css +52 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/icon.ico +0 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/icon.png +0 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/icon.svg +106 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/layout.tsx +17 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/login/LoginForm.tsx +96 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/login/page.tsx +10 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/mobile/page.tsx +9 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/app/page.tsx +21 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/bin/forge-server.mjs +484 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/check-forge-status.sh +71 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/cli/mw.ts +579 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/BrowserPanel.tsx +175 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ChatPanel.tsx +191 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ClaudeTerminal.tsx +267 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/CodeViewer.tsx +787 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ConversationEditor.tsx +411 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ConversationGraphView.tsx +347 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ConversationTerminalView.tsx +303 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/Dashboard.tsx +807 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/DashboardWrapper.tsx +9 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/DeliveryFlowEditor.tsx +491 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/DeliveryList.tsx +230 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/DeliveryWorkspace.tsx +589 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/DocTerminal.tsx +187 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/DocsViewer.tsx +574 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/HelpDialog.tsx +169 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/HelpTerminal.tsx +141 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/InlinePipelineView.tsx +111 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/LogViewer.tsx +194 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/MarkdownContent.tsx +73 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/MobileView.tsx +385 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/MonitorPanel.tsx +122 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/NewSessionModal.tsx +93 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/NewTaskModal.tsx +492 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/PipelineEditor.tsx +570 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/PipelineView.tsx +1018 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/PluginsPanel.tsx +472 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ProjectDetail.tsx +1618 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ProjectList.tsx +108 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/ProjectManager.tsx +401 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/SessionList.tsx +74 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/SessionView.tsx +726 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/SettingsModal.tsx +1647 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/SkillsPanel.tsx +969 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/StatusBar.tsx +99 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/TabBar.tsx +46 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/TaskBoard.tsx +113 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/TaskDetail.tsx +372 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/TerminalLauncher.tsx +398 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/TunnelToggle.tsx +206 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/UsagePanel.tsx +207 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/WebTerminal.tsx +1683 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/WorkspaceTree.tsx +221 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/components/WorkspaceView.tsx +4048 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/dev-test.sh +5 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/docs/Forge_Memory_Layer_Design.docx +0 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/docs/Forge_Strategy_Research_2026.docx +0 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/docs/LOCAL-DEPLOY.md +144 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/docs/roadmap-multi-agent-workflow.md +330 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/forge-logo.png +0 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/forge-logo.svg +106 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/hooks/useSidebarResize.ts +52 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/install.sh +29 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/instrumentation.ts +35 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/claude-adapter.ts +104 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/generic-adapter.ts +64 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/index.ts +245 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/types.ts +70 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/artifacts.ts +106 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/auth.ts +62 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/docker.yaml +70 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/http.yaml +66 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/jenkins.yaml +92 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/llm-vision.yaml +85 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/playwright.yaml +111 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/shell-command.yaml +60 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/slack.yaml +48 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/webhook.yaml +56 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/claude-process.ts +352 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/claude-sessions.ts +266 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/claude-templates.ts +227 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/cloudflared.ts +424 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/crypto.ts +67 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/delivery.ts +787 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/dirs.ts +99 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/flows.ts +86 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-mcp-server.ts +717 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-inbox.md +38 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-send.md +47 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-status.md +32 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-workspace-sync.md +37 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/00-overview.md +40 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/01-settings.md +194 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/02-telegram.md +41 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/03-tunnel.md +31 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/04-tasks.md +52 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/05-pipelines.md +460 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/06-skills.md +43 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/07-projects.md +73 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/08-rules.md +53 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/09-issue-autofix.md +55 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/10-troubleshooting.md +89 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/11-workspace.md +810 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/CLAUDE.md +62 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/init.ts +266 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/issue-scanner.ts +298 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/logger.ts +79 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/notifications.ts +75 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/notify.ts +108 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/password.ts +97 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/pipeline-scheduler.ts +373 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/pipeline.ts +1441 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/plugins/executor.ts +347 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/plugins/registry.ts +228 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/plugins/types.ts +103 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/project-sessions.ts +53 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/projects.ts +86 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/session-manager.ts +156 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/session-utils.ts +53 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/session-watcher.ts +345 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/settings.ts +195 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/skills.ts +458 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/task-manager.ts +949 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/telegram-bot.ts +1477 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/telegram-standalone.ts +83 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/terminal-server.ts +70 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/terminal-standalone.ts +421 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/usage-scanner.ts +249 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/__tests__/state-machine.test.ts +388 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/__tests__/workspace.test.ts +311 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/agent-bus.ts +416 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/agent-worker.ts +655 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/backends/api-backend.ts +262 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/backends/cli-backend.ts +491 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/index.ts +82 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/manager.ts +136 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/orchestrator.ts +3400 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/persistence.ts +309 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/presets.ts +649 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/requests.ts +287 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/session-monitor.ts +240 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/skill-installer.ts +275 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/smith-memory.ts +498 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/types.ts +241 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/watch-manager.ts +560 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace-standalone.ts +911 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/middleware.ts +51 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/next.config.ts +26 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/package.json +74 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/pnpm-lock.yaml +3719 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/pnpm-workspace.yaml +1 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/postcss.config.mjs +7 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/publish.sh +133 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/README.md +66 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/results/.gitignore +2 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/run.ts +635 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/01-text-utils/task.md +26 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/02-pagination/setup.sh +19 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/02-pagination/task.md +48 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/02-pagination/validator.sh +69 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/03-bug-fix/task.md +30 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/scripts/verify-usage.ts +178 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/src/config/index.ts +129 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/src/core/db/database.ts +259 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/src/core/memory/strategy.ts +32 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/src/core/providers/chat.ts +65 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/src/core/providers/registry.ts +60 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/src/core/session/manager.ts +190 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/src/types/index.ts +129 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/start.sh +31 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/templates/smith-lead.json +45 -0
- package/.forge/worktrees/pipeline-ecd7cb0f/tsconfig.json +42 -0
- package/RELEASE_NOTES.md +30 -5
- package/app/api/workspace/[id]/stream/route.ts +3 -0
- package/app/api/workspace/route.ts +20 -41
- package/app/mobile/page.tsx +2 -1
- package/app/page.tsx +2 -1
- package/components/WebTerminal.tsx +27 -1
- package/lib/claude-process.ts +14 -5
- package/lib/forge-mcp-server.ts +20 -5
- package/lib/help-docs/05-pipelines.md +44 -2
- package/lib/pipeline.ts +181 -24
- package/lib/task-manager.ts +5 -3
- package/lib/terminal-standalone.ts +2 -2
- package/lib/workspace/index.ts +3 -1
- package/lib/workspace/manager.ts +1 -1
- package/lib/workspace/orchestrator.ts +23 -8
- package/lib/workspace-standalone.ts +67 -0
- package/middleware.ts +2 -2
- package/next-env.d.ts +1 -1
- package/package.json +1 -1
- package/start.sh +1 -0
|
@@ -0,0 +1,3719 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@ai-sdk/anthropic':
|
|
12
|
+
specifier: ^3.0.58
|
|
13
|
+
version: 3.0.58(zod@4.3.6)
|
|
14
|
+
'@ai-sdk/google':
|
|
15
|
+
specifier: ^3.0.43
|
|
16
|
+
version: 3.0.43(zod@4.3.6)
|
|
17
|
+
'@ai-sdk/openai':
|
|
18
|
+
specifier: ^3.0.41
|
|
19
|
+
version: 3.0.41(zod@4.3.6)
|
|
20
|
+
'@auth/core':
|
|
21
|
+
specifier: ^0.34.3
|
|
22
|
+
version: 0.34.3
|
|
23
|
+
'@modelcontextprotocol/sdk':
|
|
24
|
+
specifier: ^1.28.0
|
|
25
|
+
version: 1.28.0(zod@4.3.6)
|
|
26
|
+
'@xterm/addon-fit':
|
|
27
|
+
specifier: ^0.11.0
|
|
28
|
+
version: 0.11.0
|
|
29
|
+
'@xterm/addon-search':
|
|
30
|
+
specifier: ^0.16.0
|
|
31
|
+
version: 0.16.0
|
|
32
|
+
'@xterm/addon-unicode11':
|
|
33
|
+
specifier: ^0.9.0
|
|
34
|
+
version: 0.9.0
|
|
35
|
+
'@xterm/addon-webgl':
|
|
36
|
+
specifier: ^0.19.0
|
|
37
|
+
version: 0.19.0
|
|
38
|
+
'@xterm/xterm':
|
|
39
|
+
specifier: ^6.0.0
|
|
40
|
+
version: 6.0.0
|
|
41
|
+
'@xyflow/react':
|
|
42
|
+
specifier: ^12.10.1
|
|
43
|
+
version: 12.10.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
44
|
+
ai:
|
|
45
|
+
specifier: ^6.0.116
|
|
46
|
+
version: 6.0.116(zod@4.3.6)
|
|
47
|
+
better-sqlite3:
|
|
48
|
+
specifier: ^12.6.2
|
|
49
|
+
version: 12.6.2
|
|
50
|
+
next:
|
|
51
|
+
specifier: ^16.2.1
|
|
52
|
+
version: 16.2.1(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
53
|
+
next-auth:
|
|
54
|
+
specifier: 5.0.0-beta.30
|
|
55
|
+
version: 5.0.0-beta.30(next@16.2.1(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)
|
|
56
|
+
node-pty:
|
|
57
|
+
specifier: 1.0.0
|
|
58
|
+
version: 1.0.0
|
|
59
|
+
react:
|
|
60
|
+
specifier: ^19.2.4
|
|
61
|
+
version: 19.2.4
|
|
62
|
+
react-dom:
|
|
63
|
+
specifier: ^19.2.4
|
|
64
|
+
version: 19.2.4(react@19.2.4)
|
|
65
|
+
react-markdown:
|
|
66
|
+
specifier: ^10.1.0
|
|
67
|
+
version: 10.1.0(@types/react@19.2.14)(react@19.2.4)
|
|
68
|
+
remark-gfm:
|
|
69
|
+
specifier: ^4.0.1
|
|
70
|
+
version: 4.0.1
|
|
71
|
+
ws:
|
|
72
|
+
specifier: ^8.19.0
|
|
73
|
+
version: 8.19.0
|
|
74
|
+
yaml:
|
|
75
|
+
specifier: ^2.8.2
|
|
76
|
+
version: 2.8.2
|
|
77
|
+
zod:
|
|
78
|
+
specifier: ^4.3.6
|
|
79
|
+
version: 4.3.6
|
|
80
|
+
devDependencies:
|
|
81
|
+
'@tailwindcss/postcss':
|
|
82
|
+
specifier: ^4.2.1
|
|
83
|
+
version: 4.2.1
|
|
84
|
+
'@types/better-sqlite3':
|
|
85
|
+
specifier: ^7.6.13
|
|
86
|
+
version: 7.6.13
|
|
87
|
+
'@types/node':
|
|
88
|
+
specifier: ^25.4.0
|
|
89
|
+
version: 25.4.0
|
|
90
|
+
'@types/react':
|
|
91
|
+
specifier: ^19.2.14
|
|
92
|
+
version: 19.2.14
|
|
93
|
+
'@types/react-dom':
|
|
94
|
+
specifier: ^19.2.3
|
|
95
|
+
version: 19.2.3(@types/react@19.2.14)
|
|
96
|
+
'@types/ws':
|
|
97
|
+
specifier: ^8.18.1
|
|
98
|
+
version: 8.18.1
|
|
99
|
+
postcss:
|
|
100
|
+
specifier: ^8.5.8
|
|
101
|
+
version: 8.5.8
|
|
102
|
+
tailwindcss:
|
|
103
|
+
specifier: ^4.2.1
|
|
104
|
+
version: 4.2.1
|
|
105
|
+
tsx:
|
|
106
|
+
specifier: ^4.21.0
|
|
107
|
+
version: 4.21.0
|
|
108
|
+
typescript:
|
|
109
|
+
specifier: ^5.9.3
|
|
110
|
+
version: 5.9.3
|
|
111
|
+
|
|
112
|
+
packages:
|
|
113
|
+
|
|
114
|
+
'@ai-sdk/anthropic@3.0.58':
|
|
115
|
+
resolution: {integrity: sha512-/53SACgmVukO4bkms4dpxpRlYhW8Ct6QZRe6sj1Pi5H00hYhxIrqfiLbZBGxkdRvjsBQeP/4TVGsXgH5rQeb8Q==}
|
|
116
|
+
engines: {node: '>=18'}
|
|
117
|
+
peerDependencies:
|
|
118
|
+
zod: ^3.25.76 || ^4.1.8
|
|
119
|
+
|
|
120
|
+
'@ai-sdk/gateway@3.0.66':
|
|
121
|
+
resolution: {integrity: sha512-SIQ0YY0iMuv+07HLsZ+bB990zUJ6S4ujORAh+Jv1V2KGNn73qQKnGO0JBk+w+Res8YqOFSycwDoWcFlQrVxS4A==}
|
|
122
|
+
engines: {node: '>=18'}
|
|
123
|
+
peerDependencies:
|
|
124
|
+
zod: ^3.25.76 || ^4.1.8
|
|
125
|
+
|
|
126
|
+
'@ai-sdk/google@3.0.43':
|
|
127
|
+
resolution: {integrity: sha512-NGCgP5g8HBxrNdxvF8Dhww+UKfqAkZAmyYBvbu9YLoBkzAmGKDBGhVptN/oXPB5Vm0jggMdoLycZ8JReQM8Zqg==}
|
|
128
|
+
engines: {node: '>=18'}
|
|
129
|
+
peerDependencies:
|
|
130
|
+
zod: ^3.25.76 || ^4.1.8
|
|
131
|
+
|
|
132
|
+
'@ai-sdk/openai@3.0.41':
|
|
133
|
+
resolution: {integrity: sha512-IZ42A+FO+vuEQCVNqlnAPYQnnUpUfdJIwn1BEDOBywiEHa23fw7PahxVtlX9zm3/zMvTW4JKPzWyvAgDu+SQ2A==}
|
|
134
|
+
engines: {node: '>=18'}
|
|
135
|
+
peerDependencies:
|
|
136
|
+
zod: ^3.25.76 || ^4.1.8
|
|
137
|
+
|
|
138
|
+
'@ai-sdk/provider-utils@4.0.19':
|
|
139
|
+
resolution: {integrity: sha512-3eG55CrSWCu2SXlqq2QCsFjo3+E7+Gmg7i/oRVoSZzIodTuDSfLb3MRje67xE9RFea73Zao7Lm4mADIfUETKGg==}
|
|
140
|
+
engines: {node: '>=18'}
|
|
141
|
+
peerDependencies:
|
|
142
|
+
zod: ^3.25.76 || ^4.1.8
|
|
143
|
+
|
|
144
|
+
'@ai-sdk/provider@3.0.8':
|
|
145
|
+
resolution: {integrity: sha512-oGMAgGoQdBXbZqNG0Ze56CHjDZ1IDYOwGYxYjO5KLSlz5HiNQ9udIXsPZ61VWaHGZ5XW/jyjmr6t2xz2jGVwbQ==}
|
|
146
|
+
engines: {node: '>=18'}
|
|
147
|
+
|
|
148
|
+
'@alloc/quick-lru@5.2.0':
|
|
149
|
+
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
150
|
+
engines: {node: '>=10'}
|
|
151
|
+
|
|
152
|
+
'@auth/core@0.34.3':
|
|
153
|
+
resolution: {integrity: sha512-jMjY/S0doZnWYNV90x0jmU3B+UcrsfGYnukxYrRbj0CVvGI/MX3JbHsxSrx2d4mbnXaUsqJmAcDfoQWA6r0lOw==}
|
|
154
|
+
peerDependencies:
|
|
155
|
+
'@simplewebauthn/browser': ^9.0.1
|
|
156
|
+
'@simplewebauthn/server': ^9.0.2
|
|
157
|
+
nodemailer: ^7
|
|
158
|
+
peerDependenciesMeta:
|
|
159
|
+
'@simplewebauthn/browser':
|
|
160
|
+
optional: true
|
|
161
|
+
'@simplewebauthn/server':
|
|
162
|
+
optional: true
|
|
163
|
+
nodemailer:
|
|
164
|
+
optional: true
|
|
165
|
+
|
|
166
|
+
'@auth/core@0.41.0':
|
|
167
|
+
resolution: {integrity: sha512-Wd7mHPQ/8zy6Qj7f4T46vg3aoor8fskJm6g2Zyj064oQ3+p0xNZXAV60ww0hY+MbTesfu29kK14Zk5d5JTazXQ==}
|
|
168
|
+
peerDependencies:
|
|
169
|
+
'@simplewebauthn/browser': ^9.0.1
|
|
170
|
+
'@simplewebauthn/server': ^9.0.2
|
|
171
|
+
nodemailer: ^6.8.0
|
|
172
|
+
peerDependenciesMeta:
|
|
173
|
+
'@simplewebauthn/browser':
|
|
174
|
+
optional: true
|
|
175
|
+
'@simplewebauthn/server':
|
|
176
|
+
optional: true
|
|
177
|
+
nodemailer:
|
|
178
|
+
optional: true
|
|
179
|
+
|
|
180
|
+
'@emnapi/runtime@1.8.1':
|
|
181
|
+
resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
|
|
182
|
+
|
|
183
|
+
'@esbuild/aix-ppc64@0.27.3':
|
|
184
|
+
resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
|
|
185
|
+
engines: {node: '>=18'}
|
|
186
|
+
cpu: [ppc64]
|
|
187
|
+
os: [aix]
|
|
188
|
+
|
|
189
|
+
'@esbuild/android-arm64@0.27.3':
|
|
190
|
+
resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
|
|
191
|
+
engines: {node: '>=18'}
|
|
192
|
+
cpu: [arm64]
|
|
193
|
+
os: [android]
|
|
194
|
+
|
|
195
|
+
'@esbuild/android-arm@0.27.3':
|
|
196
|
+
resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
|
|
197
|
+
engines: {node: '>=18'}
|
|
198
|
+
cpu: [arm]
|
|
199
|
+
os: [android]
|
|
200
|
+
|
|
201
|
+
'@esbuild/android-x64@0.27.3':
|
|
202
|
+
resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
|
|
203
|
+
engines: {node: '>=18'}
|
|
204
|
+
cpu: [x64]
|
|
205
|
+
os: [android]
|
|
206
|
+
|
|
207
|
+
'@esbuild/darwin-arm64@0.27.3':
|
|
208
|
+
resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
|
|
209
|
+
engines: {node: '>=18'}
|
|
210
|
+
cpu: [arm64]
|
|
211
|
+
os: [darwin]
|
|
212
|
+
|
|
213
|
+
'@esbuild/darwin-x64@0.27.3':
|
|
214
|
+
resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
|
|
215
|
+
engines: {node: '>=18'}
|
|
216
|
+
cpu: [x64]
|
|
217
|
+
os: [darwin]
|
|
218
|
+
|
|
219
|
+
'@esbuild/freebsd-arm64@0.27.3':
|
|
220
|
+
resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
|
|
221
|
+
engines: {node: '>=18'}
|
|
222
|
+
cpu: [arm64]
|
|
223
|
+
os: [freebsd]
|
|
224
|
+
|
|
225
|
+
'@esbuild/freebsd-x64@0.27.3':
|
|
226
|
+
resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
|
|
227
|
+
engines: {node: '>=18'}
|
|
228
|
+
cpu: [x64]
|
|
229
|
+
os: [freebsd]
|
|
230
|
+
|
|
231
|
+
'@esbuild/linux-arm64@0.27.3':
|
|
232
|
+
resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
|
|
233
|
+
engines: {node: '>=18'}
|
|
234
|
+
cpu: [arm64]
|
|
235
|
+
os: [linux]
|
|
236
|
+
|
|
237
|
+
'@esbuild/linux-arm@0.27.3':
|
|
238
|
+
resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
|
|
239
|
+
engines: {node: '>=18'}
|
|
240
|
+
cpu: [arm]
|
|
241
|
+
os: [linux]
|
|
242
|
+
|
|
243
|
+
'@esbuild/linux-ia32@0.27.3':
|
|
244
|
+
resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
|
|
245
|
+
engines: {node: '>=18'}
|
|
246
|
+
cpu: [ia32]
|
|
247
|
+
os: [linux]
|
|
248
|
+
|
|
249
|
+
'@esbuild/linux-loong64@0.27.3':
|
|
250
|
+
resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
|
|
251
|
+
engines: {node: '>=18'}
|
|
252
|
+
cpu: [loong64]
|
|
253
|
+
os: [linux]
|
|
254
|
+
|
|
255
|
+
'@esbuild/linux-mips64el@0.27.3':
|
|
256
|
+
resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
|
|
257
|
+
engines: {node: '>=18'}
|
|
258
|
+
cpu: [mips64el]
|
|
259
|
+
os: [linux]
|
|
260
|
+
|
|
261
|
+
'@esbuild/linux-ppc64@0.27.3':
|
|
262
|
+
resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
|
|
263
|
+
engines: {node: '>=18'}
|
|
264
|
+
cpu: [ppc64]
|
|
265
|
+
os: [linux]
|
|
266
|
+
|
|
267
|
+
'@esbuild/linux-riscv64@0.27.3':
|
|
268
|
+
resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
|
|
269
|
+
engines: {node: '>=18'}
|
|
270
|
+
cpu: [riscv64]
|
|
271
|
+
os: [linux]
|
|
272
|
+
|
|
273
|
+
'@esbuild/linux-s390x@0.27.3':
|
|
274
|
+
resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
|
|
275
|
+
engines: {node: '>=18'}
|
|
276
|
+
cpu: [s390x]
|
|
277
|
+
os: [linux]
|
|
278
|
+
|
|
279
|
+
'@esbuild/linux-x64@0.27.3':
|
|
280
|
+
resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
|
|
281
|
+
engines: {node: '>=18'}
|
|
282
|
+
cpu: [x64]
|
|
283
|
+
os: [linux]
|
|
284
|
+
|
|
285
|
+
'@esbuild/netbsd-arm64@0.27.3':
|
|
286
|
+
resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
|
|
287
|
+
engines: {node: '>=18'}
|
|
288
|
+
cpu: [arm64]
|
|
289
|
+
os: [netbsd]
|
|
290
|
+
|
|
291
|
+
'@esbuild/netbsd-x64@0.27.3':
|
|
292
|
+
resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
|
|
293
|
+
engines: {node: '>=18'}
|
|
294
|
+
cpu: [x64]
|
|
295
|
+
os: [netbsd]
|
|
296
|
+
|
|
297
|
+
'@esbuild/openbsd-arm64@0.27.3':
|
|
298
|
+
resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
|
|
299
|
+
engines: {node: '>=18'}
|
|
300
|
+
cpu: [arm64]
|
|
301
|
+
os: [openbsd]
|
|
302
|
+
|
|
303
|
+
'@esbuild/openbsd-x64@0.27.3':
|
|
304
|
+
resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
|
|
305
|
+
engines: {node: '>=18'}
|
|
306
|
+
cpu: [x64]
|
|
307
|
+
os: [openbsd]
|
|
308
|
+
|
|
309
|
+
'@esbuild/openharmony-arm64@0.27.3':
|
|
310
|
+
resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
|
|
311
|
+
engines: {node: '>=18'}
|
|
312
|
+
cpu: [arm64]
|
|
313
|
+
os: [openharmony]
|
|
314
|
+
|
|
315
|
+
'@esbuild/sunos-x64@0.27.3':
|
|
316
|
+
resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
|
|
317
|
+
engines: {node: '>=18'}
|
|
318
|
+
cpu: [x64]
|
|
319
|
+
os: [sunos]
|
|
320
|
+
|
|
321
|
+
'@esbuild/win32-arm64@0.27.3':
|
|
322
|
+
resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
|
|
323
|
+
engines: {node: '>=18'}
|
|
324
|
+
cpu: [arm64]
|
|
325
|
+
os: [win32]
|
|
326
|
+
|
|
327
|
+
'@esbuild/win32-ia32@0.27.3':
|
|
328
|
+
resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
|
|
329
|
+
engines: {node: '>=18'}
|
|
330
|
+
cpu: [ia32]
|
|
331
|
+
os: [win32]
|
|
332
|
+
|
|
333
|
+
'@esbuild/win32-x64@0.27.3':
|
|
334
|
+
resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
|
|
335
|
+
engines: {node: '>=18'}
|
|
336
|
+
cpu: [x64]
|
|
337
|
+
os: [win32]
|
|
338
|
+
|
|
339
|
+
'@hono/node-server@1.19.12':
|
|
340
|
+
resolution: {integrity: sha512-txsUW4SQ1iilgE0l9/e9VQWmELXifEFvmdA1j6WFh/aFPj99hIntrSsq/if0UWyGVkmrRPKA1wCeP+UCr1B9Uw==}
|
|
341
|
+
engines: {node: '>=18.14.1'}
|
|
342
|
+
peerDependencies:
|
|
343
|
+
hono: ^4
|
|
344
|
+
|
|
345
|
+
'@img/colour@1.1.0':
|
|
346
|
+
resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
|
|
347
|
+
engines: {node: '>=18'}
|
|
348
|
+
|
|
349
|
+
'@img/sharp-darwin-arm64@0.34.5':
|
|
350
|
+
resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
|
|
351
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
352
|
+
cpu: [arm64]
|
|
353
|
+
os: [darwin]
|
|
354
|
+
|
|
355
|
+
'@img/sharp-darwin-x64@0.34.5':
|
|
356
|
+
resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
|
|
357
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
358
|
+
cpu: [x64]
|
|
359
|
+
os: [darwin]
|
|
360
|
+
|
|
361
|
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
362
|
+
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
|
|
363
|
+
cpu: [arm64]
|
|
364
|
+
os: [darwin]
|
|
365
|
+
|
|
366
|
+
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
367
|
+
resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
|
|
368
|
+
cpu: [x64]
|
|
369
|
+
os: [darwin]
|
|
370
|
+
|
|
371
|
+
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
372
|
+
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
373
|
+
cpu: [arm64]
|
|
374
|
+
os: [linux]
|
|
375
|
+
libc: [glibc]
|
|
376
|
+
|
|
377
|
+
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
378
|
+
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
379
|
+
cpu: [arm]
|
|
380
|
+
os: [linux]
|
|
381
|
+
libc: [glibc]
|
|
382
|
+
|
|
383
|
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
384
|
+
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
385
|
+
cpu: [ppc64]
|
|
386
|
+
os: [linux]
|
|
387
|
+
libc: [glibc]
|
|
388
|
+
|
|
389
|
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
390
|
+
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
391
|
+
cpu: [riscv64]
|
|
392
|
+
os: [linux]
|
|
393
|
+
libc: [glibc]
|
|
394
|
+
|
|
395
|
+
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
396
|
+
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
397
|
+
cpu: [s390x]
|
|
398
|
+
os: [linux]
|
|
399
|
+
libc: [glibc]
|
|
400
|
+
|
|
401
|
+
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
402
|
+
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
403
|
+
cpu: [x64]
|
|
404
|
+
os: [linux]
|
|
405
|
+
libc: [glibc]
|
|
406
|
+
|
|
407
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
408
|
+
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
409
|
+
cpu: [arm64]
|
|
410
|
+
os: [linux]
|
|
411
|
+
libc: [musl]
|
|
412
|
+
|
|
413
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
414
|
+
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
415
|
+
cpu: [x64]
|
|
416
|
+
os: [linux]
|
|
417
|
+
libc: [musl]
|
|
418
|
+
|
|
419
|
+
'@img/sharp-linux-arm64@0.34.5':
|
|
420
|
+
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
421
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
422
|
+
cpu: [arm64]
|
|
423
|
+
os: [linux]
|
|
424
|
+
libc: [glibc]
|
|
425
|
+
|
|
426
|
+
'@img/sharp-linux-arm@0.34.5':
|
|
427
|
+
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
428
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
429
|
+
cpu: [arm]
|
|
430
|
+
os: [linux]
|
|
431
|
+
libc: [glibc]
|
|
432
|
+
|
|
433
|
+
'@img/sharp-linux-ppc64@0.34.5':
|
|
434
|
+
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
435
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
436
|
+
cpu: [ppc64]
|
|
437
|
+
os: [linux]
|
|
438
|
+
libc: [glibc]
|
|
439
|
+
|
|
440
|
+
'@img/sharp-linux-riscv64@0.34.5':
|
|
441
|
+
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
442
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
443
|
+
cpu: [riscv64]
|
|
444
|
+
os: [linux]
|
|
445
|
+
libc: [glibc]
|
|
446
|
+
|
|
447
|
+
'@img/sharp-linux-s390x@0.34.5':
|
|
448
|
+
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
449
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
450
|
+
cpu: [s390x]
|
|
451
|
+
os: [linux]
|
|
452
|
+
libc: [glibc]
|
|
453
|
+
|
|
454
|
+
'@img/sharp-linux-x64@0.34.5':
|
|
455
|
+
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
456
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
457
|
+
cpu: [x64]
|
|
458
|
+
os: [linux]
|
|
459
|
+
libc: [glibc]
|
|
460
|
+
|
|
461
|
+
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
462
|
+
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
463
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
464
|
+
cpu: [arm64]
|
|
465
|
+
os: [linux]
|
|
466
|
+
libc: [musl]
|
|
467
|
+
|
|
468
|
+
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
469
|
+
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
470
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
471
|
+
cpu: [x64]
|
|
472
|
+
os: [linux]
|
|
473
|
+
libc: [musl]
|
|
474
|
+
|
|
475
|
+
'@img/sharp-wasm32@0.34.5':
|
|
476
|
+
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
477
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
478
|
+
cpu: [wasm32]
|
|
479
|
+
|
|
480
|
+
'@img/sharp-win32-arm64@0.34.5':
|
|
481
|
+
resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
|
|
482
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
483
|
+
cpu: [arm64]
|
|
484
|
+
os: [win32]
|
|
485
|
+
|
|
486
|
+
'@img/sharp-win32-ia32@0.34.5':
|
|
487
|
+
resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
|
|
488
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
489
|
+
cpu: [ia32]
|
|
490
|
+
os: [win32]
|
|
491
|
+
|
|
492
|
+
'@img/sharp-win32-x64@0.34.5':
|
|
493
|
+
resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
|
|
494
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
495
|
+
cpu: [x64]
|
|
496
|
+
os: [win32]
|
|
497
|
+
|
|
498
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
499
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
500
|
+
|
|
501
|
+
'@jridgewell/remapping@2.3.5':
|
|
502
|
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
503
|
+
|
|
504
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
505
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
506
|
+
engines: {node: '>=6.0.0'}
|
|
507
|
+
|
|
508
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
509
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
510
|
+
|
|
511
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
512
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
513
|
+
|
|
514
|
+
'@modelcontextprotocol/sdk@1.28.0':
|
|
515
|
+
resolution: {integrity: sha512-gmloF+i+flI8ouQK7MWW4mOwuMh4RePBuPFAEPC6+pdqyWOUMDOixb6qZ69owLJpz6XmyllCouc4t8YWO+E2Nw==}
|
|
516
|
+
engines: {node: '>=18'}
|
|
517
|
+
peerDependencies:
|
|
518
|
+
'@cfworker/json-schema': ^4.1.1
|
|
519
|
+
zod: ^3.25 || ^4.0
|
|
520
|
+
peerDependenciesMeta:
|
|
521
|
+
'@cfworker/json-schema':
|
|
522
|
+
optional: true
|
|
523
|
+
|
|
524
|
+
'@next/env@16.2.1':
|
|
525
|
+
resolution: {integrity: sha512-n8P/HCkIWW+gVal2Z8XqXJ6aB3J0tuM29OcHpCsobWlChH/SITBs1DFBk/HajgrwDkqqBXPbuUuzgDvUekREPg==}
|
|
526
|
+
|
|
527
|
+
'@next/swc-darwin-arm64@16.2.1':
|
|
528
|
+
resolution: {integrity: sha512-BwZ8w8YTaSEr2HIuXLMLxIdElNMPvY9fLqb20LX9A9OMGtJilhHLbCL3ggyd0TwjmMcTxi0XXt+ur1vWUoxj2Q==}
|
|
529
|
+
engines: {node: '>= 10'}
|
|
530
|
+
cpu: [arm64]
|
|
531
|
+
os: [darwin]
|
|
532
|
+
|
|
533
|
+
'@next/swc-darwin-x64@16.2.1':
|
|
534
|
+
resolution: {integrity: sha512-/vrcE6iQSJq3uL3VGVHiXeaKbn8Es10DGTGRJnRZlkNQQk3kaNtAJg8Y6xuAlrx/6INKVjkfi5rY0iEXorZ6uA==}
|
|
535
|
+
engines: {node: '>= 10'}
|
|
536
|
+
cpu: [x64]
|
|
537
|
+
os: [darwin]
|
|
538
|
+
|
|
539
|
+
'@next/swc-linux-arm64-gnu@16.2.1':
|
|
540
|
+
resolution: {integrity: sha512-uLn+0BK+C31LTVbQ/QU+UaVrV0rRSJQ8RfniQAHPghDdgE+SlroYqcmFnO5iNjNfVWCyKZHYrs3Nl0mUzWxbBw==}
|
|
541
|
+
engines: {node: '>= 10'}
|
|
542
|
+
cpu: [arm64]
|
|
543
|
+
os: [linux]
|
|
544
|
+
libc: [glibc]
|
|
545
|
+
|
|
546
|
+
'@next/swc-linux-arm64-musl@16.2.1':
|
|
547
|
+
resolution: {integrity: sha512-ssKq6iMRnHdnycGp9hCuGnXJZ0YPr4/wNwrfE5DbmvEcgl9+yv97/Kq3TPVDfYome1SW5geciLB9aiEqKXQjlQ==}
|
|
548
|
+
engines: {node: '>= 10'}
|
|
549
|
+
cpu: [arm64]
|
|
550
|
+
os: [linux]
|
|
551
|
+
libc: [musl]
|
|
552
|
+
|
|
553
|
+
'@next/swc-linux-x64-gnu@16.2.1':
|
|
554
|
+
resolution: {integrity: sha512-HQm7SrHRELJ30T1TSmT706IWovFFSRGxfgUkyWJZF/RKBMdbdRWJuFrcpDdE5vy9UXjFOx6L3mRdqH04Mmx0hg==}
|
|
555
|
+
engines: {node: '>= 10'}
|
|
556
|
+
cpu: [x64]
|
|
557
|
+
os: [linux]
|
|
558
|
+
libc: [glibc]
|
|
559
|
+
|
|
560
|
+
'@next/swc-linux-x64-musl@16.2.1':
|
|
561
|
+
resolution: {integrity: sha512-aV2iUaC/5HGEpbBkE+4B8aHIudoOy5DYekAKOMSHoIYQ66y/wIVeaRx8MS2ZMdxe/HIXlMho4ubdZs/J8441Tg==}
|
|
562
|
+
engines: {node: '>= 10'}
|
|
563
|
+
cpu: [x64]
|
|
564
|
+
os: [linux]
|
|
565
|
+
libc: [musl]
|
|
566
|
+
|
|
567
|
+
'@next/swc-win32-arm64-msvc@16.2.1':
|
|
568
|
+
resolution: {integrity: sha512-IXdNgiDHaSk0ZUJ+xp0OQTdTgnpx1RCfRTalhn3cjOP+IddTMINwA7DXZrwTmGDO8SUr5q2hdP/du4DcrB1GxA==}
|
|
569
|
+
engines: {node: '>= 10'}
|
|
570
|
+
cpu: [arm64]
|
|
571
|
+
os: [win32]
|
|
572
|
+
|
|
573
|
+
'@next/swc-win32-x64-msvc@16.2.1':
|
|
574
|
+
resolution: {integrity: sha512-qvU+3a39Hay+ieIztkGSbF7+mccbbg1Tk25hc4JDylf8IHjYmY/Zm64Qq1602yPyQqvie+vf5T/uPwNxDNIoeg==}
|
|
575
|
+
engines: {node: '>= 10'}
|
|
576
|
+
cpu: [x64]
|
|
577
|
+
os: [win32]
|
|
578
|
+
|
|
579
|
+
'@opentelemetry/api@1.9.0':
|
|
580
|
+
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
|
|
581
|
+
engines: {node: '>=8.0.0'}
|
|
582
|
+
|
|
583
|
+
'@panva/hkdf@1.2.1':
|
|
584
|
+
resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==}
|
|
585
|
+
|
|
586
|
+
'@standard-schema/spec@1.1.0':
|
|
587
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
588
|
+
|
|
589
|
+
'@swc/helpers@0.5.15':
|
|
590
|
+
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
591
|
+
|
|
592
|
+
'@tailwindcss/node@4.2.1':
|
|
593
|
+
resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
|
|
594
|
+
|
|
595
|
+
'@tailwindcss/oxide-android-arm64@4.2.1':
|
|
596
|
+
resolution: {integrity: sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==}
|
|
597
|
+
engines: {node: '>= 20'}
|
|
598
|
+
cpu: [arm64]
|
|
599
|
+
os: [android]
|
|
600
|
+
|
|
601
|
+
'@tailwindcss/oxide-darwin-arm64@4.2.1':
|
|
602
|
+
resolution: {integrity: sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==}
|
|
603
|
+
engines: {node: '>= 20'}
|
|
604
|
+
cpu: [arm64]
|
|
605
|
+
os: [darwin]
|
|
606
|
+
|
|
607
|
+
'@tailwindcss/oxide-darwin-x64@4.2.1':
|
|
608
|
+
resolution: {integrity: sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==}
|
|
609
|
+
engines: {node: '>= 20'}
|
|
610
|
+
cpu: [x64]
|
|
611
|
+
os: [darwin]
|
|
612
|
+
|
|
613
|
+
'@tailwindcss/oxide-freebsd-x64@4.2.1':
|
|
614
|
+
resolution: {integrity: sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==}
|
|
615
|
+
engines: {node: '>= 20'}
|
|
616
|
+
cpu: [x64]
|
|
617
|
+
os: [freebsd]
|
|
618
|
+
|
|
619
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
|
|
620
|
+
resolution: {integrity: sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==}
|
|
621
|
+
engines: {node: '>= 20'}
|
|
622
|
+
cpu: [arm]
|
|
623
|
+
os: [linux]
|
|
624
|
+
|
|
625
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
|
|
626
|
+
resolution: {integrity: sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==}
|
|
627
|
+
engines: {node: '>= 20'}
|
|
628
|
+
cpu: [arm64]
|
|
629
|
+
os: [linux]
|
|
630
|
+
libc: [glibc]
|
|
631
|
+
|
|
632
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.2.1':
|
|
633
|
+
resolution: {integrity: sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==}
|
|
634
|
+
engines: {node: '>= 20'}
|
|
635
|
+
cpu: [arm64]
|
|
636
|
+
os: [linux]
|
|
637
|
+
libc: [musl]
|
|
638
|
+
|
|
639
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.2.1':
|
|
640
|
+
resolution: {integrity: sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==}
|
|
641
|
+
engines: {node: '>= 20'}
|
|
642
|
+
cpu: [x64]
|
|
643
|
+
os: [linux]
|
|
644
|
+
libc: [glibc]
|
|
645
|
+
|
|
646
|
+
'@tailwindcss/oxide-linux-x64-musl@4.2.1':
|
|
647
|
+
resolution: {integrity: sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==}
|
|
648
|
+
engines: {node: '>= 20'}
|
|
649
|
+
cpu: [x64]
|
|
650
|
+
os: [linux]
|
|
651
|
+
libc: [musl]
|
|
652
|
+
|
|
653
|
+
'@tailwindcss/oxide-wasm32-wasi@4.2.1':
|
|
654
|
+
resolution: {integrity: sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==}
|
|
655
|
+
engines: {node: '>=14.0.0'}
|
|
656
|
+
cpu: [wasm32]
|
|
657
|
+
bundledDependencies:
|
|
658
|
+
- '@napi-rs/wasm-runtime'
|
|
659
|
+
- '@emnapi/core'
|
|
660
|
+
- '@emnapi/runtime'
|
|
661
|
+
- '@tybys/wasm-util'
|
|
662
|
+
- '@emnapi/wasi-threads'
|
|
663
|
+
- tslib
|
|
664
|
+
|
|
665
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
|
|
666
|
+
resolution: {integrity: sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==}
|
|
667
|
+
engines: {node: '>= 20'}
|
|
668
|
+
cpu: [arm64]
|
|
669
|
+
os: [win32]
|
|
670
|
+
|
|
671
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.2.1':
|
|
672
|
+
resolution: {integrity: sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==}
|
|
673
|
+
engines: {node: '>= 20'}
|
|
674
|
+
cpu: [x64]
|
|
675
|
+
os: [win32]
|
|
676
|
+
|
|
677
|
+
'@tailwindcss/oxide@4.2.1':
|
|
678
|
+
resolution: {integrity: sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==}
|
|
679
|
+
engines: {node: '>= 20'}
|
|
680
|
+
|
|
681
|
+
'@tailwindcss/postcss@4.2.1':
|
|
682
|
+
resolution: {integrity: sha512-OEwGIBnXnj7zJeonOh6ZG9woofIjGrd2BORfvE5p9USYKDCZoQmfqLcfNiRWoJlRWLdNPn2IgVZuWAOM4iTYMw==}
|
|
683
|
+
|
|
684
|
+
'@types/better-sqlite3@7.6.13':
|
|
685
|
+
resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
|
|
686
|
+
|
|
687
|
+
'@types/cookie@0.6.0':
|
|
688
|
+
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
|
|
689
|
+
|
|
690
|
+
'@types/d3-color@3.1.3':
|
|
691
|
+
resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
|
|
692
|
+
|
|
693
|
+
'@types/d3-drag@3.0.7':
|
|
694
|
+
resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==}
|
|
695
|
+
|
|
696
|
+
'@types/d3-interpolate@3.0.4':
|
|
697
|
+
resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
|
|
698
|
+
|
|
699
|
+
'@types/d3-selection@3.0.11':
|
|
700
|
+
resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
|
|
701
|
+
|
|
702
|
+
'@types/d3-transition@3.0.9':
|
|
703
|
+
resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==}
|
|
704
|
+
|
|
705
|
+
'@types/d3-zoom@3.0.8':
|
|
706
|
+
resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==}
|
|
707
|
+
|
|
708
|
+
'@types/debug@4.1.12':
|
|
709
|
+
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
|
|
710
|
+
|
|
711
|
+
'@types/estree-jsx@1.0.5':
|
|
712
|
+
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
|
|
713
|
+
|
|
714
|
+
'@types/estree@1.0.8':
|
|
715
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
716
|
+
|
|
717
|
+
'@types/hast@3.0.4':
|
|
718
|
+
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
|
|
719
|
+
|
|
720
|
+
'@types/mdast@4.0.4':
|
|
721
|
+
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
|
|
722
|
+
|
|
723
|
+
'@types/ms@2.1.0':
|
|
724
|
+
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
|
|
725
|
+
|
|
726
|
+
'@types/node@25.4.0':
|
|
727
|
+
resolution: {integrity: sha512-9wLpoeWuBlcbBpOY3XmzSTG3oscB6xjBEEtn+pYXTfhyXhIxC5FsBer2KTopBlvKEiW9l13po9fq+SJY/5lkhw==}
|
|
728
|
+
|
|
729
|
+
'@types/react-dom@19.2.3':
|
|
730
|
+
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
|
|
731
|
+
peerDependencies:
|
|
732
|
+
'@types/react': ^19.2.0
|
|
733
|
+
|
|
734
|
+
'@types/react@19.2.14':
|
|
735
|
+
resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==}
|
|
736
|
+
|
|
737
|
+
'@types/unist@2.0.11':
|
|
738
|
+
resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
|
|
739
|
+
|
|
740
|
+
'@types/unist@3.0.3':
|
|
741
|
+
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
742
|
+
|
|
743
|
+
'@types/ws@8.18.1':
|
|
744
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
745
|
+
|
|
746
|
+
'@ungap/structured-clone@1.3.0':
|
|
747
|
+
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
|
|
748
|
+
|
|
749
|
+
'@vercel/oidc@3.1.0':
|
|
750
|
+
resolution: {integrity: sha512-Fw28YZpRnA3cAHHDlkt7xQHiJ0fcL+NRcIqsocZQUSmbzeIKRpwttJjik5ZGanXP+vlA4SbTg+AbA3bP363l+w==}
|
|
751
|
+
engines: {node: '>= 20'}
|
|
752
|
+
|
|
753
|
+
'@xterm/addon-fit@0.11.0':
|
|
754
|
+
resolution: {integrity: sha512-jYcgT6xtVYhnhgxh3QgYDnnNMYTcf8ElbxxFzX0IZo+vabQqSPAjC3c1wJrKB5E19VwQei89QCiZZP86DCPF7g==}
|
|
755
|
+
|
|
756
|
+
'@xterm/addon-search@0.16.0':
|
|
757
|
+
resolution: {integrity: sha512-9OeuBFu0/uZJPu+9AHKY6g/w0Czyb/Ut0A5t79I4ULoU4IfU5BEpPFVGQxP4zTTMdfZEYkVIRYbHBX1xWwjeSA==}
|
|
758
|
+
|
|
759
|
+
'@xterm/addon-unicode11@0.9.0':
|
|
760
|
+
resolution: {integrity: sha512-FxDnYcyuXhNl+XSqGZL/t0U9eiNb/q3EWT5rYkQT/zuig8Gz/VagnQANKHdDWFM2lTMk9ly0EFQxxxtZUoRetw==}
|
|
761
|
+
|
|
762
|
+
'@xterm/addon-webgl@0.19.0':
|
|
763
|
+
resolution: {integrity: sha512-b3fMOsyLVuCeNJWxolACEUED0vm7qC0cy4wRvf3oURSzDTYVQiGPhTnhWZwIHdvC48Y+oLhvYXnY4XDXPoJo6A==}
|
|
764
|
+
|
|
765
|
+
'@xterm/xterm@6.0.0':
|
|
766
|
+
resolution: {integrity: sha512-TQwDdQGtwwDt+2cgKDLn0IRaSxYu1tSUjgKarSDkUM0ZNiSRXFpjxEsvc/Zgc5kq5omJ+V0a8/kIM2WD3sMOYg==}
|
|
767
|
+
|
|
768
|
+
'@xyflow/react@12.10.1':
|
|
769
|
+
resolution: {integrity: sha512-5eSWtIK/+rkldOuFbOOz44CRgQRjtS9v5nufk77DV+XBnfCGL9HAQ8PG00o2ZYKqkEU/Ak6wrKC95Tu+2zuK3Q==}
|
|
770
|
+
peerDependencies:
|
|
771
|
+
react: '>=17'
|
|
772
|
+
react-dom: '>=17'
|
|
773
|
+
|
|
774
|
+
'@xyflow/system@0.0.75':
|
|
775
|
+
resolution: {integrity: sha512-iXs+AGFLi8w/VlAoc/iSxk+CxfT6o64Uw/k0CKASOPqjqz6E0rb5jFZgJtXGZCpfQI6OQpu5EnumP5fGxQheaQ==}
|
|
776
|
+
|
|
777
|
+
accepts@2.0.0:
|
|
778
|
+
resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
|
|
779
|
+
engines: {node: '>= 0.6'}
|
|
780
|
+
|
|
781
|
+
ai@6.0.116:
|
|
782
|
+
resolution: {integrity: sha512-7yM+cTmyRLeNIXwt4Vj+mrrJgVQ9RMIW5WO0ydoLoYkewIvsMcvUmqS4j2RJTUXaF1HphwmSKUMQ/HypNRGOmA==}
|
|
783
|
+
engines: {node: '>=18'}
|
|
784
|
+
peerDependencies:
|
|
785
|
+
zod: ^3.25.76 || ^4.1.8
|
|
786
|
+
|
|
787
|
+
ajv-formats@3.0.1:
|
|
788
|
+
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
|
|
789
|
+
peerDependencies:
|
|
790
|
+
ajv: ^8.0.0
|
|
791
|
+
peerDependenciesMeta:
|
|
792
|
+
ajv:
|
|
793
|
+
optional: true
|
|
794
|
+
|
|
795
|
+
ajv@8.18.0:
|
|
796
|
+
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
|
|
797
|
+
|
|
798
|
+
bail@2.0.2:
|
|
799
|
+
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
|
|
800
|
+
|
|
801
|
+
base64-js@1.5.1:
|
|
802
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
803
|
+
|
|
804
|
+
baseline-browser-mapping@2.10.0:
|
|
805
|
+
resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==}
|
|
806
|
+
engines: {node: '>=6.0.0'}
|
|
807
|
+
hasBin: true
|
|
808
|
+
|
|
809
|
+
better-sqlite3@12.6.2:
|
|
810
|
+
resolution: {integrity: sha512-8VYKM3MjCa9WcaSAI3hzwhmyHVlH8tiGFwf0RlTsZPWJ1I5MkzjiudCo4KC4DxOaL/53A5B1sI/IbldNFDbsKA==}
|
|
811
|
+
engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x}
|
|
812
|
+
|
|
813
|
+
bindings@1.5.0:
|
|
814
|
+
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
|
|
815
|
+
|
|
816
|
+
bl@4.1.0:
|
|
817
|
+
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
|
|
818
|
+
|
|
819
|
+
body-parser@2.2.2:
|
|
820
|
+
resolution: {integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==}
|
|
821
|
+
engines: {node: '>=18'}
|
|
822
|
+
|
|
823
|
+
buffer@5.7.1:
|
|
824
|
+
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
825
|
+
|
|
826
|
+
bytes@3.1.2:
|
|
827
|
+
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
828
|
+
engines: {node: '>= 0.8'}
|
|
829
|
+
|
|
830
|
+
call-bind-apply-helpers@1.0.2:
|
|
831
|
+
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
832
|
+
engines: {node: '>= 0.4'}
|
|
833
|
+
|
|
834
|
+
call-bound@1.0.4:
|
|
835
|
+
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
|
836
|
+
engines: {node: '>= 0.4'}
|
|
837
|
+
|
|
838
|
+
caniuse-lite@1.0.30001777:
|
|
839
|
+
resolution: {integrity: sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==}
|
|
840
|
+
|
|
841
|
+
ccount@2.0.1:
|
|
842
|
+
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
|
|
843
|
+
|
|
844
|
+
character-entities-html4@2.1.0:
|
|
845
|
+
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
|
|
846
|
+
|
|
847
|
+
character-entities-legacy@3.0.0:
|
|
848
|
+
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
|
|
849
|
+
|
|
850
|
+
character-entities@2.0.2:
|
|
851
|
+
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
|
|
852
|
+
|
|
853
|
+
character-reference-invalid@2.0.1:
|
|
854
|
+
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
|
|
855
|
+
|
|
856
|
+
chownr@1.1.4:
|
|
857
|
+
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
|
|
858
|
+
|
|
859
|
+
classcat@5.0.5:
|
|
860
|
+
resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==}
|
|
861
|
+
|
|
862
|
+
client-only@0.0.1:
|
|
863
|
+
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
|
|
864
|
+
|
|
865
|
+
comma-separated-tokens@2.0.3:
|
|
866
|
+
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
|
|
867
|
+
|
|
868
|
+
content-disposition@1.0.1:
|
|
869
|
+
resolution: {integrity: sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==}
|
|
870
|
+
engines: {node: '>=18'}
|
|
871
|
+
|
|
872
|
+
content-type@1.0.5:
|
|
873
|
+
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
|
|
874
|
+
engines: {node: '>= 0.6'}
|
|
875
|
+
|
|
876
|
+
cookie-signature@1.2.2:
|
|
877
|
+
resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
|
|
878
|
+
engines: {node: '>=6.6.0'}
|
|
879
|
+
|
|
880
|
+
cookie@0.6.0:
|
|
881
|
+
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
|
|
882
|
+
engines: {node: '>= 0.6'}
|
|
883
|
+
|
|
884
|
+
cookie@0.7.2:
|
|
885
|
+
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
|
|
886
|
+
engines: {node: '>= 0.6'}
|
|
887
|
+
|
|
888
|
+
cors@2.8.6:
|
|
889
|
+
resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==}
|
|
890
|
+
engines: {node: '>= 0.10'}
|
|
891
|
+
|
|
892
|
+
cross-spawn@7.0.6:
|
|
893
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
894
|
+
engines: {node: '>= 8'}
|
|
895
|
+
|
|
896
|
+
csstype@3.2.3:
|
|
897
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
898
|
+
|
|
899
|
+
d3-color@3.1.0:
|
|
900
|
+
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
|
|
901
|
+
engines: {node: '>=12'}
|
|
902
|
+
|
|
903
|
+
d3-dispatch@3.0.1:
|
|
904
|
+
resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
|
|
905
|
+
engines: {node: '>=12'}
|
|
906
|
+
|
|
907
|
+
d3-drag@3.0.0:
|
|
908
|
+
resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
|
|
909
|
+
engines: {node: '>=12'}
|
|
910
|
+
|
|
911
|
+
d3-ease@3.0.1:
|
|
912
|
+
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
|
|
913
|
+
engines: {node: '>=12'}
|
|
914
|
+
|
|
915
|
+
d3-interpolate@3.0.1:
|
|
916
|
+
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
|
|
917
|
+
engines: {node: '>=12'}
|
|
918
|
+
|
|
919
|
+
d3-selection@3.0.0:
|
|
920
|
+
resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
|
|
921
|
+
engines: {node: '>=12'}
|
|
922
|
+
|
|
923
|
+
d3-timer@3.0.1:
|
|
924
|
+
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
|
925
|
+
engines: {node: '>=12'}
|
|
926
|
+
|
|
927
|
+
d3-transition@3.0.1:
|
|
928
|
+
resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==}
|
|
929
|
+
engines: {node: '>=12'}
|
|
930
|
+
peerDependencies:
|
|
931
|
+
d3-selection: 2 - 3
|
|
932
|
+
|
|
933
|
+
d3-zoom@3.0.0:
|
|
934
|
+
resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
|
|
935
|
+
engines: {node: '>=12'}
|
|
936
|
+
|
|
937
|
+
debug@4.4.3:
|
|
938
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
939
|
+
engines: {node: '>=6.0'}
|
|
940
|
+
peerDependencies:
|
|
941
|
+
supports-color: '*'
|
|
942
|
+
peerDependenciesMeta:
|
|
943
|
+
supports-color:
|
|
944
|
+
optional: true
|
|
945
|
+
|
|
946
|
+
decode-named-character-reference@1.3.0:
|
|
947
|
+
resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
|
|
948
|
+
|
|
949
|
+
decompress-response@6.0.0:
|
|
950
|
+
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
|
|
951
|
+
engines: {node: '>=10'}
|
|
952
|
+
|
|
953
|
+
deep-extend@0.6.0:
|
|
954
|
+
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
|
955
|
+
engines: {node: '>=4.0.0'}
|
|
956
|
+
|
|
957
|
+
depd@2.0.0:
|
|
958
|
+
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
959
|
+
engines: {node: '>= 0.8'}
|
|
960
|
+
|
|
961
|
+
dequal@2.0.3:
|
|
962
|
+
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
963
|
+
engines: {node: '>=6'}
|
|
964
|
+
|
|
965
|
+
detect-libc@2.1.2:
|
|
966
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
967
|
+
engines: {node: '>=8'}
|
|
968
|
+
|
|
969
|
+
devlop@1.1.0:
|
|
970
|
+
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
|
|
971
|
+
|
|
972
|
+
dunder-proto@1.0.1:
|
|
973
|
+
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
974
|
+
engines: {node: '>= 0.4'}
|
|
975
|
+
|
|
976
|
+
ee-first@1.1.1:
|
|
977
|
+
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
978
|
+
|
|
979
|
+
encodeurl@2.0.0:
|
|
980
|
+
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
|
|
981
|
+
engines: {node: '>= 0.8'}
|
|
982
|
+
|
|
983
|
+
end-of-stream@1.4.5:
|
|
984
|
+
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
|
985
|
+
|
|
986
|
+
enhanced-resolve@5.20.0:
|
|
987
|
+
resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
|
|
988
|
+
engines: {node: '>=10.13.0'}
|
|
989
|
+
|
|
990
|
+
es-define-property@1.0.1:
|
|
991
|
+
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
992
|
+
engines: {node: '>= 0.4'}
|
|
993
|
+
|
|
994
|
+
es-errors@1.3.0:
|
|
995
|
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
996
|
+
engines: {node: '>= 0.4'}
|
|
997
|
+
|
|
998
|
+
es-object-atoms@1.1.1:
|
|
999
|
+
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
|
|
1000
|
+
engines: {node: '>= 0.4'}
|
|
1001
|
+
|
|
1002
|
+
esbuild@0.27.3:
|
|
1003
|
+
resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
|
|
1004
|
+
engines: {node: '>=18'}
|
|
1005
|
+
hasBin: true
|
|
1006
|
+
|
|
1007
|
+
escape-html@1.0.3:
|
|
1008
|
+
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
|
|
1009
|
+
|
|
1010
|
+
escape-string-regexp@5.0.0:
|
|
1011
|
+
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
|
1012
|
+
engines: {node: '>=12'}
|
|
1013
|
+
|
|
1014
|
+
estree-util-is-identifier-name@3.0.0:
|
|
1015
|
+
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
|
|
1016
|
+
|
|
1017
|
+
etag@1.8.1:
|
|
1018
|
+
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
|
|
1019
|
+
engines: {node: '>= 0.6'}
|
|
1020
|
+
|
|
1021
|
+
eventsource-parser@3.0.6:
|
|
1022
|
+
resolution: {integrity: sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==}
|
|
1023
|
+
engines: {node: '>=18.0.0'}
|
|
1024
|
+
|
|
1025
|
+
eventsource@3.0.7:
|
|
1026
|
+
resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==}
|
|
1027
|
+
engines: {node: '>=18.0.0'}
|
|
1028
|
+
|
|
1029
|
+
expand-template@2.0.3:
|
|
1030
|
+
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
|
|
1031
|
+
engines: {node: '>=6'}
|
|
1032
|
+
|
|
1033
|
+
express-rate-limit@8.3.1:
|
|
1034
|
+
resolution: {integrity: sha512-D1dKN+cmyPWuvB+G2SREQDzPY1agpBIcTa9sJxOPMCNeH3gwzhqJRDWCXW3gg0y//+LQ/8j52JbMROWyrKdMdw==}
|
|
1035
|
+
engines: {node: '>= 16'}
|
|
1036
|
+
peerDependencies:
|
|
1037
|
+
express: '>= 4.11'
|
|
1038
|
+
|
|
1039
|
+
express@5.2.1:
|
|
1040
|
+
resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
|
|
1041
|
+
engines: {node: '>= 18'}
|
|
1042
|
+
|
|
1043
|
+
extend@3.0.2:
|
|
1044
|
+
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
|
|
1045
|
+
|
|
1046
|
+
fast-deep-equal@3.1.3:
|
|
1047
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
1048
|
+
|
|
1049
|
+
fast-uri@3.1.0:
|
|
1050
|
+
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
|
|
1051
|
+
|
|
1052
|
+
file-uri-to-path@1.0.0:
|
|
1053
|
+
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
|
|
1054
|
+
|
|
1055
|
+
finalhandler@2.1.1:
|
|
1056
|
+
resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
|
|
1057
|
+
engines: {node: '>= 18.0.0'}
|
|
1058
|
+
|
|
1059
|
+
forwarded@0.2.0:
|
|
1060
|
+
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
|
|
1061
|
+
engines: {node: '>= 0.6'}
|
|
1062
|
+
|
|
1063
|
+
fresh@2.0.0:
|
|
1064
|
+
resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
|
|
1065
|
+
engines: {node: '>= 0.8'}
|
|
1066
|
+
|
|
1067
|
+
fs-constants@1.0.0:
|
|
1068
|
+
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
|
|
1069
|
+
|
|
1070
|
+
fsevents@2.3.3:
|
|
1071
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1072
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1073
|
+
os: [darwin]
|
|
1074
|
+
|
|
1075
|
+
function-bind@1.1.2:
|
|
1076
|
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
1077
|
+
|
|
1078
|
+
get-intrinsic@1.3.0:
|
|
1079
|
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
1080
|
+
engines: {node: '>= 0.4'}
|
|
1081
|
+
|
|
1082
|
+
get-proto@1.0.1:
|
|
1083
|
+
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
1084
|
+
engines: {node: '>= 0.4'}
|
|
1085
|
+
|
|
1086
|
+
get-tsconfig@4.13.6:
|
|
1087
|
+
resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
|
|
1088
|
+
|
|
1089
|
+
github-from-package@0.0.0:
|
|
1090
|
+
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
|
|
1091
|
+
|
|
1092
|
+
gopd@1.2.0:
|
|
1093
|
+
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
|
|
1094
|
+
engines: {node: '>= 0.4'}
|
|
1095
|
+
|
|
1096
|
+
graceful-fs@4.2.11:
|
|
1097
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
1098
|
+
|
|
1099
|
+
has-symbols@1.1.0:
|
|
1100
|
+
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
|
1101
|
+
engines: {node: '>= 0.4'}
|
|
1102
|
+
|
|
1103
|
+
hasown@2.0.2:
|
|
1104
|
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
1105
|
+
engines: {node: '>= 0.4'}
|
|
1106
|
+
|
|
1107
|
+
hast-util-to-jsx-runtime@2.3.6:
|
|
1108
|
+
resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==}
|
|
1109
|
+
|
|
1110
|
+
hast-util-whitespace@3.0.0:
|
|
1111
|
+
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
|
|
1112
|
+
|
|
1113
|
+
hono@4.12.9:
|
|
1114
|
+
resolution: {integrity: sha512-wy3T8Zm2bsEvxKZM5w21VdHDDcwVS1yUFFY6i8UobSsKfFceT7TOwhbhfKsDyx7tYQlmRM5FLpIuYvNFyjctiA==}
|
|
1115
|
+
engines: {node: '>=16.9.0'}
|
|
1116
|
+
|
|
1117
|
+
html-url-attributes@3.0.1:
|
|
1118
|
+
resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==}
|
|
1119
|
+
|
|
1120
|
+
http-errors@2.0.1:
|
|
1121
|
+
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
|
|
1122
|
+
engines: {node: '>= 0.8'}
|
|
1123
|
+
|
|
1124
|
+
iconv-lite@0.7.2:
|
|
1125
|
+
resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
|
|
1126
|
+
engines: {node: '>=0.10.0'}
|
|
1127
|
+
|
|
1128
|
+
ieee754@1.2.1:
|
|
1129
|
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
1130
|
+
|
|
1131
|
+
inherits@2.0.4:
|
|
1132
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1133
|
+
|
|
1134
|
+
ini@1.3.8:
|
|
1135
|
+
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
|
|
1136
|
+
|
|
1137
|
+
inline-style-parser@0.2.7:
|
|
1138
|
+
resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==}
|
|
1139
|
+
|
|
1140
|
+
ip-address@10.1.0:
|
|
1141
|
+
resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==}
|
|
1142
|
+
engines: {node: '>= 12'}
|
|
1143
|
+
|
|
1144
|
+
ipaddr.js@1.9.1:
|
|
1145
|
+
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
|
1146
|
+
engines: {node: '>= 0.10'}
|
|
1147
|
+
|
|
1148
|
+
is-alphabetical@2.0.1:
|
|
1149
|
+
resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
|
|
1150
|
+
|
|
1151
|
+
is-alphanumerical@2.0.1:
|
|
1152
|
+
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
|
|
1153
|
+
|
|
1154
|
+
is-decimal@2.0.1:
|
|
1155
|
+
resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
|
|
1156
|
+
|
|
1157
|
+
is-hexadecimal@2.0.1:
|
|
1158
|
+
resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
|
|
1159
|
+
|
|
1160
|
+
is-plain-obj@4.1.0:
|
|
1161
|
+
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
|
|
1162
|
+
engines: {node: '>=12'}
|
|
1163
|
+
|
|
1164
|
+
is-promise@4.0.0:
|
|
1165
|
+
resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
|
|
1166
|
+
|
|
1167
|
+
isexe@2.0.0:
|
|
1168
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1169
|
+
|
|
1170
|
+
jiti@2.6.1:
|
|
1171
|
+
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
|
1172
|
+
hasBin: true
|
|
1173
|
+
|
|
1174
|
+
jose@5.10.0:
|
|
1175
|
+
resolution: {integrity: sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==}
|
|
1176
|
+
|
|
1177
|
+
jose@6.2.1:
|
|
1178
|
+
resolution: {integrity: sha512-jUaKr1yrbfaImV7R2TN/b3IcZzsw38/chqMpo2XJ7i2F8AfM/lA4G1goC3JVEwg0H7UldTmSt3P68nt31W7/mw==}
|
|
1179
|
+
|
|
1180
|
+
json-schema-traverse@1.0.0:
|
|
1181
|
+
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
1182
|
+
|
|
1183
|
+
json-schema-typed@8.0.2:
|
|
1184
|
+
resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==}
|
|
1185
|
+
|
|
1186
|
+
json-schema@0.4.0:
|
|
1187
|
+
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
|
|
1188
|
+
|
|
1189
|
+
lightningcss-android-arm64@1.31.1:
|
|
1190
|
+
resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
|
|
1191
|
+
engines: {node: '>= 12.0.0'}
|
|
1192
|
+
cpu: [arm64]
|
|
1193
|
+
os: [android]
|
|
1194
|
+
|
|
1195
|
+
lightningcss-darwin-arm64@1.31.1:
|
|
1196
|
+
resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
|
|
1197
|
+
engines: {node: '>= 12.0.0'}
|
|
1198
|
+
cpu: [arm64]
|
|
1199
|
+
os: [darwin]
|
|
1200
|
+
|
|
1201
|
+
lightningcss-darwin-x64@1.31.1:
|
|
1202
|
+
resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
|
|
1203
|
+
engines: {node: '>= 12.0.0'}
|
|
1204
|
+
cpu: [x64]
|
|
1205
|
+
os: [darwin]
|
|
1206
|
+
|
|
1207
|
+
lightningcss-freebsd-x64@1.31.1:
|
|
1208
|
+
resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
|
|
1209
|
+
engines: {node: '>= 12.0.0'}
|
|
1210
|
+
cpu: [x64]
|
|
1211
|
+
os: [freebsd]
|
|
1212
|
+
|
|
1213
|
+
lightningcss-linux-arm-gnueabihf@1.31.1:
|
|
1214
|
+
resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
|
|
1215
|
+
engines: {node: '>= 12.0.0'}
|
|
1216
|
+
cpu: [arm]
|
|
1217
|
+
os: [linux]
|
|
1218
|
+
|
|
1219
|
+
lightningcss-linux-arm64-gnu@1.31.1:
|
|
1220
|
+
resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
|
|
1221
|
+
engines: {node: '>= 12.0.0'}
|
|
1222
|
+
cpu: [arm64]
|
|
1223
|
+
os: [linux]
|
|
1224
|
+
libc: [glibc]
|
|
1225
|
+
|
|
1226
|
+
lightningcss-linux-arm64-musl@1.31.1:
|
|
1227
|
+
resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
|
|
1228
|
+
engines: {node: '>= 12.0.0'}
|
|
1229
|
+
cpu: [arm64]
|
|
1230
|
+
os: [linux]
|
|
1231
|
+
libc: [musl]
|
|
1232
|
+
|
|
1233
|
+
lightningcss-linux-x64-gnu@1.31.1:
|
|
1234
|
+
resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
|
|
1235
|
+
engines: {node: '>= 12.0.0'}
|
|
1236
|
+
cpu: [x64]
|
|
1237
|
+
os: [linux]
|
|
1238
|
+
libc: [glibc]
|
|
1239
|
+
|
|
1240
|
+
lightningcss-linux-x64-musl@1.31.1:
|
|
1241
|
+
resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
|
|
1242
|
+
engines: {node: '>= 12.0.0'}
|
|
1243
|
+
cpu: [x64]
|
|
1244
|
+
os: [linux]
|
|
1245
|
+
libc: [musl]
|
|
1246
|
+
|
|
1247
|
+
lightningcss-win32-arm64-msvc@1.31.1:
|
|
1248
|
+
resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
|
|
1249
|
+
engines: {node: '>= 12.0.0'}
|
|
1250
|
+
cpu: [arm64]
|
|
1251
|
+
os: [win32]
|
|
1252
|
+
|
|
1253
|
+
lightningcss-win32-x64-msvc@1.31.1:
|
|
1254
|
+
resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
|
|
1255
|
+
engines: {node: '>= 12.0.0'}
|
|
1256
|
+
cpu: [x64]
|
|
1257
|
+
os: [win32]
|
|
1258
|
+
|
|
1259
|
+
lightningcss@1.31.1:
|
|
1260
|
+
resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
|
|
1261
|
+
engines: {node: '>= 12.0.0'}
|
|
1262
|
+
|
|
1263
|
+
longest-streak@3.1.0:
|
|
1264
|
+
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
|
|
1265
|
+
|
|
1266
|
+
magic-string@0.30.21:
|
|
1267
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1268
|
+
|
|
1269
|
+
markdown-table@3.0.4:
|
|
1270
|
+
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
|
|
1271
|
+
|
|
1272
|
+
math-intrinsics@1.1.0:
|
|
1273
|
+
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1274
|
+
engines: {node: '>= 0.4'}
|
|
1275
|
+
|
|
1276
|
+
mdast-util-find-and-replace@3.0.2:
|
|
1277
|
+
resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
|
|
1278
|
+
|
|
1279
|
+
mdast-util-from-markdown@2.0.3:
|
|
1280
|
+
resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==}
|
|
1281
|
+
|
|
1282
|
+
mdast-util-gfm-autolink-literal@2.0.1:
|
|
1283
|
+
resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
|
|
1284
|
+
|
|
1285
|
+
mdast-util-gfm-footnote@2.1.0:
|
|
1286
|
+
resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
|
|
1287
|
+
|
|
1288
|
+
mdast-util-gfm-strikethrough@2.0.0:
|
|
1289
|
+
resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
|
|
1290
|
+
|
|
1291
|
+
mdast-util-gfm-table@2.0.0:
|
|
1292
|
+
resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
|
|
1293
|
+
|
|
1294
|
+
mdast-util-gfm-task-list-item@2.0.0:
|
|
1295
|
+
resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
|
|
1296
|
+
|
|
1297
|
+
mdast-util-gfm@3.1.0:
|
|
1298
|
+
resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
|
|
1299
|
+
|
|
1300
|
+
mdast-util-mdx-expression@2.0.1:
|
|
1301
|
+
resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
|
|
1302
|
+
|
|
1303
|
+
mdast-util-mdx-jsx@3.2.0:
|
|
1304
|
+
resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==}
|
|
1305
|
+
|
|
1306
|
+
mdast-util-mdxjs-esm@2.0.1:
|
|
1307
|
+
resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
|
|
1308
|
+
|
|
1309
|
+
mdast-util-phrasing@4.1.0:
|
|
1310
|
+
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
|
|
1311
|
+
|
|
1312
|
+
mdast-util-to-hast@13.2.1:
|
|
1313
|
+
resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
|
|
1314
|
+
|
|
1315
|
+
mdast-util-to-markdown@2.1.2:
|
|
1316
|
+
resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
|
|
1317
|
+
|
|
1318
|
+
mdast-util-to-string@4.0.0:
|
|
1319
|
+
resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
|
|
1320
|
+
|
|
1321
|
+
media-typer@1.1.0:
|
|
1322
|
+
resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
|
|
1323
|
+
engines: {node: '>= 0.8'}
|
|
1324
|
+
|
|
1325
|
+
merge-descriptors@2.0.0:
|
|
1326
|
+
resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
|
|
1327
|
+
engines: {node: '>=18'}
|
|
1328
|
+
|
|
1329
|
+
micromark-core-commonmark@2.0.3:
|
|
1330
|
+
resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
|
|
1331
|
+
|
|
1332
|
+
micromark-extension-gfm-autolink-literal@2.1.0:
|
|
1333
|
+
resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
|
|
1334
|
+
|
|
1335
|
+
micromark-extension-gfm-footnote@2.1.0:
|
|
1336
|
+
resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
|
|
1337
|
+
|
|
1338
|
+
micromark-extension-gfm-strikethrough@2.1.0:
|
|
1339
|
+
resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
|
|
1340
|
+
|
|
1341
|
+
micromark-extension-gfm-table@2.1.1:
|
|
1342
|
+
resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
|
|
1343
|
+
|
|
1344
|
+
micromark-extension-gfm-tagfilter@2.0.0:
|
|
1345
|
+
resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
|
|
1346
|
+
|
|
1347
|
+
micromark-extension-gfm-task-list-item@2.1.0:
|
|
1348
|
+
resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
|
|
1349
|
+
|
|
1350
|
+
micromark-extension-gfm@3.0.0:
|
|
1351
|
+
resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
|
|
1352
|
+
|
|
1353
|
+
micromark-factory-destination@2.0.1:
|
|
1354
|
+
resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
|
|
1355
|
+
|
|
1356
|
+
micromark-factory-label@2.0.1:
|
|
1357
|
+
resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
|
|
1358
|
+
|
|
1359
|
+
micromark-factory-space@2.0.1:
|
|
1360
|
+
resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
|
|
1361
|
+
|
|
1362
|
+
micromark-factory-title@2.0.1:
|
|
1363
|
+
resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
|
|
1364
|
+
|
|
1365
|
+
micromark-factory-whitespace@2.0.1:
|
|
1366
|
+
resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
|
|
1367
|
+
|
|
1368
|
+
micromark-util-character@2.1.1:
|
|
1369
|
+
resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
|
|
1370
|
+
|
|
1371
|
+
micromark-util-chunked@2.0.1:
|
|
1372
|
+
resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
|
|
1373
|
+
|
|
1374
|
+
micromark-util-classify-character@2.0.1:
|
|
1375
|
+
resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
|
|
1376
|
+
|
|
1377
|
+
micromark-util-combine-extensions@2.0.1:
|
|
1378
|
+
resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
|
|
1379
|
+
|
|
1380
|
+
micromark-util-decode-numeric-character-reference@2.0.2:
|
|
1381
|
+
resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
|
|
1382
|
+
|
|
1383
|
+
micromark-util-decode-string@2.0.1:
|
|
1384
|
+
resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
|
|
1385
|
+
|
|
1386
|
+
micromark-util-encode@2.0.1:
|
|
1387
|
+
resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
|
|
1388
|
+
|
|
1389
|
+
micromark-util-html-tag-name@2.0.1:
|
|
1390
|
+
resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
|
|
1391
|
+
|
|
1392
|
+
micromark-util-normalize-identifier@2.0.1:
|
|
1393
|
+
resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
|
|
1394
|
+
|
|
1395
|
+
micromark-util-resolve-all@2.0.1:
|
|
1396
|
+
resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
|
|
1397
|
+
|
|
1398
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
1399
|
+
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
|
|
1400
|
+
|
|
1401
|
+
micromark-util-subtokenize@2.1.0:
|
|
1402
|
+
resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
|
|
1403
|
+
|
|
1404
|
+
micromark-util-symbol@2.0.1:
|
|
1405
|
+
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
|
|
1406
|
+
|
|
1407
|
+
micromark-util-types@2.0.2:
|
|
1408
|
+
resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
|
|
1409
|
+
|
|
1410
|
+
micromark@4.0.2:
|
|
1411
|
+
resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
|
|
1412
|
+
|
|
1413
|
+
mime-db@1.54.0:
|
|
1414
|
+
resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
|
|
1415
|
+
engines: {node: '>= 0.6'}
|
|
1416
|
+
|
|
1417
|
+
mime-types@3.0.2:
|
|
1418
|
+
resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
|
|
1419
|
+
engines: {node: '>=18'}
|
|
1420
|
+
|
|
1421
|
+
mimic-response@3.1.0:
|
|
1422
|
+
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
|
|
1423
|
+
engines: {node: '>=10'}
|
|
1424
|
+
|
|
1425
|
+
minimist@1.2.8:
|
|
1426
|
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
1427
|
+
|
|
1428
|
+
mkdirp-classic@0.5.3:
|
|
1429
|
+
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
|
|
1430
|
+
|
|
1431
|
+
ms@2.1.3:
|
|
1432
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1433
|
+
|
|
1434
|
+
nan@2.25.0:
|
|
1435
|
+
resolution: {integrity: sha512-0M90Ag7Xn5KMLLZ7zliPWP3rT90P6PN+IzVFS0VqmnPktBk3700xUVv8Ikm9EUaUE5SDWdp/BIxdENzVznpm1g==}
|
|
1436
|
+
|
|
1437
|
+
nanoid@3.3.11:
|
|
1438
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
1439
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1440
|
+
hasBin: true
|
|
1441
|
+
|
|
1442
|
+
napi-build-utils@2.0.0:
|
|
1443
|
+
resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
|
|
1444
|
+
|
|
1445
|
+
negotiator@1.0.0:
|
|
1446
|
+
resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
|
|
1447
|
+
engines: {node: '>= 0.6'}
|
|
1448
|
+
|
|
1449
|
+
next-auth@5.0.0-beta.30:
|
|
1450
|
+
resolution: {integrity: sha512-+c51gquM3F6nMVmoAusRJ7RIoY0K4Ts9HCCwyy/BRoe4mp3msZpOzYMyb5LAYc1wSo74PMQkGDcaghIO7W6Xjg==}
|
|
1451
|
+
peerDependencies:
|
|
1452
|
+
'@simplewebauthn/browser': ^9.0.1
|
|
1453
|
+
'@simplewebauthn/server': ^9.0.2
|
|
1454
|
+
next: ^14.0.0-0 || ^15.0.0 || ^16.0.0
|
|
1455
|
+
nodemailer: ^7.0.7
|
|
1456
|
+
react: ^18.2.0 || ^19.0.0
|
|
1457
|
+
peerDependenciesMeta:
|
|
1458
|
+
'@simplewebauthn/browser':
|
|
1459
|
+
optional: true
|
|
1460
|
+
'@simplewebauthn/server':
|
|
1461
|
+
optional: true
|
|
1462
|
+
nodemailer:
|
|
1463
|
+
optional: true
|
|
1464
|
+
|
|
1465
|
+
next@16.2.1:
|
|
1466
|
+
resolution: {integrity: sha512-VaChzNL7o9rbfdt60HUj8tev4m6d7iC1igAy157526+cJlXOQu5LzsBXNT+xaJnTP/k+utSX5vMv7m0G+zKH+Q==}
|
|
1467
|
+
engines: {node: '>=20.9.0'}
|
|
1468
|
+
hasBin: true
|
|
1469
|
+
peerDependencies:
|
|
1470
|
+
'@opentelemetry/api': ^1.1.0
|
|
1471
|
+
'@playwright/test': ^1.51.1
|
|
1472
|
+
babel-plugin-react-compiler: '*'
|
|
1473
|
+
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
1474
|
+
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
1475
|
+
sass: ^1.3.0
|
|
1476
|
+
peerDependenciesMeta:
|
|
1477
|
+
'@opentelemetry/api':
|
|
1478
|
+
optional: true
|
|
1479
|
+
'@playwright/test':
|
|
1480
|
+
optional: true
|
|
1481
|
+
babel-plugin-react-compiler:
|
|
1482
|
+
optional: true
|
|
1483
|
+
sass:
|
|
1484
|
+
optional: true
|
|
1485
|
+
|
|
1486
|
+
node-abi@3.88.0:
|
|
1487
|
+
resolution: {integrity: sha512-At6b4UqIEVudaqPsXjmUO1r/N5BUr4yhDGs5PkBE8/oG5+TfLPhFechiskFsnT6Ql0VfUXbalUUCbfXxtj7K+w==}
|
|
1488
|
+
engines: {node: '>=10'}
|
|
1489
|
+
|
|
1490
|
+
node-pty@1.0.0:
|
|
1491
|
+
resolution: {integrity: sha512-wtBMWWS7dFZm/VgqElrTvtfMq4GzJ6+edFI0Y0zyzygUSZMgZdraDUMUhCIvkjhJjme15qWmbyJbtAx4ot4uZA==}
|
|
1492
|
+
|
|
1493
|
+
oauth4webapi@2.17.0:
|
|
1494
|
+
resolution: {integrity: sha512-lbC0Z7uzAFNFyzEYRIC+pkSVvDHJTbEW+dYlSBAlCYDe6RxUkJ26bClhk8ocBZip1wfI9uKTe0fm4Ib4RHn6uQ==}
|
|
1495
|
+
|
|
1496
|
+
oauth4webapi@3.8.5:
|
|
1497
|
+
resolution: {integrity: sha512-A8jmyUckVhRJj5lspguklcl90Ydqk61H3dcU0oLhH3Yv13KpAliKTt5hknpGGPZSSfOwGyraNEFmofDYH+1kSg==}
|
|
1498
|
+
|
|
1499
|
+
object-assign@4.1.1:
|
|
1500
|
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
|
1501
|
+
engines: {node: '>=0.10.0'}
|
|
1502
|
+
|
|
1503
|
+
object-inspect@1.13.4:
|
|
1504
|
+
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
|
1505
|
+
engines: {node: '>= 0.4'}
|
|
1506
|
+
|
|
1507
|
+
on-finished@2.4.1:
|
|
1508
|
+
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
|
1509
|
+
engines: {node: '>= 0.8'}
|
|
1510
|
+
|
|
1511
|
+
once@1.4.0:
|
|
1512
|
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
|
1513
|
+
|
|
1514
|
+
parse-entities@4.0.2:
|
|
1515
|
+
resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
|
|
1516
|
+
|
|
1517
|
+
parseurl@1.3.3:
|
|
1518
|
+
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
|
|
1519
|
+
engines: {node: '>= 0.8'}
|
|
1520
|
+
|
|
1521
|
+
path-key@3.1.1:
|
|
1522
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1523
|
+
engines: {node: '>=8'}
|
|
1524
|
+
|
|
1525
|
+
path-to-regexp@8.4.0:
|
|
1526
|
+
resolution: {integrity: sha512-PuseHIvAnz3bjrM2rGJtSgo1zjgxapTLZ7x2pjhzWwlp4SJQgK3f3iZIQwkpEnBaKz6seKBADpM4B4ySkuYypg==}
|
|
1527
|
+
|
|
1528
|
+
picocolors@1.1.1:
|
|
1529
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1530
|
+
|
|
1531
|
+
pkce-challenge@5.0.1:
|
|
1532
|
+
resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
|
|
1533
|
+
engines: {node: '>=16.20.0'}
|
|
1534
|
+
|
|
1535
|
+
postcss@8.4.31:
|
|
1536
|
+
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
|
|
1537
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1538
|
+
|
|
1539
|
+
postcss@8.5.8:
|
|
1540
|
+
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
|
|
1541
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1542
|
+
|
|
1543
|
+
preact-render-to-string@5.2.3:
|
|
1544
|
+
resolution: {integrity: sha512-aPDxUn5o3GhWdtJtW0svRC2SS/l8D9MAgo2+AWml+BhDImb27ALf04Q2d+AHqUUOc6RdSXFIBVa2gxzgMKgtZA==}
|
|
1545
|
+
peerDependencies:
|
|
1546
|
+
preact: '>=10'
|
|
1547
|
+
|
|
1548
|
+
preact-render-to-string@6.5.11:
|
|
1549
|
+
resolution: {integrity: sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==}
|
|
1550
|
+
peerDependencies:
|
|
1551
|
+
preact: '>=10'
|
|
1552
|
+
|
|
1553
|
+
preact@10.11.3:
|
|
1554
|
+
resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==}
|
|
1555
|
+
|
|
1556
|
+
preact@10.24.3:
|
|
1557
|
+
resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
|
|
1558
|
+
|
|
1559
|
+
prebuild-install@7.1.3:
|
|
1560
|
+
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
|
|
1561
|
+
engines: {node: '>=10'}
|
|
1562
|
+
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
|
|
1563
|
+
hasBin: true
|
|
1564
|
+
|
|
1565
|
+
pretty-format@3.8.0:
|
|
1566
|
+
resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==}
|
|
1567
|
+
|
|
1568
|
+
property-information@7.1.0:
|
|
1569
|
+
resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
|
|
1570
|
+
|
|
1571
|
+
proxy-addr@2.0.7:
|
|
1572
|
+
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
|
|
1573
|
+
engines: {node: '>= 0.10'}
|
|
1574
|
+
|
|
1575
|
+
pump@3.0.4:
|
|
1576
|
+
resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
|
|
1577
|
+
|
|
1578
|
+
qs@6.15.0:
|
|
1579
|
+
resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==}
|
|
1580
|
+
engines: {node: '>=0.6'}
|
|
1581
|
+
|
|
1582
|
+
range-parser@1.2.1:
|
|
1583
|
+
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
|
|
1584
|
+
engines: {node: '>= 0.6'}
|
|
1585
|
+
|
|
1586
|
+
raw-body@3.0.2:
|
|
1587
|
+
resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
|
|
1588
|
+
engines: {node: '>= 0.10'}
|
|
1589
|
+
|
|
1590
|
+
rc@1.2.8:
|
|
1591
|
+
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
|
|
1592
|
+
hasBin: true
|
|
1593
|
+
|
|
1594
|
+
react-dom@19.2.4:
|
|
1595
|
+
resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
|
|
1596
|
+
peerDependencies:
|
|
1597
|
+
react: ^19.2.4
|
|
1598
|
+
|
|
1599
|
+
react-markdown@10.1.0:
|
|
1600
|
+
resolution: {integrity: sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==}
|
|
1601
|
+
peerDependencies:
|
|
1602
|
+
'@types/react': '>=18'
|
|
1603
|
+
react: '>=18'
|
|
1604
|
+
|
|
1605
|
+
react@19.2.4:
|
|
1606
|
+
resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
|
|
1607
|
+
engines: {node: '>=0.10.0'}
|
|
1608
|
+
|
|
1609
|
+
readable-stream@3.6.2:
|
|
1610
|
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
1611
|
+
engines: {node: '>= 6'}
|
|
1612
|
+
|
|
1613
|
+
remark-gfm@4.0.1:
|
|
1614
|
+
resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
|
|
1615
|
+
|
|
1616
|
+
remark-parse@11.0.0:
|
|
1617
|
+
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
|
|
1618
|
+
|
|
1619
|
+
remark-rehype@11.1.2:
|
|
1620
|
+
resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
|
|
1621
|
+
|
|
1622
|
+
remark-stringify@11.0.0:
|
|
1623
|
+
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
|
|
1624
|
+
|
|
1625
|
+
require-from-string@2.0.2:
|
|
1626
|
+
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
1627
|
+
engines: {node: '>=0.10.0'}
|
|
1628
|
+
|
|
1629
|
+
resolve-pkg-maps@1.0.0:
|
|
1630
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1631
|
+
|
|
1632
|
+
router@2.2.0:
|
|
1633
|
+
resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
|
|
1634
|
+
engines: {node: '>= 18'}
|
|
1635
|
+
|
|
1636
|
+
safe-buffer@5.2.1:
|
|
1637
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
1638
|
+
|
|
1639
|
+
safer-buffer@2.1.2:
|
|
1640
|
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
1641
|
+
|
|
1642
|
+
scheduler@0.27.0:
|
|
1643
|
+
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
|
|
1644
|
+
|
|
1645
|
+
semver@7.7.4:
|
|
1646
|
+
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
1647
|
+
engines: {node: '>=10'}
|
|
1648
|
+
hasBin: true
|
|
1649
|
+
|
|
1650
|
+
send@1.2.1:
|
|
1651
|
+
resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
|
|
1652
|
+
engines: {node: '>= 18'}
|
|
1653
|
+
|
|
1654
|
+
serve-static@2.2.1:
|
|
1655
|
+
resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
|
|
1656
|
+
engines: {node: '>= 18'}
|
|
1657
|
+
|
|
1658
|
+
setprototypeof@1.2.0:
|
|
1659
|
+
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
|
|
1660
|
+
|
|
1661
|
+
sharp@0.34.5:
|
|
1662
|
+
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
|
|
1663
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1664
|
+
|
|
1665
|
+
shebang-command@2.0.0:
|
|
1666
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1667
|
+
engines: {node: '>=8'}
|
|
1668
|
+
|
|
1669
|
+
shebang-regex@3.0.0:
|
|
1670
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1671
|
+
engines: {node: '>=8'}
|
|
1672
|
+
|
|
1673
|
+
side-channel-list@1.0.0:
|
|
1674
|
+
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
|
|
1675
|
+
engines: {node: '>= 0.4'}
|
|
1676
|
+
|
|
1677
|
+
side-channel-map@1.0.1:
|
|
1678
|
+
resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
|
|
1679
|
+
engines: {node: '>= 0.4'}
|
|
1680
|
+
|
|
1681
|
+
side-channel-weakmap@1.0.2:
|
|
1682
|
+
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
|
|
1683
|
+
engines: {node: '>= 0.4'}
|
|
1684
|
+
|
|
1685
|
+
side-channel@1.1.0:
|
|
1686
|
+
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
|
|
1687
|
+
engines: {node: '>= 0.4'}
|
|
1688
|
+
|
|
1689
|
+
simple-concat@1.0.1:
|
|
1690
|
+
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
|
|
1691
|
+
|
|
1692
|
+
simple-get@4.0.1:
|
|
1693
|
+
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
|
|
1694
|
+
|
|
1695
|
+
source-map-js@1.2.1:
|
|
1696
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1697
|
+
engines: {node: '>=0.10.0'}
|
|
1698
|
+
|
|
1699
|
+
space-separated-tokens@2.0.2:
|
|
1700
|
+
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
|
|
1701
|
+
|
|
1702
|
+
statuses@2.0.2:
|
|
1703
|
+
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
|
|
1704
|
+
engines: {node: '>= 0.8'}
|
|
1705
|
+
|
|
1706
|
+
string_decoder@1.3.0:
|
|
1707
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
1708
|
+
|
|
1709
|
+
stringify-entities@4.0.4:
|
|
1710
|
+
resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
|
|
1711
|
+
|
|
1712
|
+
strip-json-comments@2.0.1:
|
|
1713
|
+
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
|
|
1714
|
+
engines: {node: '>=0.10.0'}
|
|
1715
|
+
|
|
1716
|
+
style-to-js@1.1.21:
|
|
1717
|
+
resolution: {integrity: sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==}
|
|
1718
|
+
|
|
1719
|
+
style-to-object@1.0.14:
|
|
1720
|
+
resolution: {integrity: sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==}
|
|
1721
|
+
|
|
1722
|
+
styled-jsx@5.1.6:
|
|
1723
|
+
resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
|
|
1724
|
+
engines: {node: '>= 12.0.0'}
|
|
1725
|
+
peerDependencies:
|
|
1726
|
+
'@babel/core': '*'
|
|
1727
|
+
babel-plugin-macros: '*'
|
|
1728
|
+
react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
|
|
1729
|
+
peerDependenciesMeta:
|
|
1730
|
+
'@babel/core':
|
|
1731
|
+
optional: true
|
|
1732
|
+
babel-plugin-macros:
|
|
1733
|
+
optional: true
|
|
1734
|
+
|
|
1735
|
+
tailwindcss@4.2.1:
|
|
1736
|
+
resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
|
|
1737
|
+
|
|
1738
|
+
tapable@2.3.0:
|
|
1739
|
+
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
1740
|
+
engines: {node: '>=6'}
|
|
1741
|
+
|
|
1742
|
+
tar-fs@2.1.4:
|
|
1743
|
+
resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==}
|
|
1744
|
+
|
|
1745
|
+
tar-stream@2.2.0:
|
|
1746
|
+
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
|
|
1747
|
+
engines: {node: '>=6'}
|
|
1748
|
+
|
|
1749
|
+
toidentifier@1.0.1:
|
|
1750
|
+
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
|
|
1751
|
+
engines: {node: '>=0.6'}
|
|
1752
|
+
|
|
1753
|
+
trim-lines@3.0.1:
|
|
1754
|
+
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
|
|
1755
|
+
|
|
1756
|
+
trough@2.2.0:
|
|
1757
|
+
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
|
|
1758
|
+
|
|
1759
|
+
tslib@2.8.1:
|
|
1760
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1761
|
+
|
|
1762
|
+
tsx@4.21.0:
|
|
1763
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
1764
|
+
engines: {node: '>=18.0.0'}
|
|
1765
|
+
hasBin: true
|
|
1766
|
+
|
|
1767
|
+
tunnel-agent@0.6.0:
|
|
1768
|
+
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
|
1769
|
+
|
|
1770
|
+
type-is@2.0.1:
|
|
1771
|
+
resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
|
|
1772
|
+
engines: {node: '>= 0.6'}
|
|
1773
|
+
|
|
1774
|
+
typescript@5.9.3:
|
|
1775
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1776
|
+
engines: {node: '>=14.17'}
|
|
1777
|
+
hasBin: true
|
|
1778
|
+
|
|
1779
|
+
undici-types@7.18.2:
|
|
1780
|
+
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
|
|
1781
|
+
|
|
1782
|
+
unified@11.0.5:
|
|
1783
|
+
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
|
|
1784
|
+
|
|
1785
|
+
unist-util-is@6.0.1:
|
|
1786
|
+
resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
|
|
1787
|
+
|
|
1788
|
+
unist-util-position@5.0.0:
|
|
1789
|
+
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
|
|
1790
|
+
|
|
1791
|
+
unist-util-stringify-position@4.0.0:
|
|
1792
|
+
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
|
|
1793
|
+
|
|
1794
|
+
unist-util-visit-parents@6.0.2:
|
|
1795
|
+
resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
|
|
1796
|
+
|
|
1797
|
+
unist-util-visit@5.1.0:
|
|
1798
|
+
resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
|
|
1799
|
+
|
|
1800
|
+
unpipe@1.0.0:
|
|
1801
|
+
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
|
|
1802
|
+
engines: {node: '>= 0.8'}
|
|
1803
|
+
|
|
1804
|
+
use-sync-external-store@1.6.0:
|
|
1805
|
+
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
|
|
1806
|
+
peerDependencies:
|
|
1807
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1808
|
+
|
|
1809
|
+
util-deprecate@1.0.2:
|
|
1810
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
1811
|
+
|
|
1812
|
+
vary@1.1.2:
|
|
1813
|
+
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
|
1814
|
+
engines: {node: '>= 0.8'}
|
|
1815
|
+
|
|
1816
|
+
vfile-message@4.0.3:
|
|
1817
|
+
resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
|
|
1818
|
+
|
|
1819
|
+
vfile@6.0.3:
|
|
1820
|
+
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
|
1821
|
+
|
|
1822
|
+
which@2.0.2:
|
|
1823
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1824
|
+
engines: {node: '>= 8'}
|
|
1825
|
+
hasBin: true
|
|
1826
|
+
|
|
1827
|
+
wrappy@1.0.2:
|
|
1828
|
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
1829
|
+
|
|
1830
|
+
ws@8.19.0:
|
|
1831
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
1832
|
+
engines: {node: '>=10.0.0'}
|
|
1833
|
+
peerDependencies:
|
|
1834
|
+
bufferutil: ^4.0.1
|
|
1835
|
+
utf-8-validate: '>=5.0.2'
|
|
1836
|
+
peerDependenciesMeta:
|
|
1837
|
+
bufferutil:
|
|
1838
|
+
optional: true
|
|
1839
|
+
utf-8-validate:
|
|
1840
|
+
optional: true
|
|
1841
|
+
|
|
1842
|
+
yaml@2.8.2:
|
|
1843
|
+
resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
|
|
1844
|
+
engines: {node: '>= 14.6'}
|
|
1845
|
+
hasBin: true
|
|
1846
|
+
|
|
1847
|
+
zod-to-json-schema@3.25.2:
|
|
1848
|
+
resolution: {integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==}
|
|
1849
|
+
peerDependencies:
|
|
1850
|
+
zod: ^3.25.28 || ^4
|
|
1851
|
+
|
|
1852
|
+
zod@4.3.6:
|
|
1853
|
+
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
|
|
1854
|
+
|
|
1855
|
+
zustand@4.5.7:
|
|
1856
|
+
resolution: {integrity: sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==}
|
|
1857
|
+
engines: {node: '>=12.7.0'}
|
|
1858
|
+
peerDependencies:
|
|
1859
|
+
'@types/react': '>=16.8'
|
|
1860
|
+
immer: '>=9.0.6'
|
|
1861
|
+
react: '>=16.8'
|
|
1862
|
+
peerDependenciesMeta:
|
|
1863
|
+
'@types/react':
|
|
1864
|
+
optional: true
|
|
1865
|
+
immer:
|
|
1866
|
+
optional: true
|
|
1867
|
+
react:
|
|
1868
|
+
optional: true
|
|
1869
|
+
|
|
1870
|
+
zwitch@2.0.4:
|
|
1871
|
+
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
|
|
1872
|
+
|
|
1873
|
+
snapshots:
|
|
1874
|
+
|
|
1875
|
+
'@ai-sdk/anthropic@3.0.58(zod@4.3.6)':
|
|
1876
|
+
dependencies:
|
|
1877
|
+
'@ai-sdk/provider': 3.0.8
|
|
1878
|
+
'@ai-sdk/provider-utils': 4.0.19(zod@4.3.6)
|
|
1879
|
+
zod: 4.3.6
|
|
1880
|
+
|
|
1881
|
+
'@ai-sdk/gateway@3.0.66(zod@4.3.6)':
|
|
1882
|
+
dependencies:
|
|
1883
|
+
'@ai-sdk/provider': 3.0.8
|
|
1884
|
+
'@ai-sdk/provider-utils': 4.0.19(zod@4.3.6)
|
|
1885
|
+
'@vercel/oidc': 3.1.0
|
|
1886
|
+
zod: 4.3.6
|
|
1887
|
+
|
|
1888
|
+
'@ai-sdk/google@3.0.43(zod@4.3.6)':
|
|
1889
|
+
dependencies:
|
|
1890
|
+
'@ai-sdk/provider': 3.0.8
|
|
1891
|
+
'@ai-sdk/provider-utils': 4.0.19(zod@4.3.6)
|
|
1892
|
+
zod: 4.3.6
|
|
1893
|
+
|
|
1894
|
+
'@ai-sdk/openai@3.0.41(zod@4.3.6)':
|
|
1895
|
+
dependencies:
|
|
1896
|
+
'@ai-sdk/provider': 3.0.8
|
|
1897
|
+
'@ai-sdk/provider-utils': 4.0.19(zod@4.3.6)
|
|
1898
|
+
zod: 4.3.6
|
|
1899
|
+
|
|
1900
|
+
'@ai-sdk/provider-utils@4.0.19(zod@4.3.6)':
|
|
1901
|
+
dependencies:
|
|
1902
|
+
'@ai-sdk/provider': 3.0.8
|
|
1903
|
+
'@standard-schema/spec': 1.1.0
|
|
1904
|
+
eventsource-parser: 3.0.6
|
|
1905
|
+
zod: 4.3.6
|
|
1906
|
+
|
|
1907
|
+
'@ai-sdk/provider@3.0.8':
|
|
1908
|
+
dependencies:
|
|
1909
|
+
json-schema: 0.4.0
|
|
1910
|
+
|
|
1911
|
+
'@alloc/quick-lru@5.2.0': {}
|
|
1912
|
+
|
|
1913
|
+
'@auth/core@0.34.3':
|
|
1914
|
+
dependencies:
|
|
1915
|
+
'@panva/hkdf': 1.2.1
|
|
1916
|
+
'@types/cookie': 0.6.0
|
|
1917
|
+
cookie: 0.6.0
|
|
1918
|
+
jose: 5.10.0
|
|
1919
|
+
oauth4webapi: 2.17.0
|
|
1920
|
+
preact: 10.11.3
|
|
1921
|
+
preact-render-to-string: 5.2.3(preact@10.11.3)
|
|
1922
|
+
|
|
1923
|
+
'@auth/core@0.41.0':
|
|
1924
|
+
dependencies:
|
|
1925
|
+
'@panva/hkdf': 1.2.1
|
|
1926
|
+
jose: 6.2.1
|
|
1927
|
+
oauth4webapi: 3.8.5
|
|
1928
|
+
preact: 10.24.3
|
|
1929
|
+
preact-render-to-string: 6.5.11(preact@10.24.3)
|
|
1930
|
+
|
|
1931
|
+
'@emnapi/runtime@1.8.1':
|
|
1932
|
+
dependencies:
|
|
1933
|
+
tslib: 2.8.1
|
|
1934
|
+
optional: true
|
|
1935
|
+
|
|
1936
|
+
'@esbuild/aix-ppc64@0.27.3':
|
|
1937
|
+
optional: true
|
|
1938
|
+
|
|
1939
|
+
'@esbuild/android-arm64@0.27.3':
|
|
1940
|
+
optional: true
|
|
1941
|
+
|
|
1942
|
+
'@esbuild/android-arm@0.27.3':
|
|
1943
|
+
optional: true
|
|
1944
|
+
|
|
1945
|
+
'@esbuild/android-x64@0.27.3':
|
|
1946
|
+
optional: true
|
|
1947
|
+
|
|
1948
|
+
'@esbuild/darwin-arm64@0.27.3':
|
|
1949
|
+
optional: true
|
|
1950
|
+
|
|
1951
|
+
'@esbuild/darwin-x64@0.27.3':
|
|
1952
|
+
optional: true
|
|
1953
|
+
|
|
1954
|
+
'@esbuild/freebsd-arm64@0.27.3':
|
|
1955
|
+
optional: true
|
|
1956
|
+
|
|
1957
|
+
'@esbuild/freebsd-x64@0.27.3':
|
|
1958
|
+
optional: true
|
|
1959
|
+
|
|
1960
|
+
'@esbuild/linux-arm64@0.27.3':
|
|
1961
|
+
optional: true
|
|
1962
|
+
|
|
1963
|
+
'@esbuild/linux-arm@0.27.3':
|
|
1964
|
+
optional: true
|
|
1965
|
+
|
|
1966
|
+
'@esbuild/linux-ia32@0.27.3':
|
|
1967
|
+
optional: true
|
|
1968
|
+
|
|
1969
|
+
'@esbuild/linux-loong64@0.27.3':
|
|
1970
|
+
optional: true
|
|
1971
|
+
|
|
1972
|
+
'@esbuild/linux-mips64el@0.27.3':
|
|
1973
|
+
optional: true
|
|
1974
|
+
|
|
1975
|
+
'@esbuild/linux-ppc64@0.27.3':
|
|
1976
|
+
optional: true
|
|
1977
|
+
|
|
1978
|
+
'@esbuild/linux-riscv64@0.27.3':
|
|
1979
|
+
optional: true
|
|
1980
|
+
|
|
1981
|
+
'@esbuild/linux-s390x@0.27.3':
|
|
1982
|
+
optional: true
|
|
1983
|
+
|
|
1984
|
+
'@esbuild/linux-x64@0.27.3':
|
|
1985
|
+
optional: true
|
|
1986
|
+
|
|
1987
|
+
'@esbuild/netbsd-arm64@0.27.3':
|
|
1988
|
+
optional: true
|
|
1989
|
+
|
|
1990
|
+
'@esbuild/netbsd-x64@0.27.3':
|
|
1991
|
+
optional: true
|
|
1992
|
+
|
|
1993
|
+
'@esbuild/openbsd-arm64@0.27.3':
|
|
1994
|
+
optional: true
|
|
1995
|
+
|
|
1996
|
+
'@esbuild/openbsd-x64@0.27.3':
|
|
1997
|
+
optional: true
|
|
1998
|
+
|
|
1999
|
+
'@esbuild/openharmony-arm64@0.27.3':
|
|
2000
|
+
optional: true
|
|
2001
|
+
|
|
2002
|
+
'@esbuild/sunos-x64@0.27.3':
|
|
2003
|
+
optional: true
|
|
2004
|
+
|
|
2005
|
+
'@esbuild/win32-arm64@0.27.3':
|
|
2006
|
+
optional: true
|
|
2007
|
+
|
|
2008
|
+
'@esbuild/win32-ia32@0.27.3':
|
|
2009
|
+
optional: true
|
|
2010
|
+
|
|
2011
|
+
'@esbuild/win32-x64@0.27.3':
|
|
2012
|
+
optional: true
|
|
2013
|
+
|
|
2014
|
+
'@hono/node-server@1.19.12(hono@4.12.9)':
|
|
2015
|
+
dependencies:
|
|
2016
|
+
hono: 4.12.9
|
|
2017
|
+
|
|
2018
|
+
'@img/colour@1.1.0':
|
|
2019
|
+
optional: true
|
|
2020
|
+
|
|
2021
|
+
'@img/sharp-darwin-arm64@0.34.5':
|
|
2022
|
+
optionalDependencies:
|
|
2023
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
2024
|
+
optional: true
|
|
2025
|
+
|
|
2026
|
+
'@img/sharp-darwin-x64@0.34.5':
|
|
2027
|
+
optionalDependencies:
|
|
2028
|
+
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
2029
|
+
optional: true
|
|
2030
|
+
|
|
2031
|
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
2032
|
+
optional: true
|
|
2033
|
+
|
|
2034
|
+
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
2035
|
+
optional: true
|
|
2036
|
+
|
|
2037
|
+
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
2038
|
+
optional: true
|
|
2039
|
+
|
|
2040
|
+
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
2041
|
+
optional: true
|
|
2042
|
+
|
|
2043
|
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
2044
|
+
optional: true
|
|
2045
|
+
|
|
2046
|
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
2047
|
+
optional: true
|
|
2048
|
+
|
|
2049
|
+
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
2050
|
+
optional: true
|
|
2051
|
+
|
|
2052
|
+
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
2053
|
+
optional: true
|
|
2054
|
+
|
|
2055
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
2056
|
+
optional: true
|
|
2057
|
+
|
|
2058
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
2059
|
+
optional: true
|
|
2060
|
+
|
|
2061
|
+
'@img/sharp-linux-arm64@0.34.5':
|
|
2062
|
+
optionalDependencies:
|
|
2063
|
+
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
2064
|
+
optional: true
|
|
2065
|
+
|
|
2066
|
+
'@img/sharp-linux-arm@0.34.5':
|
|
2067
|
+
optionalDependencies:
|
|
2068
|
+
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
2069
|
+
optional: true
|
|
2070
|
+
|
|
2071
|
+
'@img/sharp-linux-ppc64@0.34.5':
|
|
2072
|
+
optionalDependencies:
|
|
2073
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
2074
|
+
optional: true
|
|
2075
|
+
|
|
2076
|
+
'@img/sharp-linux-riscv64@0.34.5':
|
|
2077
|
+
optionalDependencies:
|
|
2078
|
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
2079
|
+
optional: true
|
|
2080
|
+
|
|
2081
|
+
'@img/sharp-linux-s390x@0.34.5':
|
|
2082
|
+
optionalDependencies:
|
|
2083
|
+
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
2084
|
+
optional: true
|
|
2085
|
+
|
|
2086
|
+
'@img/sharp-linux-x64@0.34.5':
|
|
2087
|
+
optionalDependencies:
|
|
2088
|
+
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
2089
|
+
optional: true
|
|
2090
|
+
|
|
2091
|
+
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
2092
|
+
optionalDependencies:
|
|
2093
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
2094
|
+
optional: true
|
|
2095
|
+
|
|
2096
|
+
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
2097
|
+
optionalDependencies:
|
|
2098
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
2099
|
+
optional: true
|
|
2100
|
+
|
|
2101
|
+
'@img/sharp-wasm32@0.34.5':
|
|
2102
|
+
dependencies:
|
|
2103
|
+
'@emnapi/runtime': 1.8.1
|
|
2104
|
+
optional: true
|
|
2105
|
+
|
|
2106
|
+
'@img/sharp-win32-arm64@0.34.5':
|
|
2107
|
+
optional: true
|
|
2108
|
+
|
|
2109
|
+
'@img/sharp-win32-ia32@0.34.5':
|
|
2110
|
+
optional: true
|
|
2111
|
+
|
|
2112
|
+
'@img/sharp-win32-x64@0.34.5':
|
|
2113
|
+
optional: true
|
|
2114
|
+
|
|
2115
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
2116
|
+
dependencies:
|
|
2117
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2118
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2119
|
+
|
|
2120
|
+
'@jridgewell/remapping@2.3.5':
|
|
2121
|
+
dependencies:
|
|
2122
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2123
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2124
|
+
|
|
2125
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
2126
|
+
|
|
2127
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
2128
|
+
|
|
2129
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
2130
|
+
dependencies:
|
|
2131
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
2132
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2133
|
+
|
|
2134
|
+
'@modelcontextprotocol/sdk@1.28.0(zod@4.3.6)':
|
|
2135
|
+
dependencies:
|
|
2136
|
+
'@hono/node-server': 1.19.12(hono@4.12.9)
|
|
2137
|
+
ajv: 8.18.0
|
|
2138
|
+
ajv-formats: 3.0.1(ajv@8.18.0)
|
|
2139
|
+
content-type: 1.0.5
|
|
2140
|
+
cors: 2.8.6
|
|
2141
|
+
cross-spawn: 7.0.6
|
|
2142
|
+
eventsource: 3.0.7
|
|
2143
|
+
eventsource-parser: 3.0.6
|
|
2144
|
+
express: 5.2.1
|
|
2145
|
+
express-rate-limit: 8.3.1(express@5.2.1)
|
|
2146
|
+
hono: 4.12.9
|
|
2147
|
+
jose: 6.2.1
|
|
2148
|
+
json-schema-typed: 8.0.2
|
|
2149
|
+
pkce-challenge: 5.0.1
|
|
2150
|
+
raw-body: 3.0.2
|
|
2151
|
+
zod: 4.3.6
|
|
2152
|
+
zod-to-json-schema: 3.25.2(zod@4.3.6)
|
|
2153
|
+
transitivePeerDependencies:
|
|
2154
|
+
- supports-color
|
|
2155
|
+
|
|
2156
|
+
'@next/env@16.2.1': {}
|
|
2157
|
+
|
|
2158
|
+
'@next/swc-darwin-arm64@16.2.1':
|
|
2159
|
+
optional: true
|
|
2160
|
+
|
|
2161
|
+
'@next/swc-darwin-x64@16.2.1':
|
|
2162
|
+
optional: true
|
|
2163
|
+
|
|
2164
|
+
'@next/swc-linux-arm64-gnu@16.2.1':
|
|
2165
|
+
optional: true
|
|
2166
|
+
|
|
2167
|
+
'@next/swc-linux-arm64-musl@16.2.1':
|
|
2168
|
+
optional: true
|
|
2169
|
+
|
|
2170
|
+
'@next/swc-linux-x64-gnu@16.2.1':
|
|
2171
|
+
optional: true
|
|
2172
|
+
|
|
2173
|
+
'@next/swc-linux-x64-musl@16.2.1':
|
|
2174
|
+
optional: true
|
|
2175
|
+
|
|
2176
|
+
'@next/swc-win32-arm64-msvc@16.2.1':
|
|
2177
|
+
optional: true
|
|
2178
|
+
|
|
2179
|
+
'@next/swc-win32-x64-msvc@16.2.1':
|
|
2180
|
+
optional: true
|
|
2181
|
+
|
|
2182
|
+
'@opentelemetry/api@1.9.0': {}
|
|
2183
|
+
|
|
2184
|
+
'@panva/hkdf@1.2.1': {}
|
|
2185
|
+
|
|
2186
|
+
'@standard-schema/spec@1.1.0': {}
|
|
2187
|
+
|
|
2188
|
+
'@swc/helpers@0.5.15':
|
|
2189
|
+
dependencies:
|
|
2190
|
+
tslib: 2.8.1
|
|
2191
|
+
|
|
2192
|
+
'@tailwindcss/node@4.2.1':
|
|
2193
|
+
dependencies:
|
|
2194
|
+
'@jridgewell/remapping': 2.3.5
|
|
2195
|
+
enhanced-resolve: 5.20.0
|
|
2196
|
+
jiti: 2.6.1
|
|
2197
|
+
lightningcss: 1.31.1
|
|
2198
|
+
magic-string: 0.30.21
|
|
2199
|
+
source-map-js: 1.2.1
|
|
2200
|
+
tailwindcss: 4.2.1
|
|
2201
|
+
|
|
2202
|
+
'@tailwindcss/oxide-android-arm64@4.2.1':
|
|
2203
|
+
optional: true
|
|
2204
|
+
|
|
2205
|
+
'@tailwindcss/oxide-darwin-arm64@4.2.1':
|
|
2206
|
+
optional: true
|
|
2207
|
+
|
|
2208
|
+
'@tailwindcss/oxide-darwin-x64@4.2.1':
|
|
2209
|
+
optional: true
|
|
2210
|
+
|
|
2211
|
+
'@tailwindcss/oxide-freebsd-x64@4.2.1':
|
|
2212
|
+
optional: true
|
|
2213
|
+
|
|
2214
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
|
|
2215
|
+
optional: true
|
|
2216
|
+
|
|
2217
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
|
|
2218
|
+
optional: true
|
|
2219
|
+
|
|
2220
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.2.1':
|
|
2221
|
+
optional: true
|
|
2222
|
+
|
|
2223
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.2.1':
|
|
2224
|
+
optional: true
|
|
2225
|
+
|
|
2226
|
+
'@tailwindcss/oxide-linux-x64-musl@4.2.1':
|
|
2227
|
+
optional: true
|
|
2228
|
+
|
|
2229
|
+
'@tailwindcss/oxide-wasm32-wasi@4.2.1':
|
|
2230
|
+
optional: true
|
|
2231
|
+
|
|
2232
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
|
|
2233
|
+
optional: true
|
|
2234
|
+
|
|
2235
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.2.1':
|
|
2236
|
+
optional: true
|
|
2237
|
+
|
|
2238
|
+
'@tailwindcss/oxide@4.2.1':
|
|
2239
|
+
optionalDependencies:
|
|
2240
|
+
'@tailwindcss/oxide-android-arm64': 4.2.1
|
|
2241
|
+
'@tailwindcss/oxide-darwin-arm64': 4.2.1
|
|
2242
|
+
'@tailwindcss/oxide-darwin-x64': 4.2.1
|
|
2243
|
+
'@tailwindcss/oxide-freebsd-x64': 4.2.1
|
|
2244
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.1
|
|
2245
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.2.1
|
|
2246
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.2.1
|
|
2247
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.2.1
|
|
2248
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.2.1
|
|
2249
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.2.1
|
|
2250
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.2.1
|
|
2251
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.2.1
|
|
2252
|
+
|
|
2253
|
+
'@tailwindcss/postcss@4.2.1':
|
|
2254
|
+
dependencies:
|
|
2255
|
+
'@alloc/quick-lru': 5.2.0
|
|
2256
|
+
'@tailwindcss/node': 4.2.1
|
|
2257
|
+
'@tailwindcss/oxide': 4.2.1
|
|
2258
|
+
postcss: 8.5.8
|
|
2259
|
+
tailwindcss: 4.2.1
|
|
2260
|
+
|
|
2261
|
+
'@types/better-sqlite3@7.6.13':
|
|
2262
|
+
dependencies:
|
|
2263
|
+
'@types/node': 25.4.0
|
|
2264
|
+
|
|
2265
|
+
'@types/cookie@0.6.0': {}
|
|
2266
|
+
|
|
2267
|
+
'@types/d3-color@3.1.3': {}
|
|
2268
|
+
|
|
2269
|
+
'@types/d3-drag@3.0.7':
|
|
2270
|
+
dependencies:
|
|
2271
|
+
'@types/d3-selection': 3.0.11
|
|
2272
|
+
|
|
2273
|
+
'@types/d3-interpolate@3.0.4':
|
|
2274
|
+
dependencies:
|
|
2275
|
+
'@types/d3-color': 3.1.3
|
|
2276
|
+
|
|
2277
|
+
'@types/d3-selection@3.0.11': {}
|
|
2278
|
+
|
|
2279
|
+
'@types/d3-transition@3.0.9':
|
|
2280
|
+
dependencies:
|
|
2281
|
+
'@types/d3-selection': 3.0.11
|
|
2282
|
+
|
|
2283
|
+
'@types/d3-zoom@3.0.8':
|
|
2284
|
+
dependencies:
|
|
2285
|
+
'@types/d3-interpolate': 3.0.4
|
|
2286
|
+
'@types/d3-selection': 3.0.11
|
|
2287
|
+
|
|
2288
|
+
'@types/debug@4.1.12':
|
|
2289
|
+
dependencies:
|
|
2290
|
+
'@types/ms': 2.1.0
|
|
2291
|
+
|
|
2292
|
+
'@types/estree-jsx@1.0.5':
|
|
2293
|
+
dependencies:
|
|
2294
|
+
'@types/estree': 1.0.8
|
|
2295
|
+
|
|
2296
|
+
'@types/estree@1.0.8': {}
|
|
2297
|
+
|
|
2298
|
+
'@types/hast@3.0.4':
|
|
2299
|
+
dependencies:
|
|
2300
|
+
'@types/unist': 3.0.3
|
|
2301
|
+
|
|
2302
|
+
'@types/mdast@4.0.4':
|
|
2303
|
+
dependencies:
|
|
2304
|
+
'@types/unist': 3.0.3
|
|
2305
|
+
|
|
2306
|
+
'@types/ms@2.1.0': {}
|
|
2307
|
+
|
|
2308
|
+
'@types/node@25.4.0':
|
|
2309
|
+
dependencies:
|
|
2310
|
+
undici-types: 7.18.2
|
|
2311
|
+
|
|
2312
|
+
'@types/react-dom@19.2.3(@types/react@19.2.14)':
|
|
2313
|
+
dependencies:
|
|
2314
|
+
'@types/react': 19.2.14
|
|
2315
|
+
|
|
2316
|
+
'@types/react@19.2.14':
|
|
2317
|
+
dependencies:
|
|
2318
|
+
csstype: 3.2.3
|
|
2319
|
+
|
|
2320
|
+
'@types/unist@2.0.11': {}
|
|
2321
|
+
|
|
2322
|
+
'@types/unist@3.0.3': {}
|
|
2323
|
+
|
|
2324
|
+
'@types/ws@8.18.1':
|
|
2325
|
+
dependencies:
|
|
2326
|
+
'@types/node': 25.4.0
|
|
2327
|
+
|
|
2328
|
+
'@ungap/structured-clone@1.3.0': {}
|
|
2329
|
+
|
|
2330
|
+
'@vercel/oidc@3.1.0': {}
|
|
2331
|
+
|
|
2332
|
+
'@xterm/addon-fit@0.11.0': {}
|
|
2333
|
+
|
|
2334
|
+
'@xterm/addon-search@0.16.0': {}
|
|
2335
|
+
|
|
2336
|
+
'@xterm/addon-unicode11@0.9.0': {}
|
|
2337
|
+
|
|
2338
|
+
'@xterm/addon-webgl@0.19.0': {}
|
|
2339
|
+
|
|
2340
|
+
'@xterm/xterm@6.0.0': {}
|
|
2341
|
+
|
|
2342
|
+
'@xyflow/react@12.10.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
|
|
2343
|
+
dependencies:
|
|
2344
|
+
'@xyflow/system': 0.0.75
|
|
2345
|
+
classcat: 5.0.5
|
|
2346
|
+
react: 19.2.4
|
|
2347
|
+
react-dom: 19.2.4(react@19.2.4)
|
|
2348
|
+
zustand: 4.5.7(@types/react@19.2.14)(react@19.2.4)
|
|
2349
|
+
transitivePeerDependencies:
|
|
2350
|
+
- '@types/react'
|
|
2351
|
+
- immer
|
|
2352
|
+
|
|
2353
|
+
'@xyflow/system@0.0.75':
|
|
2354
|
+
dependencies:
|
|
2355
|
+
'@types/d3-drag': 3.0.7
|
|
2356
|
+
'@types/d3-interpolate': 3.0.4
|
|
2357
|
+
'@types/d3-selection': 3.0.11
|
|
2358
|
+
'@types/d3-transition': 3.0.9
|
|
2359
|
+
'@types/d3-zoom': 3.0.8
|
|
2360
|
+
d3-drag: 3.0.0
|
|
2361
|
+
d3-interpolate: 3.0.1
|
|
2362
|
+
d3-selection: 3.0.0
|
|
2363
|
+
d3-zoom: 3.0.0
|
|
2364
|
+
|
|
2365
|
+
accepts@2.0.0:
|
|
2366
|
+
dependencies:
|
|
2367
|
+
mime-types: 3.0.2
|
|
2368
|
+
negotiator: 1.0.0
|
|
2369
|
+
|
|
2370
|
+
ai@6.0.116(zod@4.3.6):
|
|
2371
|
+
dependencies:
|
|
2372
|
+
'@ai-sdk/gateway': 3.0.66(zod@4.3.6)
|
|
2373
|
+
'@ai-sdk/provider': 3.0.8
|
|
2374
|
+
'@ai-sdk/provider-utils': 4.0.19(zod@4.3.6)
|
|
2375
|
+
'@opentelemetry/api': 1.9.0
|
|
2376
|
+
zod: 4.3.6
|
|
2377
|
+
|
|
2378
|
+
ajv-formats@3.0.1(ajv@8.18.0):
|
|
2379
|
+
optionalDependencies:
|
|
2380
|
+
ajv: 8.18.0
|
|
2381
|
+
|
|
2382
|
+
ajv@8.18.0:
|
|
2383
|
+
dependencies:
|
|
2384
|
+
fast-deep-equal: 3.1.3
|
|
2385
|
+
fast-uri: 3.1.0
|
|
2386
|
+
json-schema-traverse: 1.0.0
|
|
2387
|
+
require-from-string: 2.0.2
|
|
2388
|
+
|
|
2389
|
+
bail@2.0.2: {}
|
|
2390
|
+
|
|
2391
|
+
base64-js@1.5.1: {}
|
|
2392
|
+
|
|
2393
|
+
baseline-browser-mapping@2.10.0: {}
|
|
2394
|
+
|
|
2395
|
+
better-sqlite3@12.6.2:
|
|
2396
|
+
dependencies:
|
|
2397
|
+
bindings: 1.5.0
|
|
2398
|
+
prebuild-install: 7.1.3
|
|
2399
|
+
|
|
2400
|
+
bindings@1.5.0:
|
|
2401
|
+
dependencies:
|
|
2402
|
+
file-uri-to-path: 1.0.0
|
|
2403
|
+
|
|
2404
|
+
bl@4.1.0:
|
|
2405
|
+
dependencies:
|
|
2406
|
+
buffer: 5.7.1
|
|
2407
|
+
inherits: 2.0.4
|
|
2408
|
+
readable-stream: 3.6.2
|
|
2409
|
+
|
|
2410
|
+
body-parser@2.2.2:
|
|
2411
|
+
dependencies:
|
|
2412
|
+
bytes: 3.1.2
|
|
2413
|
+
content-type: 1.0.5
|
|
2414
|
+
debug: 4.4.3
|
|
2415
|
+
http-errors: 2.0.1
|
|
2416
|
+
iconv-lite: 0.7.2
|
|
2417
|
+
on-finished: 2.4.1
|
|
2418
|
+
qs: 6.15.0
|
|
2419
|
+
raw-body: 3.0.2
|
|
2420
|
+
type-is: 2.0.1
|
|
2421
|
+
transitivePeerDependencies:
|
|
2422
|
+
- supports-color
|
|
2423
|
+
|
|
2424
|
+
buffer@5.7.1:
|
|
2425
|
+
dependencies:
|
|
2426
|
+
base64-js: 1.5.1
|
|
2427
|
+
ieee754: 1.2.1
|
|
2428
|
+
|
|
2429
|
+
bytes@3.1.2: {}
|
|
2430
|
+
|
|
2431
|
+
call-bind-apply-helpers@1.0.2:
|
|
2432
|
+
dependencies:
|
|
2433
|
+
es-errors: 1.3.0
|
|
2434
|
+
function-bind: 1.1.2
|
|
2435
|
+
|
|
2436
|
+
call-bound@1.0.4:
|
|
2437
|
+
dependencies:
|
|
2438
|
+
call-bind-apply-helpers: 1.0.2
|
|
2439
|
+
get-intrinsic: 1.3.0
|
|
2440
|
+
|
|
2441
|
+
caniuse-lite@1.0.30001777: {}
|
|
2442
|
+
|
|
2443
|
+
ccount@2.0.1: {}
|
|
2444
|
+
|
|
2445
|
+
character-entities-html4@2.1.0: {}
|
|
2446
|
+
|
|
2447
|
+
character-entities-legacy@3.0.0: {}
|
|
2448
|
+
|
|
2449
|
+
character-entities@2.0.2: {}
|
|
2450
|
+
|
|
2451
|
+
character-reference-invalid@2.0.1: {}
|
|
2452
|
+
|
|
2453
|
+
chownr@1.1.4: {}
|
|
2454
|
+
|
|
2455
|
+
classcat@5.0.5: {}
|
|
2456
|
+
|
|
2457
|
+
client-only@0.0.1: {}
|
|
2458
|
+
|
|
2459
|
+
comma-separated-tokens@2.0.3: {}
|
|
2460
|
+
|
|
2461
|
+
content-disposition@1.0.1: {}
|
|
2462
|
+
|
|
2463
|
+
content-type@1.0.5: {}
|
|
2464
|
+
|
|
2465
|
+
cookie-signature@1.2.2: {}
|
|
2466
|
+
|
|
2467
|
+
cookie@0.6.0: {}
|
|
2468
|
+
|
|
2469
|
+
cookie@0.7.2: {}
|
|
2470
|
+
|
|
2471
|
+
cors@2.8.6:
|
|
2472
|
+
dependencies:
|
|
2473
|
+
object-assign: 4.1.1
|
|
2474
|
+
vary: 1.1.2
|
|
2475
|
+
|
|
2476
|
+
cross-spawn@7.0.6:
|
|
2477
|
+
dependencies:
|
|
2478
|
+
path-key: 3.1.1
|
|
2479
|
+
shebang-command: 2.0.0
|
|
2480
|
+
which: 2.0.2
|
|
2481
|
+
|
|
2482
|
+
csstype@3.2.3: {}
|
|
2483
|
+
|
|
2484
|
+
d3-color@3.1.0: {}
|
|
2485
|
+
|
|
2486
|
+
d3-dispatch@3.0.1: {}
|
|
2487
|
+
|
|
2488
|
+
d3-drag@3.0.0:
|
|
2489
|
+
dependencies:
|
|
2490
|
+
d3-dispatch: 3.0.1
|
|
2491
|
+
d3-selection: 3.0.0
|
|
2492
|
+
|
|
2493
|
+
d3-ease@3.0.1: {}
|
|
2494
|
+
|
|
2495
|
+
d3-interpolate@3.0.1:
|
|
2496
|
+
dependencies:
|
|
2497
|
+
d3-color: 3.1.0
|
|
2498
|
+
|
|
2499
|
+
d3-selection@3.0.0: {}
|
|
2500
|
+
|
|
2501
|
+
d3-timer@3.0.1: {}
|
|
2502
|
+
|
|
2503
|
+
d3-transition@3.0.1(d3-selection@3.0.0):
|
|
2504
|
+
dependencies:
|
|
2505
|
+
d3-color: 3.1.0
|
|
2506
|
+
d3-dispatch: 3.0.1
|
|
2507
|
+
d3-ease: 3.0.1
|
|
2508
|
+
d3-interpolate: 3.0.1
|
|
2509
|
+
d3-selection: 3.0.0
|
|
2510
|
+
d3-timer: 3.0.1
|
|
2511
|
+
|
|
2512
|
+
d3-zoom@3.0.0:
|
|
2513
|
+
dependencies:
|
|
2514
|
+
d3-dispatch: 3.0.1
|
|
2515
|
+
d3-drag: 3.0.0
|
|
2516
|
+
d3-interpolate: 3.0.1
|
|
2517
|
+
d3-selection: 3.0.0
|
|
2518
|
+
d3-transition: 3.0.1(d3-selection@3.0.0)
|
|
2519
|
+
|
|
2520
|
+
debug@4.4.3:
|
|
2521
|
+
dependencies:
|
|
2522
|
+
ms: 2.1.3
|
|
2523
|
+
|
|
2524
|
+
decode-named-character-reference@1.3.0:
|
|
2525
|
+
dependencies:
|
|
2526
|
+
character-entities: 2.0.2
|
|
2527
|
+
|
|
2528
|
+
decompress-response@6.0.0:
|
|
2529
|
+
dependencies:
|
|
2530
|
+
mimic-response: 3.1.0
|
|
2531
|
+
|
|
2532
|
+
deep-extend@0.6.0: {}
|
|
2533
|
+
|
|
2534
|
+
depd@2.0.0: {}
|
|
2535
|
+
|
|
2536
|
+
dequal@2.0.3: {}
|
|
2537
|
+
|
|
2538
|
+
detect-libc@2.1.2: {}
|
|
2539
|
+
|
|
2540
|
+
devlop@1.1.0:
|
|
2541
|
+
dependencies:
|
|
2542
|
+
dequal: 2.0.3
|
|
2543
|
+
|
|
2544
|
+
dunder-proto@1.0.1:
|
|
2545
|
+
dependencies:
|
|
2546
|
+
call-bind-apply-helpers: 1.0.2
|
|
2547
|
+
es-errors: 1.3.0
|
|
2548
|
+
gopd: 1.2.0
|
|
2549
|
+
|
|
2550
|
+
ee-first@1.1.1: {}
|
|
2551
|
+
|
|
2552
|
+
encodeurl@2.0.0: {}
|
|
2553
|
+
|
|
2554
|
+
end-of-stream@1.4.5:
|
|
2555
|
+
dependencies:
|
|
2556
|
+
once: 1.4.0
|
|
2557
|
+
|
|
2558
|
+
enhanced-resolve@5.20.0:
|
|
2559
|
+
dependencies:
|
|
2560
|
+
graceful-fs: 4.2.11
|
|
2561
|
+
tapable: 2.3.0
|
|
2562
|
+
|
|
2563
|
+
es-define-property@1.0.1: {}
|
|
2564
|
+
|
|
2565
|
+
es-errors@1.3.0: {}
|
|
2566
|
+
|
|
2567
|
+
es-object-atoms@1.1.1:
|
|
2568
|
+
dependencies:
|
|
2569
|
+
es-errors: 1.3.0
|
|
2570
|
+
|
|
2571
|
+
esbuild@0.27.3:
|
|
2572
|
+
optionalDependencies:
|
|
2573
|
+
'@esbuild/aix-ppc64': 0.27.3
|
|
2574
|
+
'@esbuild/android-arm': 0.27.3
|
|
2575
|
+
'@esbuild/android-arm64': 0.27.3
|
|
2576
|
+
'@esbuild/android-x64': 0.27.3
|
|
2577
|
+
'@esbuild/darwin-arm64': 0.27.3
|
|
2578
|
+
'@esbuild/darwin-x64': 0.27.3
|
|
2579
|
+
'@esbuild/freebsd-arm64': 0.27.3
|
|
2580
|
+
'@esbuild/freebsd-x64': 0.27.3
|
|
2581
|
+
'@esbuild/linux-arm': 0.27.3
|
|
2582
|
+
'@esbuild/linux-arm64': 0.27.3
|
|
2583
|
+
'@esbuild/linux-ia32': 0.27.3
|
|
2584
|
+
'@esbuild/linux-loong64': 0.27.3
|
|
2585
|
+
'@esbuild/linux-mips64el': 0.27.3
|
|
2586
|
+
'@esbuild/linux-ppc64': 0.27.3
|
|
2587
|
+
'@esbuild/linux-riscv64': 0.27.3
|
|
2588
|
+
'@esbuild/linux-s390x': 0.27.3
|
|
2589
|
+
'@esbuild/linux-x64': 0.27.3
|
|
2590
|
+
'@esbuild/netbsd-arm64': 0.27.3
|
|
2591
|
+
'@esbuild/netbsd-x64': 0.27.3
|
|
2592
|
+
'@esbuild/openbsd-arm64': 0.27.3
|
|
2593
|
+
'@esbuild/openbsd-x64': 0.27.3
|
|
2594
|
+
'@esbuild/openharmony-arm64': 0.27.3
|
|
2595
|
+
'@esbuild/sunos-x64': 0.27.3
|
|
2596
|
+
'@esbuild/win32-arm64': 0.27.3
|
|
2597
|
+
'@esbuild/win32-ia32': 0.27.3
|
|
2598
|
+
'@esbuild/win32-x64': 0.27.3
|
|
2599
|
+
|
|
2600
|
+
escape-html@1.0.3: {}
|
|
2601
|
+
|
|
2602
|
+
escape-string-regexp@5.0.0: {}
|
|
2603
|
+
|
|
2604
|
+
estree-util-is-identifier-name@3.0.0: {}
|
|
2605
|
+
|
|
2606
|
+
etag@1.8.1: {}
|
|
2607
|
+
|
|
2608
|
+
eventsource-parser@3.0.6: {}
|
|
2609
|
+
|
|
2610
|
+
eventsource@3.0.7:
|
|
2611
|
+
dependencies:
|
|
2612
|
+
eventsource-parser: 3.0.6
|
|
2613
|
+
|
|
2614
|
+
expand-template@2.0.3: {}
|
|
2615
|
+
|
|
2616
|
+
express-rate-limit@8.3.1(express@5.2.1):
|
|
2617
|
+
dependencies:
|
|
2618
|
+
express: 5.2.1
|
|
2619
|
+
ip-address: 10.1.0
|
|
2620
|
+
|
|
2621
|
+
express@5.2.1:
|
|
2622
|
+
dependencies:
|
|
2623
|
+
accepts: 2.0.0
|
|
2624
|
+
body-parser: 2.2.2
|
|
2625
|
+
content-disposition: 1.0.1
|
|
2626
|
+
content-type: 1.0.5
|
|
2627
|
+
cookie: 0.7.2
|
|
2628
|
+
cookie-signature: 1.2.2
|
|
2629
|
+
debug: 4.4.3
|
|
2630
|
+
depd: 2.0.0
|
|
2631
|
+
encodeurl: 2.0.0
|
|
2632
|
+
escape-html: 1.0.3
|
|
2633
|
+
etag: 1.8.1
|
|
2634
|
+
finalhandler: 2.1.1
|
|
2635
|
+
fresh: 2.0.0
|
|
2636
|
+
http-errors: 2.0.1
|
|
2637
|
+
merge-descriptors: 2.0.0
|
|
2638
|
+
mime-types: 3.0.2
|
|
2639
|
+
on-finished: 2.4.1
|
|
2640
|
+
once: 1.4.0
|
|
2641
|
+
parseurl: 1.3.3
|
|
2642
|
+
proxy-addr: 2.0.7
|
|
2643
|
+
qs: 6.15.0
|
|
2644
|
+
range-parser: 1.2.1
|
|
2645
|
+
router: 2.2.0
|
|
2646
|
+
send: 1.2.1
|
|
2647
|
+
serve-static: 2.2.1
|
|
2648
|
+
statuses: 2.0.2
|
|
2649
|
+
type-is: 2.0.1
|
|
2650
|
+
vary: 1.1.2
|
|
2651
|
+
transitivePeerDependencies:
|
|
2652
|
+
- supports-color
|
|
2653
|
+
|
|
2654
|
+
extend@3.0.2: {}
|
|
2655
|
+
|
|
2656
|
+
fast-deep-equal@3.1.3: {}
|
|
2657
|
+
|
|
2658
|
+
fast-uri@3.1.0: {}
|
|
2659
|
+
|
|
2660
|
+
file-uri-to-path@1.0.0: {}
|
|
2661
|
+
|
|
2662
|
+
finalhandler@2.1.1:
|
|
2663
|
+
dependencies:
|
|
2664
|
+
debug: 4.4.3
|
|
2665
|
+
encodeurl: 2.0.0
|
|
2666
|
+
escape-html: 1.0.3
|
|
2667
|
+
on-finished: 2.4.1
|
|
2668
|
+
parseurl: 1.3.3
|
|
2669
|
+
statuses: 2.0.2
|
|
2670
|
+
transitivePeerDependencies:
|
|
2671
|
+
- supports-color
|
|
2672
|
+
|
|
2673
|
+
forwarded@0.2.0: {}
|
|
2674
|
+
|
|
2675
|
+
fresh@2.0.0: {}
|
|
2676
|
+
|
|
2677
|
+
fs-constants@1.0.0: {}
|
|
2678
|
+
|
|
2679
|
+
fsevents@2.3.3:
|
|
2680
|
+
optional: true
|
|
2681
|
+
|
|
2682
|
+
function-bind@1.1.2: {}
|
|
2683
|
+
|
|
2684
|
+
get-intrinsic@1.3.0:
|
|
2685
|
+
dependencies:
|
|
2686
|
+
call-bind-apply-helpers: 1.0.2
|
|
2687
|
+
es-define-property: 1.0.1
|
|
2688
|
+
es-errors: 1.3.0
|
|
2689
|
+
es-object-atoms: 1.1.1
|
|
2690
|
+
function-bind: 1.1.2
|
|
2691
|
+
get-proto: 1.0.1
|
|
2692
|
+
gopd: 1.2.0
|
|
2693
|
+
has-symbols: 1.1.0
|
|
2694
|
+
hasown: 2.0.2
|
|
2695
|
+
math-intrinsics: 1.1.0
|
|
2696
|
+
|
|
2697
|
+
get-proto@1.0.1:
|
|
2698
|
+
dependencies:
|
|
2699
|
+
dunder-proto: 1.0.1
|
|
2700
|
+
es-object-atoms: 1.1.1
|
|
2701
|
+
|
|
2702
|
+
get-tsconfig@4.13.6:
|
|
2703
|
+
dependencies:
|
|
2704
|
+
resolve-pkg-maps: 1.0.0
|
|
2705
|
+
|
|
2706
|
+
github-from-package@0.0.0: {}
|
|
2707
|
+
|
|
2708
|
+
gopd@1.2.0: {}
|
|
2709
|
+
|
|
2710
|
+
graceful-fs@4.2.11: {}
|
|
2711
|
+
|
|
2712
|
+
has-symbols@1.1.0: {}
|
|
2713
|
+
|
|
2714
|
+
hasown@2.0.2:
|
|
2715
|
+
dependencies:
|
|
2716
|
+
function-bind: 1.1.2
|
|
2717
|
+
|
|
2718
|
+
hast-util-to-jsx-runtime@2.3.6:
|
|
2719
|
+
dependencies:
|
|
2720
|
+
'@types/estree': 1.0.8
|
|
2721
|
+
'@types/hast': 3.0.4
|
|
2722
|
+
'@types/unist': 3.0.3
|
|
2723
|
+
comma-separated-tokens: 2.0.3
|
|
2724
|
+
devlop: 1.1.0
|
|
2725
|
+
estree-util-is-identifier-name: 3.0.0
|
|
2726
|
+
hast-util-whitespace: 3.0.0
|
|
2727
|
+
mdast-util-mdx-expression: 2.0.1
|
|
2728
|
+
mdast-util-mdx-jsx: 3.2.0
|
|
2729
|
+
mdast-util-mdxjs-esm: 2.0.1
|
|
2730
|
+
property-information: 7.1.0
|
|
2731
|
+
space-separated-tokens: 2.0.2
|
|
2732
|
+
style-to-js: 1.1.21
|
|
2733
|
+
unist-util-position: 5.0.0
|
|
2734
|
+
vfile-message: 4.0.3
|
|
2735
|
+
transitivePeerDependencies:
|
|
2736
|
+
- supports-color
|
|
2737
|
+
|
|
2738
|
+
hast-util-whitespace@3.0.0:
|
|
2739
|
+
dependencies:
|
|
2740
|
+
'@types/hast': 3.0.4
|
|
2741
|
+
|
|
2742
|
+
hono@4.12.9: {}
|
|
2743
|
+
|
|
2744
|
+
html-url-attributes@3.0.1: {}
|
|
2745
|
+
|
|
2746
|
+
http-errors@2.0.1:
|
|
2747
|
+
dependencies:
|
|
2748
|
+
depd: 2.0.0
|
|
2749
|
+
inherits: 2.0.4
|
|
2750
|
+
setprototypeof: 1.2.0
|
|
2751
|
+
statuses: 2.0.2
|
|
2752
|
+
toidentifier: 1.0.1
|
|
2753
|
+
|
|
2754
|
+
iconv-lite@0.7.2:
|
|
2755
|
+
dependencies:
|
|
2756
|
+
safer-buffer: 2.1.2
|
|
2757
|
+
|
|
2758
|
+
ieee754@1.2.1: {}
|
|
2759
|
+
|
|
2760
|
+
inherits@2.0.4: {}
|
|
2761
|
+
|
|
2762
|
+
ini@1.3.8: {}
|
|
2763
|
+
|
|
2764
|
+
inline-style-parser@0.2.7: {}
|
|
2765
|
+
|
|
2766
|
+
ip-address@10.1.0: {}
|
|
2767
|
+
|
|
2768
|
+
ipaddr.js@1.9.1: {}
|
|
2769
|
+
|
|
2770
|
+
is-alphabetical@2.0.1: {}
|
|
2771
|
+
|
|
2772
|
+
is-alphanumerical@2.0.1:
|
|
2773
|
+
dependencies:
|
|
2774
|
+
is-alphabetical: 2.0.1
|
|
2775
|
+
is-decimal: 2.0.1
|
|
2776
|
+
|
|
2777
|
+
is-decimal@2.0.1: {}
|
|
2778
|
+
|
|
2779
|
+
is-hexadecimal@2.0.1: {}
|
|
2780
|
+
|
|
2781
|
+
is-plain-obj@4.1.0: {}
|
|
2782
|
+
|
|
2783
|
+
is-promise@4.0.0: {}
|
|
2784
|
+
|
|
2785
|
+
isexe@2.0.0: {}
|
|
2786
|
+
|
|
2787
|
+
jiti@2.6.1: {}
|
|
2788
|
+
|
|
2789
|
+
jose@5.10.0: {}
|
|
2790
|
+
|
|
2791
|
+
jose@6.2.1: {}
|
|
2792
|
+
|
|
2793
|
+
json-schema-traverse@1.0.0: {}
|
|
2794
|
+
|
|
2795
|
+
json-schema-typed@8.0.2: {}
|
|
2796
|
+
|
|
2797
|
+
json-schema@0.4.0: {}
|
|
2798
|
+
|
|
2799
|
+
lightningcss-android-arm64@1.31.1:
|
|
2800
|
+
optional: true
|
|
2801
|
+
|
|
2802
|
+
lightningcss-darwin-arm64@1.31.1:
|
|
2803
|
+
optional: true
|
|
2804
|
+
|
|
2805
|
+
lightningcss-darwin-x64@1.31.1:
|
|
2806
|
+
optional: true
|
|
2807
|
+
|
|
2808
|
+
lightningcss-freebsd-x64@1.31.1:
|
|
2809
|
+
optional: true
|
|
2810
|
+
|
|
2811
|
+
lightningcss-linux-arm-gnueabihf@1.31.1:
|
|
2812
|
+
optional: true
|
|
2813
|
+
|
|
2814
|
+
lightningcss-linux-arm64-gnu@1.31.1:
|
|
2815
|
+
optional: true
|
|
2816
|
+
|
|
2817
|
+
lightningcss-linux-arm64-musl@1.31.1:
|
|
2818
|
+
optional: true
|
|
2819
|
+
|
|
2820
|
+
lightningcss-linux-x64-gnu@1.31.1:
|
|
2821
|
+
optional: true
|
|
2822
|
+
|
|
2823
|
+
lightningcss-linux-x64-musl@1.31.1:
|
|
2824
|
+
optional: true
|
|
2825
|
+
|
|
2826
|
+
lightningcss-win32-arm64-msvc@1.31.1:
|
|
2827
|
+
optional: true
|
|
2828
|
+
|
|
2829
|
+
lightningcss-win32-x64-msvc@1.31.1:
|
|
2830
|
+
optional: true
|
|
2831
|
+
|
|
2832
|
+
lightningcss@1.31.1:
|
|
2833
|
+
dependencies:
|
|
2834
|
+
detect-libc: 2.1.2
|
|
2835
|
+
optionalDependencies:
|
|
2836
|
+
lightningcss-android-arm64: 1.31.1
|
|
2837
|
+
lightningcss-darwin-arm64: 1.31.1
|
|
2838
|
+
lightningcss-darwin-x64: 1.31.1
|
|
2839
|
+
lightningcss-freebsd-x64: 1.31.1
|
|
2840
|
+
lightningcss-linux-arm-gnueabihf: 1.31.1
|
|
2841
|
+
lightningcss-linux-arm64-gnu: 1.31.1
|
|
2842
|
+
lightningcss-linux-arm64-musl: 1.31.1
|
|
2843
|
+
lightningcss-linux-x64-gnu: 1.31.1
|
|
2844
|
+
lightningcss-linux-x64-musl: 1.31.1
|
|
2845
|
+
lightningcss-win32-arm64-msvc: 1.31.1
|
|
2846
|
+
lightningcss-win32-x64-msvc: 1.31.1
|
|
2847
|
+
|
|
2848
|
+
longest-streak@3.1.0: {}
|
|
2849
|
+
|
|
2850
|
+
magic-string@0.30.21:
|
|
2851
|
+
dependencies:
|
|
2852
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2853
|
+
|
|
2854
|
+
markdown-table@3.0.4: {}
|
|
2855
|
+
|
|
2856
|
+
math-intrinsics@1.1.0: {}
|
|
2857
|
+
|
|
2858
|
+
mdast-util-find-and-replace@3.0.2:
|
|
2859
|
+
dependencies:
|
|
2860
|
+
'@types/mdast': 4.0.4
|
|
2861
|
+
escape-string-regexp: 5.0.0
|
|
2862
|
+
unist-util-is: 6.0.1
|
|
2863
|
+
unist-util-visit-parents: 6.0.2
|
|
2864
|
+
|
|
2865
|
+
mdast-util-from-markdown@2.0.3:
|
|
2866
|
+
dependencies:
|
|
2867
|
+
'@types/mdast': 4.0.4
|
|
2868
|
+
'@types/unist': 3.0.3
|
|
2869
|
+
decode-named-character-reference: 1.3.0
|
|
2870
|
+
devlop: 1.1.0
|
|
2871
|
+
mdast-util-to-string: 4.0.0
|
|
2872
|
+
micromark: 4.0.2
|
|
2873
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
2874
|
+
micromark-util-decode-string: 2.0.1
|
|
2875
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
2876
|
+
micromark-util-symbol: 2.0.1
|
|
2877
|
+
micromark-util-types: 2.0.2
|
|
2878
|
+
unist-util-stringify-position: 4.0.0
|
|
2879
|
+
transitivePeerDependencies:
|
|
2880
|
+
- supports-color
|
|
2881
|
+
|
|
2882
|
+
mdast-util-gfm-autolink-literal@2.0.1:
|
|
2883
|
+
dependencies:
|
|
2884
|
+
'@types/mdast': 4.0.4
|
|
2885
|
+
ccount: 2.0.1
|
|
2886
|
+
devlop: 1.1.0
|
|
2887
|
+
mdast-util-find-and-replace: 3.0.2
|
|
2888
|
+
micromark-util-character: 2.1.1
|
|
2889
|
+
|
|
2890
|
+
mdast-util-gfm-footnote@2.1.0:
|
|
2891
|
+
dependencies:
|
|
2892
|
+
'@types/mdast': 4.0.4
|
|
2893
|
+
devlop: 1.1.0
|
|
2894
|
+
mdast-util-from-markdown: 2.0.3
|
|
2895
|
+
mdast-util-to-markdown: 2.1.2
|
|
2896
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
2897
|
+
transitivePeerDependencies:
|
|
2898
|
+
- supports-color
|
|
2899
|
+
|
|
2900
|
+
mdast-util-gfm-strikethrough@2.0.0:
|
|
2901
|
+
dependencies:
|
|
2902
|
+
'@types/mdast': 4.0.4
|
|
2903
|
+
mdast-util-from-markdown: 2.0.3
|
|
2904
|
+
mdast-util-to-markdown: 2.1.2
|
|
2905
|
+
transitivePeerDependencies:
|
|
2906
|
+
- supports-color
|
|
2907
|
+
|
|
2908
|
+
mdast-util-gfm-table@2.0.0:
|
|
2909
|
+
dependencies:
|
|
2910
|
+
'@types/mdast': 4.0.4
|
|
2911
|
+
devlop: 1.1.0
|
|
2912
|
+
markdown-table: 3.0.4
|
|
2913
|
+
mdast-util-from-markdown: 2.0.3
|
|
2914
|
+
mdast-util-to-markdown: 2.1.2
|
|
2915
|
+
transitivePeerDependencies:
|
|
2916
|
+
- supports-color
|
|
2917
|
+
|
|
2918
|
+
mdast-util-gfm-task-list-item@2.0.0:
|
|
2919
|
+
dependencies:
|
|
2920
|
+
'@types/mdast': 4.0.4
|
|
2921
|
+
devlop: 1.1.0
|
|
2922
|
+
mdast-util-from-markdown: 2.0.3
|
|
2923
|
+
mdast-util-to-markdown: 2.1.2
|
|
2924
|
+
transitivePeerDependencies:
|
|
2925
|
+
- supports-color
|
|
2926
|
+
|
|
2927
|
+
mdast-util-gfm@3.1.0:
|
|
2928
|
+
dependencies:
|
|
2929
|
+
mdast-util-from-markdown: 2.0.3
|
|
2930
|
+
mdast-util-gfm-autolink-literal: 2.0.1
|
|
2931
|
+
mdast-util-gfm-footnote: 2.1.0
|
|
2932
|
+
mdast-util-gfm-strikethrough: 2.0.0
|
|
2933
|
+
mdast-util-gfm-table: 2.0.0
|
|
2934
|
+
mdast-util-gfm-task-list-item: 2.0.0
|
|
2935
|
+
mdast-util-to-markdown: 2.1.2
|
|
2936
|
+
transitivePeerDependencies:
|
|
2937
|
+
- supports-color
|
|
2938
|
+
|
|
2939
|
+
mdast-util-mdx-expression@2.0.1:
|
|
2940
|
+
dependencies:
|
|
2941
|
+
'@types/estree-jsx': 1.0.5
|
|
2942
|
+
'@types/hast': 3.0.4
|
|
2943
|
+
'@types/mdast': 4.0.4
|
|
2944
|
+
devlop: 1.1.0
|
|
2945
|
+
mdast-util-from-markdown: 2.0.3
|
|
2946
|
+
mdast-util-to-markdown: 2.1.2
|
|
2947
|
+
transitivePeerDependencies:
|
|
2948
|
+
- supports-color
|
|
2949
|
+
|
|
2950
|
+
mdast-util-mdx-jsx@3.2.0:
|
|
2951
|
+
dependencies:
|
|
2952
|
+
'@types/estree-jsx': 1.0.5
|
|
2953
|
+
'@types/hast': 3.0.4
|
|
2954
|
+
'@types/mdast': 4.0.4
|
|
2955
|
+
'@types/unist': 3.0.3
|
|
2956
|
+
ccount: 2.0.1
|
|
2957
|
+
devlop: 1.1.0
|
|
2958
|
+
mdast-util-from-markdown: 2.0.3
|
|
2959
|
+
mdast-util-to-markdown: 2.1.2
|
|
2960
|
+
parse-entities: 4.0.2
|
|
2961
|
+
stringify-entities: 4.0.4
|
|
2962
|
+
unist-util-stringify-position: 4.0.0
|
|
2963
|
+
vfile-message: 4.0.3
|
|
2964
|
+
transitivePeerDependencies:
|
|
2965
|
+
- supports-color
|
|
2966
|
+
|
|
2967
|
+
mdast-util-mdxjs-esm@2.0.1:
|
|
2968
|
+
dependencies:
|
|
2969
|
+
'@types/estree-jsx': 1.0.5
|
|
2970
|
+
'@types/hast': 3.0.4
|
|
2971
|
+
'@types/mdast': 4.0.4
|
|
2972
|
+
devlop: 1.1.0
|
|
2973
|
+
mdast-util-from-markdown: 2.0.3
|
|
2974
|
+
mdast-util-to-markdown: 2.1.2
|
|
2975
|
+
transitivePeerDependencies:
|
|
2976
|
+
- supports-color
|
|
2977
|
+
|
|
2978
|
+
mdast-util-phrasing@4.1.0:
|
|
2979
|
+
dependencies:
|
|
2980
|
+
'@types/mdast': 4.0.4
|
|
2981
|
+
unist-util-is: 6.0.1
|
|
2982
|
+
|
|
2983
|
+
mdast-util-to-hast@13.2.1:
|
|
2984
|
+
dependencies:
|
|
2985
|
+
'@types/hast': 3.0.4
|
|
2986
|
+
'@types/mdast': 4.0.4
|
|
2987
|
+
'@ungap/structured-clone': 1.3.0
|
|
2988
|
+
devlop: 1.1.0
|
|
2989
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
2990
|
+
trim-lines: 3.0.1
|
|
2991
|
+
unist-util-position: 5.0.0
|
|
2992
|
+
unist-util-visit: 5.1.0
|
|
2993
|
+
vfile: 6.0.3
|
|
2994
|
+
|
|
2995
|
+
mdast-util-to-markdown@2.1.2:
|
|
2996
|
+
dependencies:
|
|
2997
|
+
'@types/mdast': 4.0.4
|
|
2998
|
+
'@types/unist': 3.0.3
|
|
2999
|
+
longest-streak: 3.1.0
|
|
3000
|
+
mdast-util-phrasing: 4.1.0
|
|
3001
|
+
mdast-util-to-string: 4.0.0
|
|
3002
|
+
micromark-util-classify-character: 2.0.1
|
|
3003
|
+
micromark-util-decode-string: 2.0.1
|
|
3004
|
+
unist-util-visit: 5.1.0
|
|
3005
|
+
zwitch: 2.0.4
|
|
3006
|
+
|
|
3007
|
+
mdast-util-to-string@4.0.0:
|
|
3008
|
+
dependencies:
|
|
3009
|
+
'@types/mdast': 4.0.4
|
|
3010
|
+
|
|
3011
|
+
media-typer@1.1.0: {}
|
|
3012
|
+
|
|
3013
|
+
merge-descriptors@2.0.0: {}
|
|
3014
|
+
|
|
3015
|
+
micromark-core-commonmark@2.0.3:
|
|
3016
|
+
dependencies:
|
|
3017
|
+
decode-named-character-reference: 1.3.0
|
|
3018
|
+
devlop: 1.1.0
|
|
3019
|
+
micromark-factory-destination: 2.0.1
|
|
3020
|
+
micromark-factory-label: 2.0.1
|
|
3021
|
+
micromark-factory-space: 2.0.1
|
|
3022
|
+
micromark-factory-title: 2.0.1
|
|
3023
|
+
micromark-factory-whitespace: 2.0.1
|
|
3024
|
+
micromark-util-character: 2.1.1
|
|
3025
|
+
micromark-util-chunked: 2.0.1
|
|
3026
|
+
micromark-util-classify-character: 2.0.1
|
|
3027
|
+
micromark-util-html-tag-name: 2.0.1
|
|
3028
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
3029
|
+
micromark-util-resolve-all: 2.0.1
|
|
3030
|
+
micromark-util-subtokenize: 2.1.0
|
|
3031
|
+
micromark-util-symbol: 2.0.1
|
|
3032
|
+
micromark-util-types: 2.0.2
|
|
3033
|
+
|
|
3034
|
+
micromark-extension-gfm-autolink-literal@2.1.0:
|
|
3035
|
+
dependencies:
|
|
3036
|
+
micromark-util-character: 2.1.1
|
|
3037
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
3038
|
+
micromark-util-symbol: 2.0.1
|
|
3039
|
+
micromark-util-types: 2.0.2
|
|
3040
|
+
|
|
3041
|
+
micromark-extension-gfm-footnote@2.1.0:
|
|
3042
|
+
dependencies:
|
|
3043
|
+
devlop: 1.1.0
|
|
3044
|
+
micromark-core-commonmark: 2.0.3
|
|
3045
|
+
micromark-factory-space: 2.0.1
|
|
3046
|
+
micromark-util-character: 2.1.1
|
|
3047
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
3048
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
3049
|
+
micromark-util-symbol: 2.0.1
|
|
3050
|
+
micromark-util-types: 2.0.2
|
|
3051
|
+
|
|
3052
|
+
micromark-extension-gfm-strikethrough@2.1.0:
|
|
3053
|
+
dependencies:
|
|
3054
|
+
devlop: 1.1.0
|
|
3055
|
+
micromark-util-chunked: 2.0.1
|
|
3056
|
+
micromark-util-classify-character: 2.0.1
|
|
3057
|
+
micromark-util-resolve-all: 2.0.1
|
|
3058
|
+
micromark-util-symbol: 2.0.1
|
|
3059
|
+
micromark-util-types: 2.0.2
|
|
3060
|
+
|
|
3061
|
+
micromark-extension-gfm-table@2.1.1:
|
|
3062
|
+
dependencies:
|
|
3063
|
+
devlop: 1.1.0
|
|
3064
|
+
micromark-factory-space: 2.0.1
|
|
3065
|
+
micromark-util-character: 2.1.1
|
|
3066
|
+
micromark-util-symbol: 2.0.1
|
|
3067
|
+
micromark-util-types: 2.0.2
|
|
3068
|
+
|
|
3069
|
+
micromark-extension-gfm-tagfilter@2.0.0:
|
|
3070
|
+
dependencies:
|
|
3071
|
+
micromark-util-types: 2.0.2
|
|
3072
|
+
|
|
3073
|
+
micromark-extension-gfm-task-list-item@2.1.0:
|
|
3074
|
+
dependencies:
|
|
3075
|
+
devlop: 1.1.0
|
|
3076
|
+
micromark-factory-space: 2.0.1
|
|
3077
|
+
micromark-util-character: 2.1.1
|
|
3078
|
+
micromark-util-symbol: 2.0.1
|
|
3079
|
+
micromark-util-types: 2.0.2
|
|
3080
|
+
|
|
3081
|
+
micromark-extension-gfm@3.0.0:
|
|
3082
|
+
dependencies:
|
|
3083
|
+
micromark-extension-gfm-autolink-literal: 2.1.0
|
|
3084
|
+
micromark-extension-gfm-footnote: 2.1.0
|
|
3085
|
+
micromark-extension-gfm-strikethrough: 2.1.0
|
|
3086
|
+
micromark-extension-gfm-table: 2.1.1
|
|
3087
|
+
micromark-extension-gfm-tagfilter: 2.0.0
|
|
3088
|
+
micromark-extension-gfm-task-list-item: 2.1.0
|
|
3089
|
+
micromark-util-combine-extensions: 2.0.1
|
|
3090
|
+
micromark-util-types: 2.0.2
|
|
3091
|
+
|
|
3092
|
+
micromark-factory-destination@2.0.1:
|
|
3093
|
+
dependencies:
|
|
3094
|
+
micromark-util-character: 2.1.1
|
|
3095
|
+
micromark-util-symbol: 2.0.1
|
|
3096
|
+
micromark-util-types: 2.0.2
|
|
3097
|
+
|
|
3098
|
+
micromark-factory-label@2.0.1:
|
|
3099
|
+
dependencies:
|
|
3100
|
+
devlop: 1.1.0
|
|
3101
|
+
micromark-util-character: 2.1.1
|
|
3102
|
+
micromark-util-symbol: 2.0.1
|
|
3103
|
+
micromark-util-types: 2.0.2
|
|
3104
|
+
|
|
3105
|
+
micromark-factory-space@2.0.1:
|
|
3106
|
+
dependencies:
|
|
3107
|
+
micromark-util-character: 2.1.1
|
|
3108
|
+
micromark-util-types: 2.0.2
|
|
3109
|
+
|
|
3110
|
+
micromark-factory-title@2.0.1:
|
|
3111
|
+
dependencies:
|
|
3112
|
+
micromark-factory-space: 2.0.1
|
|
3113
|
+
micromark-util-character: 2.1.1
|
|
3114
|
+
micromark-util-symbol: 2.0.1
|
|
3115
|
+
micromark-util-types: 2.0.2
|
|
3116
|
+
|
|
3117
|
+
micromark-factory-whitespace@2.0.1:
|
|
3118
|
+
dependencies:
|
|
3119
|
+
micromark-factory-space: 2.0.1
|
|
3120
|
+
micromark-util-character: 2.1.1
|
|
3121
|
+
micromark-util-symbol: 2.0.1
|
|
3122
|
+
micromark-util-types: 2.0.2
|
|
3123
|
+
|
|
3124
|
+
micromark-util-character@2.1.1:
|
|
3125
|
+
dependencies:
|
|
3126
|
+
micromark-util-symbol: 2.0.1
|
|
3127
|
+
micromark-util-types: 2.0.2
|
|
3128
|
+
|
|
3129
|
+
micromark-util-chunked@2.0.1:
|
|
3130
|
+
dependencies:
|
|
3131
|
+
micromark-util-symbol: 2.0.1
|
|
3132
|
+
|
|
3133
|
+
micromark-util-classify-character@2.0.1:
|
|
3134
|
+
dependencies:
|
|
3135
|
+
micromark-util-character: 2.1.1
|
|
3136
|
+
micromark-util-symbol: 2.0.1
|
|
3137
|
+
micromark-util-types: 2.0.2
|
|
3138
|
+
|
|
3139
|
+
micromark-util-combine-extensions@2.0.1:
|
|
3140
|
+
dependencies:
|
|
3141
|
+
micromark-util-chunked: 2.0.1
|
|
3142
|
+
micromark-util-types: 2.0.2
|
|
3143
|
+
|
|
3144
|
+
micromark-util-decode-numeric-character-reference@2.0.2:
|
|
3145
|
+
dependencies:
|
|
3146
|
+
micromark-util-symbol: 2.0.1
|
|
3147
|
+
|
|
3148
|
+
micromark-util-decode-string@2.0.1:
|
|
3149
|
+
dependencies:
|
|
3150
|
+
decode-named-character-reference: 1.3.0
|
|
3151
|
+
micromark-util-character: 2.1.1
|
|
3152
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
3153
|
+
micromark-util-symbol: 2.0.1
|
|
3154
|
+
|
|
3155
|
+
micromark-util-encode@2.0.1: {}
|
|
3156
|
+
|
|
3157
|
+
micromark-util-html-tag-name@2.0.1: {}
|
|
3158
|
+
|
|
3159
|
+
micromark-util-normalize-identifier@2.0.1:
|
|
3160
|
+
dependencies:
|
|
3161
|
+
micromark-util-symbol: 2.0.1
|
|
3162
|
+
|
|
3163
|
+
micromark-util-resolve-all@2.0.1:
|
|
3164
|
+
dependencies:
|
|
3165
|
+
micromark-util-types: 2.0.2
|
|
3166
|
+
|
|
3167
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
3168
|
+
dependencies:
|
|
3169
|
+
micromark-util-character: 2.1.1
|
|
3170
|
+
micromark-util-encode: 2.0.1
|
|
3171
|
+
micromark-util-symbol: 2.0.1
|
|
3172
|
+
|
|
3173
|
+
micromark-util-subtokenize@2.1.0:
|
|
3174
|
+
dependencies:
|
|
3175
|
+
devlop: 1.1.0
|
|
3176
|
+
micromark-util-chunked: 2.0.1
|
|
3177
|
+
micromark-util-symbol: 2.0.1
|
|
3178
|
+
micromark-util-types: 2.0.2
|
|
3179
|
+
|
|
3180
|
+
micromark-util-symbol@2.0.1: {}
|
|
3181
|
+
|
|
3182
|
+
micromark-util-types@2.0.2: {}
|
|
3183
|
+
|
|
3184
|
+
micromark@4.0.2:
|
|
3185
|
+
dependencies:
|
|
3186
|
+
'@types/debug': 4.1.12
|
|
3187
|
+
debug: 4.4.3
|
|
3188
|
+
decode-named-character-reference: 1.3.0
|
|
3189
|
+
devlop: 1.1.0
|
|
3190
|
+
micromark-core-commonmark: 2.0.3
|
|
3191
|
+
micromark-factory-space: 2.0.1
|
|
3192
|
+
micromark-util-character: 2.1.1
|
|
3193
|
+
micromark-util-chunked: 2.0.1
|
|
3194
|
+
micromark-util-combine-extensions: 2.0.1
|
|
3195
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
3196
|
+
micromark-util-encode: 2.0.1
|
|
3197
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
3198
|
+
micromark-util-resolve-all: 2.0.1
|
|
3199
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
3200
|
+
micromark-util-subtokenize: 2.1.0
|
|
3201
|
+
micromark-util-symbol: 2.0.1
|
|
3202
|
+
micromark-util-types: 2.0.2
|
|
3203
|
+
transitivePeerDependencies:
|
|
3204
|
+
- supports-color
|
|
3205
|
+
|
|
3206
|
+
mime-db@1.54.0: {}
|
|
3207
|
+
|
|
3208
|
+
mime-types@3.0.2:
|
|
3209
|
+
dependencies:
|
|
3210
|
+
mime-db: 1.54.0
|
|
3211
|
+
|
|
3212
|
+
mimic-response@3.1.0: {}
|
|
3213
|
+
|
|
3214
|
+
minimist@1.2.8: {}
|
|
3215
|
+
|
|
3216
|
+
mkdirp-classic@0.5.3: {}
|
|
3217
|
+
|
|
3218
|
+
ms@2.1.3: {}
|
|
3219
|
+
|
|
3220
|
+
nan@2.25.0: {}
|
|
3221
|
+
|
|
3222
|
+
nanoid@3.3.11: {}
|
|
3223
|
+
|
|
3224
|
+
napi-build-utils@2.0.0: {}
|
|
3225
|
+
|
|
3226
|
+
negotiator@1.0.0: {}
|
|
3227
|
+
|
|
3228
|
+
next-auth@5.0.0-beta.30(next@16.2.1(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4):
|
|
3229
|
+
dependencies:
|
|
3230
|
+
'@auth/core': 0.41.0
|
|
3231
|
+
next: 16.2.1(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
3232
|
+
react: 19.2.4
|
|
3233
|
+
|
|
3234
|
+
next@16.2.1(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
|
|
3235
|
+
dependencies:
|
|
3236
|
+
'@next/env': 16.2.1
|
|
3237
|
+
'@swc/helpers': 0.5.15
|
|
3238
|
+
baseline-browser-mapping: 2.10.0
|
|
3239
|
+
caniuse-lite: 1.0.30001777
|
|
3240
|
+
postcss: 8.4.31
|
|
3241
|
+
react: 19.2.4
|
|
3242
|
+
react-dom: 19.2.4(react@19.2.4)
|
|
3243
|
+
styled-jsx: 5.1.6(react@19.2.4)
|
|
3244
|
+
optionalDependencies:
|
|
3245
|
+
'@next/swc-darwin-arm64': 16.2.1
|
|
3246
|
+
'@next/swc-darwin-x64': 16.2.1
|
|
3247
|
+
'@next/swc-linux-arm64-gnu': 16.2.1
|
|
3248
|
+
'@next/swc-linux-arm64-musl': 16.2.1
|
|
3249
|
+
'@next/swc-linux-x64-gnu': 16.2.1
|
|
3250
|
+
'@next/swc-linux-x64-musl': 16.2.1
|
|
3251
|
+
'@next/swc-win32-arm64-msvc': 16.2.1
|
|
3252
|
+
'@next/swc-win32-x64-msvc': 16.2.1
|
|
3253
|
+
'@opentelemetry/api': 1.9.0
|
|
3254
|
+
sharp: 0.34.5
|
|
3255
|
+
transitivePeerDependencies:
|
|
3256
|
+
- '@babel/core'
|
|
3257
|
+
- babel-plugin-macros
|
|
3258
|
+
|
|
3259
|
+
node-abi@3.88.0:
|
|
3260
|
+
dependencies:
|
|
3261
|
+
semver: 7.7.4
|
|
3262
|
+
|
|
3263
|
+
node-pty@1.0.0:
|
|
3264
|
+
dependencies:
|
|
3265
|
+
nan: 2.25.0
|
|
3266
|
+
|
|
3267
|
+
oauth4webapi@2.17.0: {}
|
|
3268
|
+
|
|
3269
|
+
oauth4webapi@3.8.5: {}
|
|
3270
|
+
|
|
3271
|
+
object-assign@4.1.1: {}
|
|
3272
|
+
|
|
3273
|
+
object-inspect@1.13.4: {}
|
|
3274
|
+
|
|
3275
|
+
on-finished@2.4.1:
|
|
3276
|
+
dependencies:
|
|
3277
|
+
ee-first: 1.1.1
|
|
3278
|
+
|
|
3279
|
+
once@1.4.0:
|
|
3280
|
+
dependencies:
|
|
3281
|
+
wrappy: 1.0.2
|
|
3282
|
+
|
|
3283
|
+
parse-entities@4.0.2:
|
|
3284
|
+
dependencies:
|
|
3285
|
+
'@types/unist': 2.0.11
|
|
3286
|
+
character-entities-legacy: 3.0.0
|
|
3287
|
+
character-reference-invalid: 2.0.1
|
|
3288
|
+
decode-named-character-reference: 1.3.0
|
|
3289
|
+
is-alphanumerical: 2.0.1
|
|
3290
|
+
is-decimal: 2.0.1
|
|
3291
|
+
is-hexadecimal: 2.0.1
|
|
3292
|
+
|
|
3293
|
+
parseurl@1.3.3: {}
|
|
3294
|
+
|
|
3295
|
+
path-key@3.1.1: {}
|
|
3296
|
+
|
|
3297
|
+
path-to-regexp@8.4.0: {}
|
|
3298
|
+
|
|
3299
|
+
picocolors@1.1.1: {}
|
|
3300
|
+
|
|
3301
|
+
pkce-challenge@5.0.1: {}
|
|
3302
|
+
|
|
3303
|
+
postcss@8.4.31:
|
|
3304
|
+
dependencies:
|
|
3305
|
+
nanoid: 3.3.11
|
|
3306
|
+
picocolors: 1.1.1
|
|
3307
|
+
source-map-js: 1.2.1
|
|
3308
|
+
|
|
3309
|
+
postcss@8.5.8:
|
|
3310
|
+
dependencies:
|
|
3311
|
+
nanoid: 3.3.11
|
|
3312
|
+
picocolors: 1.1.1
|
|
3313
|
+
source-map-js: 1.2.1
|
|
3314
|
+
|
|
3315
|
+
preact-render-to-string@5.2.3(preact@10.11.3):
|
|
3316
|
+
dependencies:
|
|
3317
|
+
preact: 10.11.3
|
|
3318
|
+
pretty-format: 3.8.0
|
|
3319
|
+
|
|
3320
|
+
preact-render-to-string@6.5.11(preact@10.24.3):
|
|
3321
|
+
dependencies:
|
|
3322
|
+
preact: 10.24.3
|
|
3323
|
+
|
|
3324
|
+
preact@10.11.3: {}
|
|
3325
|
+
|
|
3326
|
+
preact@10.24.3: {}
|
|
3327
|
+
|
|
3328
|
+
prebuild-install@7.1.3:
|
|
3329
|
+
dependencies:
|
|
3330
|
+
detect-libc: 2.1.2
|
|
3331
|
+
expand-template: 2.0.3
|
|
3332
|
+
github-from-package: 0.0.0
|
|
3333
|
+
minimist: 1.2.8
|
|
3334
|
+
mkdirp-classic: 0.5.3
|
|
3335
|
+
napi-build-utils: 2.0.0
|
|
3336
|
+
node-abi: 3.88.0
|
|
3337
|
+
pump: 3.0.4
|
|
3338
|
+
rc: 1.2.8
|
|
3339
|
+
simple-get: 4.0.1
|
|
3340
|
+
tar-fs: 2.1.4
|
|
3341
|
+
tunnel-agent: 0.6.0
|
|
3342
|
+
|
|
3343
|
+
pretty-format@3.8.0: {}
|
|
3344
|
+
|
|
3345
|
+
property-information@7.1.0: {}
|
|
3346
|
+
|
|
3347
|
+
proxy-addr@2.0.7:
|
|
3348
|
+
dependencies:
|
|
3349
|
+
forwarded: 0.2.0
|
|
3350
|
+
ipaddr.js: 1.9.1
|
|
3351
|
+
|
|
3352
|
+
pump@3.0.4:
|
|
3353
|
+
dependencies:
|
|
3354
|
+
end-of-stream: 1.4.5
|
|
3355
|
+
once: 1.4.0
|
|
3356
|
+
|
|
3357
|
+
qs@6.15.0:
|
|
3358
|
+
dependencies:
|
|
3359
|
+
side-channel: 1.1.0
|
|
3360
|
+
|
|
3361
|
+
range-parser@1.2.1: {}
|
|
3362
|
+
|
|
3363
|
+
raw-body@3.0.2:
|
|
3364
|
+
dependencies:
|
|
3365
|
+
bytes: 3.1.2
|
|
3366
|
+
http-errors: 2.0.1
|
|
3367
|
+
iconv-lite: 0.7.2
|
|
3368
|
+
unpipe: 1.0.0
|
|
3369
|
+
|
|
3370
|
+
rc@1.2.8:
|
|
3371
|
+
dependencies:
|
|
3372
|
+
deep-extend: 0.6.0
|
|
3373
|
+
ini: 1.3.8
|
|
3374
|
+
minimist: 1.2.8
|
|
3375
|
+
strip-json-comments: 2.0.1
|
|
3376
|
+
|
|
3377
|
+
react-dom@19.2.4(react@19.2.4):
|
|
3378
|
+
dependencies:
|
|
3379
|
+
react: 19.2.4
|
|
3380
|
+
scheduler: 0.27.0
|
|
3381
|
+
|
|
3382
|
+
react-markdown@10.1.0(@types/react@19.2.14)(react@19.2.4):
|
|
3383
|
+
dependencies:
|
|
3384
|
+
'@types/hast': 3.0.4
|
|
3385
|
+
'@types/mdast': 4.0.4
|
|
3386
|
+
'@types/react': 19.2.14
|
|
3387
|
+
devlop: 1.1.0
|
|
3388
|
+
hast-util-to-jsx-runtime: 2.3.6
|
|
3389
|
+
html-url-attributes: 3.0.1
|
|
3390
|
+
mdast-util-to-hast: 13.2.1
|
|
3391
|
+
react: 19.2.4
|
|
3392
|
+
remark-parse: 11.0.0
|
|
3393
|
+
remark-rehype: 11.1.2
|
|
3394
|
+
unified: 11.0.5
|
|
3395
|
+
unist-util-visit: 5.1.0
|
|
3396
|
+
vfile: 6.0.3
|
|
3397
|
+
transitivePeerDependencies:
|
|
3398
|
+
- supports-color
|
|
3399
|
+
|
|
3400
|
+
react@19.2.4: {}
|
|
3401
|
+
|
|
3402
|
+
readable-stream@3.6.2:
|
|
3403
|
+
dependencies:
|
|
3404
|
+
inherits: 2.0.4
|
|
3405
|
+
string_decoder: 1.3.0
|
|
3406
|
+
util-deprecate: 1.0.2
|
|
3407
|
+
|
|
3408
|
+
remark-gfm@4.0.1:
|
|
3409
|
+
dependencies:
|
|
3410
|
+
'@types/mdast': 4.0.4
|
|
3411
|
+
mdast-util-gfm: 3.1.0
|
|
3412
|
+
micromark-extension-gfm: 3.0.0
|
|
3413
|
+
remark-parse: 11.0.0
|
|
3414
|
+
remark-stringify: 11.0.0
|
|
3415
|
+
unified: 11.0.5
|
|
3416
|
+
transitivePeerDependencies:
|
|
3417
|
+
- supports-color
|
|
3418
|
+
|
|
3419
|
+
remark-parse@11.0.0:
|
|
3420
|
+
dependencies:
|
|
3421
|
+
'@types/mdast': 4.0.4
|
|
3422
|
+
mdast-util-from-markdown: 2.0.3
|
|
3423
|
+
micromark-util-types: 2.0.2
|
|
3424
|
+
unified: 11.0.5
|
|
3425
|
+
transitivePeerDependencies:
|
|
3426
|
+
- supports-color
|
|
3427
|
+
|
|
3428
|
+
remark-rehype@11.1.2:
|
|
3429
|
+
dependencies:
|
|
3430
|
+
'@types/hast': 3.0.4
|
|
3431
|
+
'@types/mdast': 4.0.4
|
|
3432
|
+
mdast-util-to-hast: 13.2.1
|
|
3433
|
+
unified: 11.0.5
|
|
3434
|
+
vfile: 6.0.3
|
|
3435
|
+
|
|
3436
|
+
remark-stringify@11.0.0:
|
|
3437
|
+
dependencies:
|
|
3438
|
+
'@types/mdast': 4.0.4
|
|
3439
|
+
mdast-util-to-markdown: 2.1.2
|
|
3440
|
+
unified: 11.0.5
|
|
3441
|
+
|
|
3442
|
+
require-from-string@2.0.2: {}
|
|
3443
|
+
|
|
3444
|
+
resolve-pkg-maps@1.0.0: {}
|
|
3445
|
+
|
|
3446
|
+
router@2.2.0:
|
|
3447
|
+
dependencies:
|
|
3448
|
+
debug: 4.4.3
|
|
3449
|
+
depd: 2.0.0
|
|
3450
|
+
is-promise: 4.0.0
|
|
3451
|
+
parseurl: 1.3.3
|
|
3452
|
+
path-to-regexp: 8.4.0
|
|
3453
|
+
transitivePeerDependencies:
|
|
3454
|
+
- supports-color
|
|
3455
|
+
|
|
3456
|
+
safe-buffer@5.2.1: {}
|
|
3457
|
+
|
|
3458
|
+
safer-buffer@2.1.2: {}
|
|
3459
|
+
|
|
3460
|
+
scheduler@0.27.0: {}
|
|
3461
|
+
|
|
3462
|
+
semver@7.7.4: {}
|
|
3463
|
+
|
|
3464
|
+
send@1.2.1:
|
|
3465
|
+
dependencies:
|
|
3466
|
+
debug: 4.4.3
|
|
3467
|
+
encodeurl: 2.0.0
|
|
3468
|
+
escape-html: 1.0.3
|
|
3469
|
+
etag: 1.8.1
|
|
3470
|
+
fresh: 2.0.0
|
|
3471
|
+
http-errors: 2.0.1
|
|
3472
|
+
mime-types: 3.0.2
|
|
3473
|
+
ms: 2.1.3
|
|
3474
|
+
on-finished: 2.4.1
|
|
3475
|
+
range-parser: 1.2.1
|
|
3476
|
+
statuses: 2.0.2
|
|
3477
|
+
transitivePeerDependencies:
|
|
3478
|
+
- supports-color
|
|
3479
|
+
|
|
3480
|
+
serve-static@2.2.1:
|
|
3481
|
+
dependencies:
|
|
3482
|
+
encodeurl: 2.0.0
|
|
3483
|
+
escape-html: 1.0.3
|
|
3484
|
+
parseurl: 1.3.3
|
|
3485
|
+
send: 1.2.1
|
|
3486
|
+
transitivePeerDependencies:
|
|
3487
|
+
- supports-color
|
|
3488
|
+
|
|
3489
|
+
setprototypeof@1.2.0: {}
|
|
3490
|
+
|
|
3491
|
+
sharp@0.34.5:
|
|
3492
|
+
dependencies:
|
|
3493
|
+
'@img/colour': 1.1.0
|
|
3494
|
+
detect-libc: 2.1.2
|
|
3495
|
+
semver: 7.7.4
|
|
3496
|
+
optionalDependencies:
|
|
3497
|
+
'@img/sharp-darwin-arm64': 0.34.5
|
|
3498
|
+
'@img/sharp-darwin-x64': 0.34.5
|
|
3499
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
3500
|
+
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
3501
|
+
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
3502
|
+
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
3503
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
3504
|
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
3505
|
+
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
3506
|
+
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
3507
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
3508
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
3509
|
+
'@img/sharp-linux-arm': 0.34.5
|
|
3510
|
+
'@img/sharp-linux-arm64': 0.34.5
|
|
3511
|
+
'@img/sharp-linux-ppc64': 0.34.5
|
|
3512
|
+
'@img/sharp-linux-riscv64': 0.34.5
|
|
3513
|
+
'@img/sharp-linux-s390x': 0.34.5
|
|
3514
|
+
'@img/sharp-linux-x64': 0.34.5
|
|
3515
|
+
'@img/sharp-linuxmusl-arm64': 0.34.5
|
|
3516
|
+
'@img/sharp-linuxmusl-x64': 0.34.5
|
|
3517
|
+
'@img/sharp-wasm32': 0.34.5
|
|
3518
|
+
'@img/sharp-win32-arm64': 0.34.5
|
|
3519
|
+
'@img/sharp-win32-ia32': 0.34.5
|
|
3520
|
+
'@img/sharp-win32-x64': 0.34.5
|
|
3521
|
+
optional: true
|
|
3522
|
+
|
|
3523
|
+
shebang-command@2.0.0:
|
|
3524
|
+
dependencies:
|
|
3525
|
+
shebang-regex: 3.0.0
|
|
3526
|
+
|
|
3527
|
+
shebang-regex@3.0.0: {}
|
|
3528
|
+
|
|
3529
|
+
side-channel-list@1.0.0:
|
|
3530
|
+
dependencies:
|
|
3531
|
+
es-errors: 1.3.0
|
|
3532
|
+
object-inspect: 1.13.4
|
|
3533
|
+
|
|
3534
|
+
side-channel-map@1.0.1:
|
|
3535
|
+
dependencies:
|
|
3536
|
+
call-bound: 1.0.4
|
|
3537
|
+
es-errors: 1.3.0
|
|
3538
|
+
get-intrinsic: 1.3.0
|
|
3539
|
+
object-inspect: 1.13.4
|
|
3540
|
+
|
|
3541
|
+
side-channel-weakmap@1.0.2:
|
|
3542
|
+
dependencies:
|
|
3543
|
+
call-bound: 1.0.4
|
|
3544
|
+
es-errors: 1.3.0
|
|
3545
|
+
get-intrinsic: 1.3.0
|
|
3546
|
+
object-inspect: 1.13.4
|
|
3547
|
+
side-channel-map: 1.0.1
|
|
3548
|
+
|
|
3549
|
+
side-channel@1.1.0:
|
|
3550
|
+
dependencies:
|
|
3551
|
+
es-errors: 1.3.0
|
|
3552
|
+
object-inspect: 1.13.4
|
|
3553
|
+
side-channel-list: 1.0.0
|
|
3554
|
+
side-channel-map: 1.0.1
|
|
3555
|
+
side-channel-weakmap: 1.0.2
|
|
3556
|
+
|
|
3557
|
+
simple-concat@1.0.1: {}
|
|
3558
|
+
|
|
3559
|
+
simple-get@4.0.1:
|
|
3560
|
+
dependencies:
|
|
3561
|
+
decompress-response: 6.0.0
|
|
3562
|
+
once: 1.4.0
|
|
3563
|
+
simple-concat: 1.0.1
|
|
3564
|
+
|
|
3565
|
+
source-map-js@1.2.1: {}
|
|
3566
|
+
|
|
3567
|
+
space-separated-tokens@2.0.2: {}
|
|
3568
|
+
|
|
3569
|
+
statuses@2.0.2: {}
|
|
3570
|
+
|
|
3571
|
+
string_decoder@1.3.0:
|
|
3572
|
+
dependencies:
|
|
3573
|
+
safe-buffer: 5.2.1
|
|
3574
|
+
|
|
3575
|
+
stringify-entities@4.0.4:
|
|
3576
|
+
dependencies:
|
|
3577
|
+
character-entities-html4: 2.1.0
|
|
3578
|
+
character-entities-legacy: 3.0.0
|
|
3579
|
+
|
|
3580
|
+
strip-json-comments@2.0.1: {}
|
|
3581
|
+
|
|
3582
|
+
style-to-js@1.1.21:
|
|
3583
|
+
dependencies:
|
|
3584
|
+
style-to-object: 1.0.14
|
|
3585
|
+
|
|
3586
|
+
style-to-object@1.0.14:
|
|
3587
|
+
dependencies:
|
|
3588
|
+
inline-style-parser: 0.2.7
|
|
3589
|
+
|
|
3590
|
+
styled-jsx@5.1.6(react@19.2.4):
|
|
3591
|
+
dependencies:
|
|
3592
|
+
client-only: 0.0.1
|
|
3593
|
+
react: 19.2.4
|
|
3594
|
+
|
|
3595
|
+
tailwindcss@4.2.1: {}
|
|
3596
|
+
|
|
3597
|
+
tapable@2.3.0: {}
|
|
3598
|
+
|
|
3599
|
+
tar-fs@2.1.4:
|
|
3600
|
+
dependencies:
|
|
3601
|
+
chownr: 1.1.4
|
|
3602
|
+
mkdirp-classic: 0.5.3
|
|
3603
|
+
pump: 3.0.4
|
|
3604
|
+
tar-stream: 2.2.0
|
|
3605
|
+
|
|
3606
|
+
tar-stream@2.2.0:
|
|
3607
|
+
dependencies:
|
|
3608
|
+
bl: 4.1.0
|
|
3609
|
+
end-of-stream: 1.4.5
|
|
3610
|
+
fs-constants: 1.0.0
|
|
3611
|
+
inherits: 2.0.4
|
|
3612
|
+
readable-stream: 3.6.2
|
|
3613
|
+
|
|
3614
|
+
toidentifier@1.0.1: {}
|
|
3615
|
+
|
|
3616
|
+
trim-lines@3.0.1: {}
|
|
3617
|
+
|
|
3618
|
+
trough@2.2.0: {}
|
|
3619
|
+
|
|
3620
|
+
tslib@2.8.1: {}
|
|
3621
|
+
|
|
3622
|
+
tsx@4.21.0:
|
|
3623
|
+
dependencies:
|
|
3624
|
+
esbuild: 0.27.3
|
|
3625
|
+
get-tsconfig: 4.13.6
|
|
3626
|
+
optionalDependencies:
|
|
3627
|
+
fsevents: 2.3.3
|
|
3628
|
+
|
|
3629
|
+
tunnel-agent@0.6.0:
|
|
3630
|
+
dependencies:
|
|
3631
|
+
safe-buffer: 5.2.1
|
|
3632
|
+
|
|
3633
|
+
type-is@2.0.1:
|
|
3634
|
+
dependencies:
|
|
3635
|
+
content-type: 1.0.5
|
|
3636
|
+
media-typer: 1.1.0
|
|
3637
|
+
mime-types: 3.0.2
|
|
3638
|
+
|
|
3639
|
+
typescript@5.9.3: {}
|
|
3640
|
+
|
|
3641
|
+
undici-types@7.18.2: {}
|
|
3642
|
+
|
|
3643
|
+
unified@11.0.5:
|
|
3644
|
+
dependencies:
|
|
3645
|
+
'@types/unist': 3.0.3
|
|
3646
|
+
bail: 2.0.2
|
|
3647
|
+
devlop: 1.1.0
|
|
3648
|
+
extend: 3.0.2
|
|
3649
|
+
is-plain-obj: 4.1.0
|
|
3650
|
+
trough: 2.2.0
|
|
3651
|
+
vfile: 6.0.3
|
|
3652
|
+
|
|
3653
|
+
unist-util-is@6.0.1:
|
|
3654
|
+
dependencies:
|
|
3655
|
+
'@types/unist': 3.0.3
|
|
3656
|
+
|
|
3657
|
+
unist-util-position@5.0.0:
|
|
3658
|
+
dependencies:
|
|
3659
|
+
'@types/unist': 3.0.3
|
|
3660
|
+
|
|
3661
|
+
unist-util-stringify-position@4.0.0:
|
|
3662
|
+
dependencies:
|
|
3663
|
+
'@types/unist': 3.0.3
|
|
3664
|
+
|
|
3665
|
+
unist-util-visit-parents@6.0.2:
|
|
3666
|
+
dependencies:
|
|
3667
|
+
'@types/unist': 3.0.3
|
|
3668
|
+
unist-util-is: 6.0.1
|
|
3669
|
+
|
|
3670
|
+
unist-util-visit@5.1.0:
|
|
3671
|
+
dependencies:
|
|
3672
|
+
'@types/unist': 3.0.3
|
|
3673
|
+
unist-util-is: 6.0.1
|
|
3674
|
+
unist-util-visit-parents: 6.0.2
|
|
3675
|
+
|
|
3676
|
+
unpipe@1.0.0: {}
|
|
3677
|
+
|
|
3678
|
+
use-sync-external-store@1.6.0(react@19.2.4):
|
|
3679
|
+
dependencies:
|
|
3680
|
+
react: 19.2.4
|
|
3681
|
+
|
|
3682
|
+
util-deprecate@1.0.2: {}
|
|
3683
|
+
|
|
3684
|
+
vary@1.1.2: {}
|
|
3685
|
+
|
|
3686
|
+
vfile-message@4.0.3:
|
|
3687
|
+
dependencies:
|
|
3688
|
+
'@types/unist': 3.0.3
|
|
3689
|
+
unist-util-stringify-position: 4.0.0
|
|
3690
|
+
|
|
3691
|
+
vfile@6.0.3:
|
|
3692
|
+
dependencies:
|
|
3693
|
+
'@types/unist': 3.0.3
|
|
3694
|
+
vfile-message: 4.0.3
|
|
3695
|
+
|
|
3696
|
+
which@2.0.2:
|
|
3697
|
+
dependencies:
|
|
3698
|
+
isexe: 2.0.0
|
|
3699
|
+
|
|
3700
|
+
wrappy@1.0.2: {}
|
|
3701
|
+
|
|
3702
|
+
ws@8.19.0: {}
|
|
3703
|
+
|
|
3704
|
+
yaml@2.8.2: {}
|
|
3705
|
+
|
|
3706
|
+
zod-to-json-schema@3.25.2(zod@4.3.6):
|
|
3707
|
+
dependencies:
|
|
3708
|
+
zod: 4.3.6
|
|
3709
|
+
|
|
3710
|
+
zod@4.3.6: {}
|
|
3711
|
+
|
|
3712
|
+
zustand@4.5.7(@types/react@19.2.14)(react@19.2.4):
|
|
3713
|
+
dependencies:
|
|
3714
|
+
use-sync-external-store: 1.6.0(react@19.2.4)
|
|
3715
|
+
optionalDependencies:
|
|
3716
|
+
'@types/react': 19.2.14
|
|
3717
|
+
react: 19.2.4
|
|
3718
|
+
|
|
3719
|
+
zwitch@2.0.4: {}
|