@ebowwa/coder 0.2.1 → 0.7.64
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/README.md +31 -32
- package/dist/core/__tests__/permissions.test.d.ts +12 -0
- package/dist/core/__tests__/permissions.test.d.ts.map +1 -0
- package/dist/core/__tests__/permissions.test.js +851 -0
- package/dist/core/agent-loop/__tests__/compaction.test.d.ts +5 -0
- package/dist/core/agent-loop/__tests__/compaction.test.d.ts.map +1 -0
- package/dist/core/agent-loop/__tests__/compaction.test.js +209 -0
- package/dist/core/agent-loop/__tests__/formatters.test.d.ts +5 -0
- package/dist/core/agent-loop/__tests__/formatters.test.d.ts.map +1 -0
- package/dist/core/agent-loop/__tests__/formatters.test.js +195 -0
- package/dist/core/agent-loop/__tests__/index.test.d.ts +5 -0
- package/dist/core/agent-loop/__tests__/index.test.d.ts.map +1 -0
- package/dist/core/agent-loop/__tests__/index.test.js +121 -0
- package/dist/core/agent-loop/__tests__/loop-state.test.d.ts +5 -0
- package/dist/core/agent-loop/__tests__/loop-state.test.d.ts.map +1 -0
- package/dist/core/agent-loop/__tests__/loop-state.test.js +340 -0
- package/dist/core/agent-loop/__tests__/message-builder.test.d.ts +5 -0
- package/dist/core/agent-loop/__tests__/message-builder.test.d.ts.map +1 -0
- package/dist/core/agent-loop/__tests__/message-builder.test.js +178 -0
- package/dist/core/agent-loop/__tests__/tool-executor.test.d.ts +5 -0
- package/dist/core/agent-loop/__tests__/tool-executor.test.d.ts.map +1 -0
- package/dist/core/agent-loop/__tests__/tool-executor.test.js +331 -0
- package/dist/core/agent-loop/compaction.d.ts +39 -0
- package/dist/core/agent-loop/compaction.d.ts.map +1 -0
- package/dist/core/agent-loop/compaction.js +51 -0
- package/dist/core/agent-loop/formatters.d.ts +21 -0
- package/dist/core/agent-loop/formatters.d.ts.map +1 -0
- package/dist/core/agent-loop/formatters.js +42 -0
- package/dist/core/agent-loop/index.d.ts +25 -0
- package/dist/core/agent-loop/index.d.ts.map +1 -0
- package/dist/core/agent-loop/index.js +83 -0
- package/dist/core/agent-loop/loop-state.d.ts +74 -0
- package/dist/core/agent-loop/loop-state.d.ts.map +1 -0
- package/dist/core/agent-loop/loop-state.js +147 -0
- package/dist/core/agent-loop/message-builder.d.ts +13 -0
- package/dist/core/agent-loop/message-builder.d.ts.map +1 -0
- package/dist/core/agent-loop/message-builder.js +49 -0
- package/dist/core/agent-loop/tool-executor.d.ts +23 -0
- package/dist/core/agent-loop/tool-executor.d.ts.map +1 -0
- package/dist/core/agent-loop/tool-executor.js +152 -0
- package/dist/core/agent-loop/turn-executor.d.ts +57 -0
- package/dist/core/agent-loop/turn-executor.d.ts.map +1 -0
- package/dist/core/agent-loop/turn-executor.js +124 -0
- package/dist/core/agent-loop/types.d.ts +141 -0
- package/dist/core/agent-loop/types.d.ts.map +1 -0
- package/dist/core/agent-loop/types.js +4 -0
- package/dist/core/agent-loop.d.ts +17 -0
- package/dist/core/agent-loop.d.ts.map +1 -0
- package/dist/core/agent-loop.js +16 -0
- package/dist/core/api-client-impl.d.ts +62 -0
- package/dist/core/api-client-impl.d.ts.map +1 -0
- package/dist/core/api-client-impl.js +479 -0
- package/dist/core/api-client.d.ts +6 -0
- package/dist/core/api-client.d.ts.map +1 -0
- package/dist/core/api-client.js +5 -0
- package/dist/core/checkpoints.d.ts +128 -0
- package/dist/core/checkpoints.d.ts.map +1 -0
- package/dist/core/checkpoints.js +438 -0
- package/dist/core/claude-md.d.ts +71 -0
- package/dist/core/claude-md.d.ts.map +1 -0
- package/dist/core/claude-md.js +198 -0
- package/dist/core/cognitive-security/hooks.d.ts +138 -0
- package/dist/core/cognitive-security/hooks.d.ts.map +1 -0
- package/dist/core/cognitive-security/hooks.js +389 -0
- package/dist/core/cognitive-security/index.d.ts +751 -0
- package/dist/core/cognitive-security/index.d.ts.map +1 -0
- package/dist/core/cognitive-security/index.js +1123 -0
- package/dist/core/cognitive-security/middleware.d.ts +136 -0
- package/dist/core/cognitive-security/middleware.d.ts.map +1 -0
- package/dist/core/cognitive-security/middleware.js +376 -0
- package/dist/core/config-loader.d.ts +127 -0
- package/dist/core/config-loader.d.ts.map +1 -0
- package/dist/core/config-loader.js +219 -0
- package/dist/core/context-compaction.d.ts +87 -0
- package/dist/core/context-compaction.d.ts.map +1 -0
- package/dist/core/context-compaction.js +428 -0
- package/dist/core/git-status.d.ts +25 -0
- package/dist/core/git-status.d.ts.map +1 -0
- package/dist/core/git-status.js +204 -0
- package/dist/core/image.d.ts +69 -0
- package/dist/core/image.d.ts.map +1 -0
- package/dist/core/image.js +290 -0
- package/dist/core/image.test.d.ts +2 -0
- package/dist/core/image.test.d.ts.map +1 -0
- package/dist/core/image.test.js +149 -0
- package/dist/core/models.d.ts +123 -0
- package/dist/core/models.d.ts.map +1 -0
- package/dist/core/models.js +325 -0
- package/dist/core/permissions.d.ts +81 -0
- package/dist/core/permissions.d.ts.map +1 -0
- package/dist/core/permissions.js +327 -0
- package/dist/core/retry.d.ts +25 -0
- package/dist/core/retry.d.ts.map +1 -0
- package/dist/core/retry.js +121 -0
- package/dist/core/session-store.d.ts +9 -0
- package/dist/core/session-store.d.ts.map +1 -0
- package/dist/core/session-store.js +10 -0
- package/dist/core/sessions/export.d.ts +47 -0
- package/dist/core/sessions/export.d.ts.map +1 -0
- package/dist/core/sessions/export.js +256 -0
- package/dist/core/sessions/index.d.ts +132 -0
- package/dist/core/sessions/index.d.ts.map +1 -0
- package/dist/core/sessions/index.js +442 -0
- package/dist/core/sessions/metadata.d.ts +77 -0
- package/dist/core/sessions/metadata.d.ts.map +1 -0
- package/dist/core/sessions/metadata.js +233 -0
- package/dist/core/sessions/persistence.d.ts +72 -0
- package/dist/core/sessions/persistence.d.ts.map +1 -0
- package/dist/core/sessions/persistence.js +201 -0
- package/dist/core/sessions/types.d.ts +110 -0
- package/dist/core/sessions/types.d.ts.map +1 -0
- package/dist/core/sessions/types.js +4 -0
- package/dist/core/stream-highlighter.d.ts +18 -0
- package/dist/core/stream-highlighter.d.ts.map +1 -0
- package/dist/core/stream-highlighter.js +916 -0
- package/dist/core/system-reminders.d.ts +89 -0
- package/dist/core/system-reminders.d.ts.map +1 -0
- package/dist/core/system-reminders.js +285 -0
- package/dist/ecosystem/hooks/__tests__/index.test.d.ts +5 -0
- package/dist/ecosystem/hooks/__tests__/index.test.d.ts.map +1 -0
- package/dist/ecosystem/hooks/__tests__/index.test.js +458 -0
- package/dist/ecosystem/hooks/index.d.ts +59 -0
- package/dist/ecosystem/hooks/index.d.ts.map +1 -0
- package/dist/ecosystem/hooks/index.js +294 -0
- package/dist/ecosystem/hooks/prompt-evaluator.d.ts +32 -0
- package/dist/ecosystem/hooks/prompt-evaluator.d.ts.map +1 -0
- package/dist/ecosystem/hooks/prompt-evaluator.js +229 -0
- package/dist/ecosystem/skills/index.d.ts +55 -0
- package/dist/ecosystem/skills/index.d.ts.map +1 -0
- package/dist/ecosystem/skills/index.js +258 -0
- package/dist/ecosystem/tools/__tests__/index.test.d.ts +7 -0
- package/dist/ecosystem/tools/__tests__/index.test.d.ts.map +1 -0
- package/dist/ecosystem/tools/__tests__/index.test.js +856 -0
- package/dist/ecosystem/tools/index.d.ts +24 -0
- package/dist/ecosystem/tools/index.d.ts.map +1 -0
- package/dist/ecosystem/tools/index.js +1709 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +32 -2
- package/dist/interfaces/mcp/client.d.ts +40 -0
- package/dist/interfaces/mcp/client.d.ts.map +1 -0
- package/dist/interfaces/mcp/client.js +309 -0
- package/dist/interfaces/ui/index.d.ts +36 -0
- package/dist/interfaces/ui/index.d.ts.map +1 -0
- package/dist/interfaces/ui/index.js +61 -0
- package/dist/interfaces/ui/spinner.d.ts +140 -0
- package/dist/interfaces/ui/spinner.d.ts.map +1 -0
- package/dist/interfaces/ui/spinner.js +342 -0
- package/dist/interfaces/ui/terminal/cli/index.d.ts +12 -0
- package/dist/interfaces/ui/terminal/cli/index.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/cli/index.js +167 -0
- package/dist/interfaces/ui/terminal/shared/args.d.ts +39 -0
- package/dist/interfaces/ui/terminal/shared/args.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/shared/args.js +176 -0
- package/dist/interfaces/ui/terminal/shared/index.d.ts +11 -0
- package/dist/interfaces/ui/terminal/shared/index.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/shared/index.js +16 -0
- package/dist/interfaces/ui/terminal/shared/loading-state.d.ts +124 -0
- package/dist/interfaces/ui/terminal/shared/loading-state.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/shared/loading-state.js +246 -0
- package/dist/interfaces/ui/terminal/shared/query.d.ts +22 -0
- package/dist/interfaces/ui/terminal/shared/query.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/shared/query.js +100 -0
- package/dist/interfaces/ui/terminal/shared/setup.d.ts +33 -0
- package/dist/interfaces/ui/terminal/shared/setup.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/shared/setup.js +226 -0
- package/dist/interfaces/ui/terminal/shared/status-line.d.ts +117 -0
- package/dist/interfaces/ui/terminal/shared/status-line.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/shared/status-line.js +267 -0
- package/dist/interfaces/ui/terminal/shared/system-prompt.d.ts +38 -0
- package/dist/interfaces/ui/terminal/shared/system-prompt.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/shared/system-prompt.js +102 -0
- package/dist/interfaces/ui/terminal/tui/HelpPanel.d.ts +39 -0
- package/dist/interfaces/ui/terminal/tui/HelpPanel.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/HelpPanel.js +215 -0
- package/dist/interfaces/ui/terminal/tui/InputContext.d.ts +91 -0
- package/dist/interfaces/ui/terminal/tui/InputContext.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/InputContext.js +154 -0
- package/dist/interfaces/ui/terminal/tui/InputField.d.ts +18 -0
- package/dist/interfaces/ui/terminal/tui/InputField.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/InputField.js +41 -0
- package/dist/interfaces/ui/terminal/tui/InteractiveTUI.d.ts +16 -0
- package/dist/interfaces/ui/terminal/tui/InteractiveTUI.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/InteractiveTUI.js +451 -0
- package/dist/interfaces/ui/terminal/tui/MessageArea.d.ts +10 -0
- package/dist/interfaces/ui/terminal/tui/MessageArea.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/MessageArea.js +91 -0
- package/dist/interfaces/ui/terminal/tui/MessageStore.d.ts +48 -0
- package/dist/interfaces/ui/terminal/tui/MessageStore.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/MessageStore.js +151 -0
- package/dist/interfaces/ui/terminal/tui/StatusBar.d.ts +9 -0
- package/dist/interfaces/ui/terminal/tui/StatusBar.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/StatusBar.js +36 -0
- package/dist/interfaces/ui/terminal/tui/commands.d.ts +21 -0
- package/dist/interfaces/ui/terminal/tui/commands.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/commands.js +359 -0
- package/dist/interfaces/ui/terminal/tui/components/InteractiveElements.d.ts +115 -0
- package/dist/interfaces/ui/terminal/tui/components/InteractiveElements.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/components/InteractiveElements.js +306 -0
- package/dist/interfaces/ui/terminal/tui/components/MultilineInput.d.ts +92 -0
- package/dist/interfaces/ui/terminal/tui/components/MultilineInput.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/components/MultilineInput.js +399 -0
- package/dist/interfaces/ui/terminal/tui/components/PaneManager.d.ts +59 -0
- package/dist/interfaces/ui/terminal/tui/components/PaneManager.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/components/PaneManager.js +139 -0
- package/dist/interfaces/ui/terminal/tui/components/Sidebar.d.ts +68 -0
- package/dist/interfaces/ui/terminal/tui/components/Sidebar.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/components/Sidebar.js +340 -0
- package/dist/interfaces/ui/terminal/tui/components/index.d.ts +23 -0
- package/dist/interfaces/ui/terminal/tui/components/index.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/components/index.js +51 -0
- package/dist/interfaces/ui/terminal/tui/console.d.ts +20 -0
- package/dist/interfaces/ui/terminal/tui/console.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/console.js +46 -0
- package/dist/interfaces/ui/terminal/tui/index.d.ts +20 -0
- package/dist/interfaces/ui/terminal/tui/index.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/index.js +28 -0
- package/dist/interfaces/ui/terminal/tui/run.d.ts +13 -0
- package/dist/interfaces/ui/terminal/tui/run.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/run.js +31 -0
- package/dist/interfaces/ui/terminal/tui/spinner.d.ts +44 -0
- package/dist/interfaces/ui/terminal/tui/spinner.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/spinner.js +59 -0
- package/dist/interfaces/ui/terminal/tui/tui-app.d.ts +39 -0
- package/dist/interfaces/ui/terminal/tui/tui-app.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/tui-app.js +198 -0
- package/dist/interfaces/ui/terminal/tui/tui-footer.d.ts +167 -0
- package/dist/interfaces/ui/terminal/tui/tui-footer.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/tui-footer.js +330 -0
- package/dist/interfaces/ui/terminal/tui/types.d.ts +165 -0
- package/dist/interfaces/ui/terminal/tui/types.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/types.js +5 -0
- package/dist/interfaces/ui/terminal/tui/useInputHandler.d.ts +23 -0
- package/dist/interfaces/ui/terminal/tui/useInputHandler.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/useInputHandler.js +72 -0
- package/dist/interfaces/ui/terminal/tui/useNativeInput.d.ts +90 -0
- package/dist/interfaces/ui/terminal/tui/useNativeInput.d.ts.map +1 -0
- package/dist/interfaces/ui/terminal/tui/useNativeInput.js +188 -0
- package/dist/native/index.d.ts +480 -0
- package/dist/native/index.d.ts.map +1 -0
- package/dist/native/index.js +1625 -0
- package/dist/teammates/index.d.ts +161 -0
- package/dist/teammates/index.d.ts.map +1 -0
- package/dist/teammates/index.js +827 -0
- package/dist/types/index.d.ts +482 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +52 -0
- package/native/README.md +5 -5
- package/native/index.darwin-arm64.node +0 -0
- package/native/index.node +0 -0
- package/native/package.json +4 -4
- package/package.json +33 -16
- package/packages/src/core/__tests__/permissions.test.ts +1091 -0
- package/packages/src/core/agent-loop/__tests__/compaction.test.ts +280 -0
- package/packages/src/core/agent-loop/__tests__/formatters.test.ts +234 -0
- package/packages/src/core/agent-loop/__tests__/index.test.ts +162 -0
- package/packages/src/core/agent-loop/__tests__/loop-state.test.ts +413 -0
- package/packages/src/core/agent-loop/__tests__/message-builder.test.ts +229 -0
- package/packages/src/core/agent-loop/__tests__/tool-executor.test.ts +457 -0
- package/packages/src/core/agent-loop/compaction.ts +88 -0
- package/packages/src/core/agent-loop/formatters.ts +50 -0
- package/packages/src/core/agent-loop/index.ts +135 -0
- package/packages/src/core/agent-loop/loop-state.ts +187 -0
- package/packages/src/core/agent-loop/message-builder.ts +62 -0
- package/packages/src/core/agent-loop/tool-executor.ts +211 -0
- package/packages/src/core/agent-loop/turn-executor.ts +222 -0
- package/packages/src/core/agent-loop/types.ts +148 -0
- package/packages/src/core/agent-loop.ts +18 -0
- package/packages/src/core/api-client-impl.ts +619 -0
- package/packages/src/core/api-client.ts +6 -0
- package/packages/src/core/checkpoints.ts +606 -0
- package/packages/src/core/claude-md.ts +272 -0
- package/packages/src/core/cognitive-security/hooks.ts +590 -0
- package/packages/src/core/cognitive-security/index.ts +2041 -0
- package/packages/src/core/cognitive-security/middleware.ts +536 -0
- package/packages/src/core/config-loader.ts +324 -0
- package/packages/src/core/context-compaction.ts +578 -0
- package/packages/src/core/git-status.ts +262 -0
- package/packages/src/core/image.test.ts +180 -0
- package/packages/src/core/image.ts +350 -0
- package/packages/src/core/lmdb.db +0 -0
- package/packages/src/core/lmdb.db-lock +0 -0
- package/packages/src/core/models.ts +430 -0
- package/packages/src/core/normalizers/todo +4 -0
- package/packages/src/core/permissions.ts +431 -0
- package/packages/src/core/retry.ts +170 -0
- package/packages/src/core/session-store.ts +36 -0
- package/packages/src/core/sessions/export.ts +329 -0
- package/packages/src/core/sessions/index.ts +587 -0
- package/packages/src/core/sessions/metadata.ts +309 -0
- package/packages/src/core/sessions/persistence.ts +244 -0
- package/packages/src/core/sessions/types.ts +169 -0
- package/packages/src/core/stream-highlighter.ts +1123 -0
- package/packages/src/core/system-reminders.ts +402 -0
- package/packages/src/core/todo +8 -0
- package/packages/src/ecosystem/hooks/__tests__/index.test.ts +561 -0
- package/packages/src/ecosystem/hooks/index.ts +341 -0
- package/packages/src/ecosystem/hooks/prompt-evaluator.ts +300 -0
- package/packages/src/ecosystem/skills/index.ts +295 -0
- package/packages/src/ecosystem/tools/__tests__/index.test.ts +1335 -0
- package/packages/src/ecosystem/tools/index.ts +1877 -0
- package/packages/src/index.ts +120 -0
- package/packages/src/interfaces/mcp/client.ts +389 -0
- package/packages/src/interfaces/ui/Screenshot 2026-03-02 at 9.23.10/342/200/257PM.png +0 -0
- package/packages/src/interfaces/ui/Screenshot 2026-03-03 at 10.55.11/342/200/257AM.png +0 -0
- package/packages/src/interfaces/ui/index.ts +161 -0
- package/packages/src/interfaces/ui/lmdb.db +0 -0
- package/packages/src/interfaces/ui/lmdb.db-lock +0 -0
- package/packages/src/interfaces/ui/spinner.ts +451 -0
- package/packages/src/interfaces/ui/terminal/cli/index.ts +228 -0
- package/packages/src/interfaces/ui/terminal/lmdb.db +0 -0
- package/packages/src/interfaces/ui/terminal/lmdb.db-lock +0 -0
- package/packages/src/interfaces/ui/terminal/shared/args.ts +222 -0
- package/packages/src/interfaces/ui/terminal/shared/index.ts +71 -0
- package/packages/src/interfaces/ui/terminal/shared/loading-state.ts +322 -0
- package/packages/src/interfaces/ui/terminal/shared/query.ts +146 -0
- package/packages/src/interfaces/ui/terminal/shared/setup.ts +295 -0
- package/packages/src/interfaces/ui/terminal/shared/status-line.ts +358 -0
- package/packages/src/interfaces/ui/terminal/shared/system-prompt.ts +146 -0
- package/packages/src/interfaces/ui/terminal/tui/HelpPanel.tsx +262 -0
- package/packages/src/interfaces/ui/terminal/tui/InputContext.tsx +232 -0
- package/packages/src/interfaces/ui/terminal/tui/InputField.tsx +62 -0
- package/packages/src/interfaces/ui/terminal/tui/InteractiveTUI.tsx +537 -0
- package/packages/src/interfaces/ui/terminal/tui/MessageArea.tsx +107 -0
- package/packages/src/interfaces/ui/terminal/tui/MessageStore.tsx +240 -0
- package/packages/src/interfaces/ui/terminal/tui/StatusBar.tsx +54 -0
- package/packages/src/interfaces/ui/terminal/tui/commands.ts +438 -0
- package/packages/src/interfaces/ui/terminal/tui/components/InteractiveElements.tsx +584 -0
- package/packages/src/interfaces/ui/terminal/tui/components/MultilineInput.tsx +614 -0
- package/packages/src/interfaces/ui/terminal/tui/components/PaneManager.tsx +333 -0
- package/packages/src/interfaces/ui/terminal/tui/components/Sidebar.tsx +604 -0
- package/packages/src/interfaces/ui/terminal/tui/components/index.ts +118 -0
- package/packages/src/interfaces/ui/terminal/tui/console.ts +49 -0
- package/packages/src/interfaces/ui/terminal/tui/index.ts +90 -0
- package/packages/src/interfaces/ui/terminal/tui/run.tsx +42 -0
- package/packages/src/interfaces/ui/terminal/tui/spinner.ts +69 -0
- package/packages/src/interfaces/ui/terminal/tui/tui-app.tsx +390 -0
- package/packages/src/interfaces/ui/terminal/tui/tui-footer.ts +422 -0
- package/packages/src/interfaces/ui/terminal/tui/types.ts +186 -0
- package/packages/src/interfaces/ui/terminal/tui/useInputHandler.ts +104 -0
- package/packages/src/interfaces/ui/terminal/tui/useNativeInput.ts +239 -0
- package/packages/src/lmdb.db +0 -0
- package/packages/src/lmdb.db-lock +0 -0
- package/packages/src/native/index.ts +2345 -0
- package/packages/src/teammates/index.ts +982 -0
- package/packages/src/types/index.ts +722 -0
- package/dist/cli.js +0 -148
- package/dist/index-0pkak453.js +0 -136
- package/dist/index-0qd0x8b4.js +0 -110
- package/dist/index-0x3kprq6.js +0 -240
- package/dist/index-1eawy937.js +0 -308
- package/dist/index-24m2aygy.js +0 -240
- package/dist/index-29xcjnne.js +0 -280
- package/dist/index-2avyytn5.js +0 -349
- package/dist/index-4ms367ey.js +0 -136
- package/dist/index-4w2t3b0m.js +0 -240
- package/dist/index-4xfgd8nz.js +0 -261
- package/dist/index-5acjp9gc.js +0 -157
- package/dist/index-5s15hr56.js +0 -136
- package/dist/index-6e4wf341.js +0 -349
- package/dist/index-6fvnkedw.js +0 -240
- package/dist/index-6rqpmd4g.js +0 -128
- package/dist/index-77ckwnbm.js +0 -280
- package/dist/index-9knxy49k.js +0 -128
- package/dist/index-9zrnw4zx.js +0 -128
- package/dist/index-bk21w99v.js +0 -280
- package/dist/index-c41n76fv.js +0 -240
- package/dist/index-cb4ppjdt.js +0 -255
- package/dist/index-cfb2edt6.js +0 -240
- package/dist/index-cmfa38hh.js +0 -308
- package/dist/index-datjz8q1.js +0 -257
- package/dist/index-eadf4wvn.js +0 -240
- package/dist/index-em5k0m3z.js +0 -345
- package/dist/index-gh8r333a.js +0 -110
- package/dist/index-gkx6k2tr.js +0 -261
- package/dist/index-h5cabfks.js +0 -155
- package/dist/index-hcrpwyy3.js +0 -261
- package/dist/index-hk7fwwa8.js +0 -257
- package/dist/index-jb8cw7f8.js +0 -136
- package/dist/index-kbyw4th1.js +0 -347
- package/dist/index-kgj5gqnm.js +0 -345
- package/dist/index-mdf6xp1z.js +0 -255
- package/dist/index-mrhv8kvc.js +0 -280
- package/dist/index-mt4743dd.js +0 -161
- package/dist/index-qnwsg97q.js +0 -240
- package/dist/index-qwdy6x44.js +0 -261
- package/dist/index-rmj77261.js +0 -157
- package/dist/index-sbbw1a61.js +0 -349
- package/dist/index-svy5bcpn.js +0 -345
- package/dist/index-tvmy7tm9.js +0 -261
- package/dist/index-tzz4vzkj.js +0 -312
- package/dist/index-vz80zmhe.js +0 -110
- package/dist/index-wed2fk67.js +0 -240
- package/dist/index-wksgzz8e.js +0 -280
- package/dist/index-wn2m4wma.js +0 -240
- package/dist/index-xha05vjc.js +0 -257
- package/dist/index-yc6eh8p8.js +0 -136
- package/dist/index-ycjxx9ft.js +0 -240
- package/dist/index-z0gzd0fc.js +0 -110
- package/dist/index-z8cwtf8j.js +0 -240
- package/dist/index-zy5mtt00.js +0 -128
package/dist/index-0pkak453.js
DELETED
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
// @bun
|
|
2
|
-
var Z7=Object.create;var{getPrototypeOf:V7,defineProperty:o5,getOwnPropertyNames:$7}=Object;var J7=Object.prototype.hasOwnProperty;var z7=(Q,X,Z)=>{Z=Q!=null?Z7(V7(Q)):{};let V=X||!Q||!Q.__esModule?o5(Z,"default",{value:Q,enumerable:!0}):Z;for(let $ of $7(Q))if(!J7.call(V,$))o5(V,$,{get:()=>Q[$],enumerable:!0});return V};var K7=import.meta.require;var aQ={enabled:!0,ttl:"1h",cacheSystemPrompt:!0,cacheTools:!0,minTokensForCache:1024},i9={"claude-opus-4-6":{input:15,output:75,cache_write:18.75,cache_read:1.5},"claude-sonnet-4-6":{input:3,output:15,cache_write:3.75,cache_read:0.3},"claude-haiku-4-5":{input:0.8,output:4,cache_write:1,cache_read:0.08}};var Y7={maxRetries:3,baseDelayMs:1000,maxDelayMs:30000,jitterFactor:0.2,retryableStatusCodes:[429,500,502,503,504,529],onRetry:void 0};function q7(Q,X,Z,V){let $=X*Math.pow(2,Q),J=$*V*(Math.random()*2-1);return Math.min($+J,Z)}function H7(Q,X){if(Q.message.includes("429")||Q.message.includes("rate limit"))return!0;if(Q.message.includes("500")||Q.message.includes("502")||Q.message.includes("503")||Q.message.includes("504"))return!0;if(Q.message.includes("ECONNREFUSED")||Q.message.includes("ENOTFOUND")||Q.message.includes("ETIMEDOUT")||Q.message.includes("network")||Q.message.includes("fetch failed"))return!0;for(let Z of X)if(Q.message.includes(String(Z)))return!0;return!1}function W7(Q){return new Promise((X)=>setTimeout(X,Q))}async function a5(Q,X={}){let Z={...Y7,...X},V=null;for(let $=0;$<=Z.maxRetries;$++)try{return await Q()}catch(J){if(V=J instanceof Error?J:Error(String(J)),$<Z.maxRetries&&H7(V,Z.retryableStatusCodes)){let z=q7($,Z.baseDelayMs,Z.maxDelayMs,Z.jitterFactor);if(Z.onRetry)Z.onRetry($+1,V,z);else console.warn(`\x1B[33mRetry ${$+1}/${Z.maxRetries} after ${z}ms: ${V.message}\x1B[0m`);await W7(z)}else throw V}throw V||Error("Max retries exceeded")}var r5={"claude-opus-4-6":{input:15,output:75,cache_write:18.75,cache_read:1.5},"claude-sonnet-4-6":{input:3,output:15,cache_write:3.75,cache_read:0.3},"claude-haiku-4-5":{input:0.8,output:4,cache_write:1,cache_read:0.08},"claude-3-5-sonnet":{input:3,output:15,cache_write:3.75,cache_read:0.3},"claude-3-5-haiku":{input:0.8,output:4,cache_write:1,cache_read:0.08},"claude-3-opus":{input:15,output:75,cache_write:18.75,cache_read:1.5}};function j7(Q,X){let Z=r5[Q]??r5["claude-sonnet-4-6"],V=X.input_tokens-(X.cache_read_input_tokens??0),$=X.cache_read_input_tokens??0,J=X.cache_creation_input_tokens??0,z=X.output_tokens,K=V/1e6*Z.input,Y=$/1e6*Z.cache_read,q=J/1e6*Z.cache_write,W=z/1e6*Z.output,H=K+Y+q+W,_=($+J)/1e6*(Z.input-Z.cache_read);return{costUSD:H,estimatedSavingsUSD:_}}function _7(Q,X){if(!Q||!X.enabled||!X.cacheSystemPrompt)return typeof Q==="string"?Q:void 0;if(Array.isArray(Q)){let Z=[...Q];if(Z.length>0){let V=Z[Z.length-1];if(V&&V.type==="text")Z[Z.length-1]={type:"text",text:V.text,cache_control:{type:"ephemeral",ttl:X.ttl}}}return Z}return[{type:"text",text:Q,cache_control:{type:"ephemeral",ttl:X.ttl}}]}function G7(Q,X){if(!X.enabled)return Q;let Z=[];for(let V=0;V<Q.length;V++){let $=Q[V],J=[];for(let z=0;z<$.content.length;z++){let K=$.content[z],Y=z===$.content.length-1,q=V===Q.length-1;if(K.type==="text"&&K.text.length>=X.minTokensForCache*4&&!K.cache_control&&(Y||q))J.push({...K,cache_control:{type:"ephemeral",ttl:X.ttl}});else J.push(K)}Z.push({...$,content:J})}if(Z.length>0&&X.enabled){let V=Z[Z.length-1],$=V.content[V.content.length-1];if($&&!("cache_control"in $))V.content[V.content.length-1]={...$,cache_control:{type:"ephemeral",ttl:X.ttl}}}return Z}function w7(Q){let X=Q.cache_read_input_tokens??0,Z=Q.cache_creation_input_tokens??0,V=X+Z,$=X>0?1:0,J=Z>0?1:0,z=$+J;return{cacheHits:$,cacheMisses:J,totalCacheReadTokens:X,totalCacheWriteTokens:Z,cacheHitRate:z>0?$/z:0,estimatedSavingsUSD:0}}async function s5(Q,X){let{apiKey:Z,model:V="claude-sonnet-4-6",maxTokens:$=4096,tools:J,systemPrompt:z,cacheConfig:K=aQ,thinking:Y,onToken:q,onThinking:W,onToolUse:H,signal:j}=X,_=Date.now(),G=0,w=!0,A=G7(Q,K),U=_7(z,K),B={model:V,max_tokens:$,messages:A.map((C)=>({role:C.role,content:C.content})),stream:!0};if(U)B.system=U;if(J&&J.length>0)B.tools=J;let v=`${process.env.ANTHROPIC_BASE_URL||"https://api.anthropic.com"}/v1/messages`,L={"Content-Type":"application/json","x-api-key":Z,"anthropic-version":"2023-06-01","anthropic-beta":"max-tokens-3-5-sonnet-2024-07-15"};if(Y&&Y.type!=="disabled"){if(Y.type==="enabled")B.thinking={type:"enabled",budget_tokens:Y.budget_tokens};else if(Y.type==="adaptive")B.thinking={type:"adaptive"};L["anthropic-beta"]="extended-thinking-2025-01-24"}let O={maxRetries:3,baseDelayMs:1000,maxDelayMs:30000,retryableStatusCodes:[429,500,502,503,504,529],onRetry:(C,ZQ,n)=>{console.log(`\x1B[33mAPI retry ${C}/3 after ${n}ms: ${ZQ.message}\x1B[0m`)}},I=await a5(async()=>{let C=await fetch(v,{method:"POST",headers:L,body:JSON.stringify(B),signal:j});if(!C.ok&&O.retryableStatusCodes?.includes(C.status)){let ZQ=await C.text();throw Error(`API error: ${C.status} - ${ZQ}`)}return C},O);if(!I.ok){let C=await I.text();throw Error(`API error: ${I.status} - ${C}`)}if(!I.body)throw Error("No response body");let m=I.body.getReader(),h=new TextDecoder,g=null,jQ=[],YQ={input_tokens:0,output_tokens:0},s=null,t=null,D=null,FQ="",OQ="";try{let C="";while(!0){let{done:ZQ,value:n}=await m.read();if(ZQ)break;C+=h.decode(n,{stream:!0});let MQ=C.split(`
|
|
3
|
-
`);C=MQ.pop()||"";for(let RQ of MQ){if(!RQ.startsWith("data: "))continue;let nQ=RQ.slice(6);if(!nQ)continue;try{let qQ=JSON.parse(nQ);switch(qQ.type){case"message_start":{let R=qQ.message;g=R,YQ=R.usage;break}case"content_block_start":{let R=qQ.content_block;if(R.type==="text")s={type:"text",text:""};else if(R.type==="thinking")t={type:"thinking",thinking:""};else if(R.type==="tool_use")D={type:"tool_use",id:R.id,name:R.name,input:{}},FQ="";break}case"content_block_delta":{let R=qQ.delta;if(R.type==="text_delta"&&s){let VQ=R.text;if(s.text+=VQ,q?.(VQ),w)G=Date.now()-_,w=!1}else if(R.type==="thinking_delta"&&t){let VQ=R.thinking;t.thinking+=VQ,W?.(VQ)}else if(R.type==="input_json_delta"&&D)FQ+=R.partial_json;break}case"content_block_stop":if(s)jQ.push(s),s=null;else if(t)jQ.push(t),t=null;else if(D){try{D.input=JSON.parse(FQ)}catch{D.input={}}jQ.push(D),H?.({id:D.id,name:D.name,input:D.input}),D=null}break;case"message_delta":{let R=qQ;if(R.usage)YQ.output_tokens=R.usage.output_tokens;if(g&&R.delta?.stop_reason)g.stop_reason=R.delta.stop_reason;break}case"message_stop":break}}catch{}}}}finally{m.releaseLock()}if(!g)throw Error("No message received from API");g.content=jQ;let{costUSD:w5,estimatedSavingsUSD:CQ}=j7(V,YQ),pQ=w7(YQ);pQ.estimatedSavingsUSD=CQ;let iQ=Date.now()-_;return{message:g,usage:YQ,cacheMetrics:pQ,costUSD:w5,durationMs:iQ,ttftMs:G||iQ}}import*as t5 from"readline";var U7={Read:"low",Glob:"low",Grep:"low",Task:"low",Write:"medium",Edit:"medium",NotebookEdit:"medium",Bash:"high"},A7=[/\brm\s+-rf\b/,/\brm\s+-r\b/,/\brm\s+[^-]/,/\bgit\s+push\s+--force\b/,/\bgit\s+reset\s+--hard\b/,/\bgit\s+clean\s+-fd\b/,/\bdrop\b/i,/\bdelete\b/i,/\btruncate\b/i,/\bformat\b/i,/\bdd\s+if=/,/\bshred\b/,/\b:\(\)\{\s*:\|:\s*&\s*\};\s*:\b/];function B7(Q,X){let Z=U7[Q]??"medium";if(Q==="Bash"){let V=String(X.command??"");for(let $ of A7)if($.test(V))return"critical";if(/\bsudo\b/.test(V)||/\bchmod\b/.test(V))Z="high"}if(Q==="Write"||Q==="Edit"){let V=String(X.file_path??X.path??"");if(/\.(env|pem|key|secret|credentials)/.test(V))Z="high";if(/\/\.ssh\//.test(V)||/\/\.gnupg\//.test(V))Z="critical"}return Z}function L7(Q,X){switch(Q){case"Read":return`Read file: ${X.file_path??"unknown"}`;case"Write":return`Write file: ${X.file_path??"unknown"} (${String(X.content??"").length} chars)`;case"Edit":return`Edit file: ${X.file_path??"unknown"}`;case"Bash":return`Execute: ${String(X.command??"").slice(0,100)}${String(X.command??"").length>100?"...":""}`;case"Glob":return`Find files: ${X.pattern??"*"}`;case"Grep":return`Search: "${X.pattern??""}" in ${X.path??"."}`;case"Task":return`Spawn agent: ${X.subagent_type??"unknown"}`;default:return`Use tool: ${Q}`}}class A5{cache={};cacheTimeout=300000;promptCallback;mode;constructor(Q="default",X){this.mode=Q,this.promptCallback=X??this.defaultPrompt.bind(this)}async checkPermission(Q,X){if(this.mode==="bypassPermissions")return{decision:"allow"};if(this.mode==="dontAsk")return{decision:"deny",reason:"Permission mode is dontAsk"};if(this.mode==="acceptEdits"){if(["Read","Write","Edit","Glob","Grep"].includes(Q))return{decision:"allow"}}if(this.mode==="plan"){if(["Read","Glob","Grep","Task"].includes(Q))return{decision:"allow"};return{decision:"deny",reason:"Plan mode - write operations disabled"}}let Z=this.getCacheKey(Q,X),V=this.cache[Z];if(V&&Date.now()-V.timestamp<this.cacheTimeout){if(V.decision==="allowAlways")return{decision:"allow",reason:"Previously approved (always)"};if(V.decision==="denyAlways")return{decision:"deny",reason:"Previously denied (always)"}}let $=B7(Q,X),J=L7(Q,X),z={toolName:Q,toolInput:X,riskLevel:$,description:J,file:X.file_path??X.path,command:Q==="Bash"?X.command:void 0};if(this.mode==="interactive"||this.mode==="default"){let K=await this.promptCallback(z);if(K.decision==="allowAlways"||K.decision==="denyAlways")this.cache[Z]={decision:K.decision,timestamp:Date.now()};return K}return{decision:"allow"}}getCacheKey(Q,X){if(["Read","Write","Edit"].includes(Q))return`${Q}:${X.file_path??X.path??"unknown"}`;if(Q==="Bash"){let Z=String(X.command??"").slice(0,100);return`${Q}:${Z}`}return Q}async defaultPrompt(Q){return new Promise((X)=>{let Z=t5.createInterface({input:process.stdin,output:process.stdout}),$={low:"\x1B[32m",medium:"\x1B[33m",high:"\x1B[31m",critical:"\x1B[35m"}[Q.riskLevel]??"\x1B[0m",J="\x1B[0m";if(console.log(""),console.log("\x1B[36m\u2501\u2501\u2501 Permission Required \u2501\u2501\u2501\x1B[0m"),console.log(`Tool: \x1B[1m${Q.toolName}\x1B[0m`),console.log(`Risk: ${$}${Q.riskLevel.toUpperCase()}\x1B[0m`),console.log(`Action: ${Q.description}`),Q.file)console.log(`File: ${Q.file}`);if(Q.command)console.log(`Command: ${Q.command.slice(0,200)}${Q.command.length>200?"...":""}`);console.log("");let z="[y]es / [n]o / [a]lways / [d]eny always";Z.question(`Allow? ${z}: `,(K)=>{switch(Z.close(),K.trim().toLowerCase()){case"y":case"yes":X({decision:"allow"});break;case"a":case"always":X({decision:"allowAlways"});break;case"d":case"deny":case"deny always":X({decision:"denyAlways"});break;case"n":case"no":default:X({decision:"deny"});break}})})}clearCache(){this.cache={}}setMode(Q){this.mode=Q,this.clearCache()}}var B5={readOnly:["Read","Glob","Grep","Task"],fileEdit:["Write","Edit","NotebookEdit"],system:["Bash"],network:[]};function e9(Q){return B5.readOnly.includes(Q)}function Q0(Q){return B5.fileEdit.includes(Q)}function X0(Q){return B5.system.includes(Q)}var v5={tokenWarningThreshold:0.8,costUpdateInterval:5,toolSummaryInterval:3,envInfoOnStart:!0},L5={WARNING:0.8,CRITICAL:0.9,EMERGENCY:0.95};function v7(Q){let{current:X,max:Z,threshold:V=L5.WARNING}=Q;if(Z<=0)return"";let $=X/Z;if($<V)return"";let J=Z-X,z=Math.round($*100),K,Y;if($>=L5.EMERGENCY)K="emergency",Y="\uD83D\uDEA8";else if($>=L5.CRITICAL)K="critical",Y="\u26A0\uFE0F";else K="warning",Y="\u26A1";let q=[`${Y} Token Usage ${K.toUpperCase()}`,"",`Current: ${X.toLocaleString()} / ${Z.toLocaleString()} tokens (${z}%)`,`Remaining: ${J.toLocaleString()} tokens`];if(K==="emergency")q.push(""),q.push("Consider summarizing or compacting the conversation to continue.");else if(K==="critical")q.push(""),q.push("Approaching token limit. Consider wrapping up soon.");return q.join(`
|
|
4
|
-
`)}function F7(Q){let{cost:X,previousCost:Z=0,currency:V="USD"}=Q,$=O7(V),J=e5(X,$),z=X-Z,K=e5(Math.abs(z),$),Y=["\uD83D\uDCB0 Cost Update","",`Total: ${J} ${V}`];if(z!==0){let q=z>0?"+":"-";Y.push(`This turn: ${q}${K} ${V}`)}return Y.join(`
|
|
5
|
-
`)}function e5(Q,X){if(Q<0.01)return`${X}${Q.toFixed(4)}`;else if(Q<1)return`${X}${Q.toFixed(3)}`;return`${X}${Q.toFixed(2)}`}function O7(Q){return{USD:"$",EUR:"\u20AC",GBP:"\xA3",JPY:"\xA5"}[Q]||Q}function C7(Q){let{tools:X,maxDisplay:Z=10}=Q;if(X.length===0)return"No tools used this session.";let V=new Map;for(let K of X){let Y=V.get(K.name)||0;V.set(K.name,Y+1)}let $=[...V.entries()].sort((K,Y)=>Y[1]-K[1]),J=[`\uD83D\uDD27 Tool Usage Summary (${X.length} total calls)`,""],z=$.slice(0,Z);for(let[K,Y]of z)J.push(` \u2022 ${K}: ${Y} call${Y===1?"":"s"}`);if($.length>Z){let K=$.length-Z;J.push(` ... and ${K} more tool${K===1?"":"s"}`)}return J.join(`
|
|
6
|
-
`)}function M7(Q){let{workingDirectory:X,gitStatus:Z,platform:V=process.platform,shell:$=process.env.SHELL||"unknown"}=Q,J=["\uD83D\uDCCD Environment Information","",`Working Directory: ${X}`,`Platform: ${V}`,`Shell: ${$}`];if(Z){if(J.push(""),J.push("Git Status:"),J.push(` Branch: ${Z.branch}`),Z.ahead>0||Z.behind>0)J.push(` Ahead: ${Z.ahead}, Behind: ${Z.behind}`);let z=Z.staged.length+Z.unstaged.length+Z.untracked.length+Z.conflicted.length;if(z>0){if(J.push(` Changes: ${z} file${z===1?"":"s"}`),Z.staged.length>0)J.push(` Staged: ${Z.staged.length}`);if(Z.unstaged.length>0)J.push(` Unstaged: ${Z.unstaged.length}`);if(Z.untracked.length>0)J.push(` Untracked: ${Z.untracked.length}`);if(Z.conflicted.length>0)J.push(` Conflicted: ${Z.conflicted.length}`)}else J.push(" Working tree clean")}return J.join(`
|
|
7
|
-
`)}function Q6(Q){let{usage:X,maxTokens:Z,totalCost:V,previousCost:$,toolsUsed:J,workingDirectory:z,gitStatus:K,turnNumber:Y,config:q}=Q,W={...v5,...q},H=[],j=X.input_tokens+X.output_tokens,_=v7({current:j,max:Z,threshold:W.tokenWarningThreshold});if(_)H.push(_);if(Y%W.costUpdateInterval===0){let G=F7({cost:V,previousCost:$});H.push(G)}if(Y%W.toolSummaryInterval===0&&J.length>0){let G=C7({tools:J});H.push(G)}if(Y===1&&W.envInfoOnStart){let G=M7({workingDirectory:z,gitStatus:K});H.push(G)}if(H.length===0)return"";return["---","System Reminders:","",...H,"---"].join(`
|
|
8
|
-
`)}function DQ(Q){if(!Q||Q.length===0)return 0;return Math.ceil(Q.length/4)}function X6(Q){switch(Q.type){case"text":return DQ(Q.text);case"image":return 100;case"tool_use":let X=JSON.stringify(Q.input);return DQ(Q.name)+DQ(X)+10;case"tool_result":if(typeof Q.content==="string")return DQ(Q.content)+10;return Q.content.reduce((Z,V)=>Z+X6(V),0)+10;case"thinking":return DQ(Q.thinking);default:return 0}}function R7(Q){return 4+Q.content.reduce((V,$)=>V+X6($),0)}function F5(Q){if(!Q||Q.length===0)return 0;return Q.reduce((X,Z)=>X+R7(Z),0)}function P7(Q){let X=[];for(let Z of Q.content)switch(Z.type){case"text":X.push(Z.text);break;case"tool_use":X.push(`[Tool: ${Z.name}(${JSON.stringify(Z.input)})]`);break;case"tool_result":let V=typeof Z.content==="string"?Z.content:Z.content.map(($)=>$.type==="text"?$.text:"[content]").join("");X.push(`[Result: ${V.slice(0,500)}${V.length>500?"...":""}]`);break;case"thinking":X.push(`[Thinking: ${Z.thinking.slice(0,200)}...]`);break}return X.join(`
|
|
9
|
-
`)}function D7(Q){let X=new Map;for(let Z of Q)for(let V of Z.content)if(V.type==="tool_use")X.set(V.id,{use:V});for(let Z of Q)for(let V of Z.content)if(V.type==="tool_result"){let $=X.get(V.tool_use_id);if($)$.result=V}return X}async function x7(Q){if(!Q||Q.length===0)return"";let X=[];X.push(`[Context Summary: ${Q.length} messages compacted]
|
|
10
|
-
`);let Z=[];for(let $=0;$<Q.length;$++){let J=Q[$];if(!J)continue;let z=J.role.toUpperCase(),K=P7(J);for(let q of J.content)if(q.type==="tool_use")Z.push(`${q.name}`);let Y=K.length>300?`${K.slice(0,300)}...`:K;X.push(`${z}: ${Y}
|
|
11
|
-
`)}if(Z.length>0){let $=Z.reduce((z,K)=>{return z[K]=(z[K]||0)+1,z},{}),J=Object.entries($).map(([z,K])=>`${z}(${K})`).join(", ");X.push(`
|
|
12
|
-
Tools used: ${J}
|
|
13
|
-
`)}let V=X.join("");if(V.length>8000)V=V.slice(0,8000)+`
|
|
14
|
-
...[truncated]`;return V}async function O5(Q,X,Z={}){let{keepFirst:V=1,keepLast:$=5,preserveToolPairs:J=!0}=Z,z=F5(Q);if(z<=X)return{messages:Q,messagesRemoved:0,tokensBefore:z,tokensAfter:z,didCompact:!1};if(Q.length<=V+$)return{messages:Q,messagesRemoved:0,tokensBefore:z,tokensAfter:z,didCompact:!1};let K=Q.slice(0,V),Y=Q.slice(V,-$),q=Q.slice(-$),H={role:"user",content:[{type:"text",text:`[Previous context has been compacted for continuity]
|
|
15
|
-
|
|
16
|
-
${await x7(Y)}`}]},j=[];if(J&&Y.length>0){let A=D7(Y),U=Array.from(A.values()).slice(-3).filter((B)=>B.result&&!B.result.is_error);for(let B of U)if(j.push(B.use),B.result)j.push(B.result)}let _=[...K,H];if(j.length>0)_.push({role:"assistant",content:j.filter((A)=>A.type==="tool_use")}),_.push({role:"user",content:j.filter((A)=>A.type==="tool_result")});_.push(...q);let G=F5(_),w=Q.length-_.length;return console.log(`Context compaction: ${Q.length} -> ${_.length} messages, ${z} -> ${G} tokens`),{messages:_,messagesRemoved:w,tokensBefore:z,tokensAfter:G,didCompact:!0}}function Z6(Q,X,Z=0.9){if(Q.length<8)return!1;let V=F5(Q),$=Math.floor(X*Z);return V>=$}function C5(Q){if(!Q.didCompact)return{reductionPercent:0,tokensSaved:0};let X=Q.tokensBefore-Q.tokensAfter,Z=X/Q.tokensBefore*100;return{reductionPercent:Math.round(Z*100)/100,tokensSaved:X}}async function G0(Q,X){let{apiKey:Z,model:V="claude-sonnet-4-6",maxTokens:$=4096,systemPrompt:J,tools:z,permissionMode:K,workingDirectory:Y,gitStatus:q=null,reminderConfig:W,cacheConfig:H=aQ,thinking:j,onText:_,onThinking:G,onToolUse:w,onToolResult:A,onMetrics:U,onReminder:B,onPermissionRequest:F,signal:v}=X,L=new A5(K,F),O=[...Q],I=[],m=[],h=0,g=0,jQ=0,YQ=0,s=0,t=0,D={cacheHits:0,cacheMisses:0,totalCacheReadTokens:0,totalCacheWriteTokens:0,cacheHitRate:0,estimatedSavingsUSD:0},FQ={...v5,...W},OQ=!0;while(OQ){if(v?.aborted)break;jQ++;let w5=I[I.length-1],CQ=Q6({usage:w5?.usage??{input_tokens:0,output_tokens:0},maxTokens:$,totalCost:h,previousCost:YQ,toolsUsed:m,workingDirectory:Y,gitStatus:q,turnNumber:jQ,config:FQ});if(CQ)B?.(CQ);if(Z6(O,$)){let P=await O5(O,$,{keepFirst:0,keepLast:3,preserveToolPairs:!0});if(P.didCompact&&P.tokensAfter<P.tokensBefore){O.length=0,O.push(...P.messages),s++;let PQ=P.tokensBefore-P.tokensAfter;t+=PQ;let M=C5(P);console.log(`Context compacted: ${M.reductionPercent}% reduction, ${M.tokensSaved} tokens saved`)}}let pQ=N7(O,J,CQ),iQ=await s5(pQ,{apiKey:Z,model:V,maxTokens:$,systemPrompt:J,cacheConfig:H,thinking:j,tools:z.map((P)=>({name:P.name,description:P.description,input_schema:P.input_schema})),onToken:_,onThinking:G,onToolUse:w,signal:v}),{message:C,usage:ZQ,cacheMetrics:n,costUSD:MQ,durationMs:RQ,ttftMs:nQ}=iQ,qQ={model:V,messageCount:O.length,messageTokens:ZQ.input_tokens+ZQ.output_tokens,usage:ZQ,cacheMetrics:n,durationMs:RQ,ttftMs:nQ,costUSD:MQ,stopReason:C.stop_reason,requestId:C.id};if(I.push(qQ),YQ=h,h+=MQ,g+=RQ,n)D.cacheHits+=n.cacheHits,D.cacheMisses+=n.cacheMisses,D.totalCacheReadTokens+=n.totalCacheReadTokens,D.totalCacheWriteTokens+=n.totalCacheWriteTokens,D.estimatedSavingsUSD+=n.estimatedSavingsUSD;let R=D.cacheHits+D.cacheMisses;if(D.cacheHitRate=R>0?D.cacheHits/R:0,U?.(qQ),O.push({role:"assistant",content:C.content}),C.stop_reason==="end_turn"||C.stop_reason==="stop_sequence"){OQ=!1;break}if(C.stop_reason==="max_tokens"){let P=await O5(O,$,{keepFirst:0,keepLast:3,preserveToolPairs:!0});if(P.didCompact&&P.tokensAfter<P.tokensBefore){O.length=0,O.push(...P.messages),s++;let PQ=P.tokensBefore-P.tokensAfter;t+=PQ;let M=C5(P);console.log(`Context compacted: ${M.reductionPercent}% reduction, ${M.tokensSaved} tokens saved`);continue}else{OQ=!1;break}}let VQ=C.content.filter((P)=>P.type==="tool_use");if(m.push(...VQ),VQ.length===0){OQ=!1;break}let n5=[];if(v?.aborted);else{let P=VQ.map(async(M)=>{let U5=z.find(($Q)=>$Q.name===M.name);if(!U5)return{toolUseId:M.id,result:{type:"tool_result",tool_use_id:M.id,content:`Error: Unknown tool "${M.name}"`,is_error:!0},toolResult:null};let oQ=await L.checkPermission(U5.name,M.input);if(oQ.decision==="deny"||oQ.decision==="denyAlways")return{toolUseId:M.id,result:{type:"tool_result",tool_use_id:M.id,content:`Permission denied for tool "${M.name}"${oQ.reason?`: ${oQ.reason}`:""}`,is_error:!0},toolResult:null};try{let $Q=await U5.handler(M.input,{workingDirectory:Y,permissionMode:K,abortSignal:v});return{toolUseId:M.id,result:{type:"tool_result",tool_use_id:M.id,content:$Q.content,is_error:$Q.is_error},toolResult:{id:M.id,result:$Q}}}catch($Q){let X7=$Q instanceof Error?$Q.message:String($Q);return{toolUseId:M.id,result:{type:"tool_result",tool_use_id:M.id,content:`Error: ${X7}`,is_error:!0},toolResult:null}}}),PQ=await Promise.all(P);for(let M of PQ)if(n5.push(M.result),M.toolResult)A?.(M.toolResult)}O.push({role:"user",content:n5})}return{messages:O,metrics:I,totalCost:h,totalDuration:g,totalCacheMetrics:D,compactionCount:s,totalTokensCompacted:t}}function N7(Q,X,Z){if(Z&&Q.length>0){let V=[...Q];for(let $=V.length-1;$>=0;$--){let J=V[$];if(J&&J.role==="user"){let z={role:"user",content:Array.isArray(J.content)?I7(J.content,Z):[{type:"text",text:`${String(J.content)}
|
|
17
|
-
|
|
18
|
-
${Z}`}]};V[$]=z;break}}return V}return Q}function I7(Q,X){if(Q.length>0){let V=Q[Q.length-1];if(V&&V.type==="text"){let $={type:"text",text:`${V.text}
|
|
19
|
-
|
|
20
|
-
${X}`};return[...Q.slice(0,-1),$]}}let Z={type:"text",text:`
|
|
21
|
-
|
|
22
|
-
${X}`};return[...Q,Z]}function M5(Q){if(Q<0.01)return`$${Q.toFixed(4)}`;return`$${Q.toFixed(2)}`}function w0(Q){let X=M5(Q.costUSD),Z=`${Q.usage.input_tokens.toLocaleString()} input, ${Q.usage.output_tokens.toLocaleString()} output`;if(Q.usage.cache_read_input_tokens||Q.usage.cache_creation_input_tokens){let V=Q.usage.cache_read_input_tokens?.toLocaleString()??"0",$=Q.usage.cache_creation_input_tokens?.toLocaleString()??"0";return`Cost: ${X} | Tokens: ${Z} | Cache: ${V} read, ${$} write`}return`Cost: ${X} | Tokens: ${Z}`}function U0(Q){let X=M5(Q.costUSD),Z=Q.usage.input_tokens+Q.usage.output_tokens;return`Cost: ${X} | Tokens: ${Z.toLocaleString()}`}function A0(Q){let X=M5(Q.estimatedSavingsUSD);return`Cache: ${(Q.cacheHitRate*100).toFixed(1)}% hit rate | ${Q.totalCacheReadTokens.toLocaleString()} read | ${Q.totalCacheWriteTokens.toLocaleString()} written | Saved: ${X}`}import{homedir as k7}from"os";import{join as JQ}from"path";class S7{sessionsDir;currentSessionId=null;currentSessionFile=null;writeQueue=Promise.resolve();constructor(Q){this.sessionsDir=Q??JQ(k7(),".claude","sessions")}async init(){try{await Bun.write(JQ(this.sessionsDir,".gitkeep"),"")}catch{}}generateSessionId(){let Q=Date.now().toString(36),X=Math.random().toString(36).slice(2,8);return`${Q}-${X}`}async createSession(Q){await this.init();let X=this.generateSessionId();this.currentSessionId=X,this.currentSessionFile=JQ(this.sessionsDir,`${X}.jsonl`);let Z={id:X,created:Date.now(),updated:Date.now(),model:Q.model,workingDirectory:Q.workingDirectory,agentName:Q.agentName,agentColor:Q.agentColor,teamName:Q.teamName};await this.appendEntry(Z);let V={type:"context",timestamp:Date.now(),workingDirectory:Q.workingDirectory};return await this.appendEntry(V),X}async resumeSession(Q){let X=JQ(this.sessionsDir,`${Q}.jsonl`);try{let Z=await Bun.file(X).text();if(!Z)return null;let V=Z.trim().split(`
|
|
23
|
-
`),$=[];for(let J of V)try{$.push(JSON.parse(J))}catch{}return this.parseSessionEntries($)}catch{return null}}parseSessionEntries(Q){let X=null,Z=[],V=[],$=[],J=null;for(let z of Q){if(!("type"in z)&&"id"in z&&"created"in z){X=z;continue}if("type"in z){let K=z;switch(K.type){case"message":Z.push(K.data);break;case"tool_use":V.push(K);break;case"metrics":$.push(K.data);break;case"context":J=K;break}}}if(!X)X={id:"unknown",created:Date.now(),updated:Date.now(),model:"claude-sonnet-4-6",workingDirectory:process.cwd()};return{metadata:X,messages:Z,tools:V,metrics:$,context:J}}async appendEntry(Q){if(!this.currentSessionFile)return;this.writeQueue=this.writeQueue.then(async()=>{let X=JSON.stringify(Q)+`
|
|
24
|
-
`,Z=Bun.file(this.currentSessionFile),V=await Z.exists()?await Z.text():"";await Bun.write(this.currentSessionFile,V+X)}),await this.writeQueue}async saveMessage(Q){let X={type:"message",timestamp:Date.now(),data:Q};await this.appendEntry(X),await this.updateTimestamp()}async saveToolUse(Q,X,Z,V,$){let J={type:"tool_use",timestamp:Date.now(),toolId:Q,toolName:X,input:Z,result:V,isError:$};await this.appendEntry(J)}async saveMetrics(Q){let X={type:"metrics",timestamp:Date.now(),data:Q};await this.appendEntry(X)}async updateTimestamp(){if(!this.currentSessionFile||!this.currentSessionId)return}async listSessions(Q=20){await this.init();let X=Bun.file(this.sessionsDir),Z=[];try{let $=[...new Bun.Glob("*.jsonl").scanSync(this.sessionsDir)],J=await Promise.all($.map(async(z)=>{let K=JQ(this.sessionsDir,z),Y=await Bun.file(K).stat();return{file:z,fullPath:K,mtime:Y?.mtime??new Date(0)}}));J.sort((z,K)=>K.mtime.getTime()-z.mtime.getTime());for(let{file:z,fullPath:K}of J.slice(0,Q)){let Y=z.replace(".jsonl",""),q=await this.getSessionSummary(Y,K);if(q)Z.push(q)}}catch{}return Z}async getSessionSummary(Q,X){let Z=X??JQ(this.sessionsDir,`${Q}.jsonl`);try{let V=await Bun.file(Z).text();if(!V)return null;let $=V.trim().split(`
|
|
25
|
-
`),J=null,z=0,K=0,Y=0,q=0,W;for(let H of $)try{let j=JSON.parse(H);if(j.id&&j.created)J=j;else if(j.type==="message"){z++;let _=j.data;if(!W&&_.role==="user"){let G=_.content.find((w)=>w.type==="text");if(G&&"text"in G){if(W=G.text.slice(0,100),G.text.length>100)W+="..."}}}else if(j.type==="metrics")K+=j.data.costUSD,Y+=j.data.usage.input_tokens,q+=j.data.usage.output_tokens}catch{}if(!J)return null;return{id:Q,created:J.created,updated:J.updated,model:J.model,messageCount:z,totalCost:K,totalTokens:{input:Y,output:q},firstMessage:W,workingDirectory:J.workingDirectory}}catch{return null}}getCurrentSessionId(){return this.currentSessionId}async exportSession(Q,X,Z){let V=await this.resumeSession(Q);if(!V)throw Error(`Session not found: ${Q}`);let $,J;switch(X){case"jsonl":{let K=JQ(this.sessionsDir,`${Q}.jsonl`);$=await Bun.file(K).text(),J="jsonl";break}case"json":{$=JSON.stringify(V,null,2),J="json";break}case"markdown":{$=this.sessionToMarkdown(V),J="md";break}default:throw Error(`Unsupported format: ${X}`)}let z=Z??JQ(process.cwd(),`session-${Q}.${J}`);return await Bun.write(z,$),z}sessionToMarkdown(Q){let X=[];X.push(`# Session: ${Q.metadata.id}`),X.push(""),X.push(`**Created:** ${new Date(Q.metadata.created).toISOString()}`),X.push(`**Model:** ${Q.metadata.model}`),X.push(`**Working Directory:** ${Q.metadata.workingDirectory}`),X.push(""),X.push("## Conversation"),X.push("");for(let Z of Q.messages){let V=Z.role==="user"?"**User**":"**Claude**";X.push(`### ${V}`),X.push("");for(let $ of Z.content)if($.type==="text")X.push($.text),X.push("");else if($.type==="tool_use"){let J=$;X.push(`\`\`\`tool:${J.name}`),X.push(JSON.stringify(J.input,null,2)),X.push("```"),X.push("")}else if($.type==="tool_result"){let J=$;X.push(`**Result**${J.is_error?" (error)":""}:`),X.push("```"),X.push(typeof J.content==="string"?J.content:JSON.stringify(J.content,null,2)),X.push("```"),X.push("")}}if(Q.metrics.length>0){X.push("## Metrics"),X.push("");let Z=Q.metrics.reduce((J,z)=>J+z.costUSD,0),V=Q.metrics.reduce((J,z)=>J+z.usage.input_tokens,0),$=Q.metrics.reduce((J,z)=>J+z.usage.output_tokens,0);X.push(`- **Total Cost:** $${Z.toFixed(4)}`),X.push(`- **Total Input Tokens:** ${V.toLocaleString()}`),X.push(`- **Total Output Tokens:** ${$.toLocaleString()}`),X.push(`- **API Calls:** ${Q.metrics.length}`)}return X.join(`
|
|
26
|
-
`)}async deleteSession(Q){let X=JQ(this.sessionsDir,`${Q}.jsonl`);try{if(await Bun.file(X).exists()){let{unlink:V}=await import("fs/promises");return await V(X),!0}return!1}catch{return!1}}}function T7(Q){let X=new Date(Q.created),Z=new Date(Q.updated),V=E7(Z),$=[];$.push(`\x1B[1m${Q.id}\x1B[0m (${V})`),$.push(` Model: ${Q.model} | Messages: ${Q.messageCount}`);let J=Q.totalCost<0.01?`$${Q.totalCost.toFixed(4)}`:`$${Q.totalCost.toFixed(2)}`;if($.push(` Cost: ${J} | Tokens: ${Q.totalTokens.input.toLocaleString()} in, ${Q.totalTokens.output.toLocaleString()} out`),Q.firstMessage)$.push(` Preview: ${Q.firstMessage}`);return $.push(` Directory: ${Q.workingDirectory}`),$.join(`
|
|
27
|
-
`)}function E7(Q){let Z=new Date().getTime()-Q.getTime(),V=Math.floor(Z/60000),$=Math.floor(Z/3600000),J=Math.floor(Z/86400000);if(V<1)return"just now";if(V<60)return`${V}m ago`;if($<24)return`${$}h ago`;if(J<7)return`${J}d ago`;return Q.toLocaleDateString()}function F0(Q){if(Q.length===0){console.log("No sessions found."),console.log(`
|
|
28
|
-
Start a new conversation to create a session.`);return}console.log(`\x1B[1mRecent Sessions (${Q.length})\x1B[0m
|
|
29
|
-
`);for(let X of Q)console.log(T7(X)),console.log("");console.log("To resume a session:"),console.log(" claude-remake --resume <session-id>")}var R5=(Q,X,Z)=>{let V=Q instanceof RegExp?V6(Q,Z):Q,$=X instanceof RegExp?V6(X,Z):X,J=V!==null&&$!=null&&b7(V,$,Z);return J&&{start:J[0],end:J[1],pre:Z.slice(0,J[0]),body:Z.slice(J[0]+V.length,J[1]),post:Z.slice(J[1]+$.length)}},V6=(Q,X)=>{let Z=X.match(Q);return Z?Z[0]:null},b7=(Q,X,Z)=>{let V,$,J,z=void 0,K,Y=Z.indexOf(Q),q=Z.indexOf(X,Y+1),W=Y;if(Y>=0&&q>0){if(Q===X)return[Y,q];V=[],J=Z.length;while(W>=0&&!K){if(W===Y)V.push(W),Y=Z.indexOf(Q,W+1);else if(V.length===1){let H=V.pop();if(H!==void 0)K=[H,q]}else{if($=V.pop(),$!==void 0&&$<J)J=$,z=q;q=Z.indexOf(X,W+1)}W=Y<q&&Y>=0?Y:q}if(V.length&&z!==void 0)K=[J,z]}return K};var $6="\x00SLASH"+Math.random()+"\x00",J6="\x00OPEN"+Math.random()+"\x00",D5="\x00CLOSE"+Math.random()+"\x00",z6="\x00COMMA"+Math.random()+"\x00",K6="\x00PERIOD"+Math.random()+"\x00",y7=new RegExp($6,"g"),f7=new RegExp(J6,"g"),u7=new RegExp(D5,"g"),h7=new RegExp(z6,"g"),g7=new RegExp(K6,"g"),d7=/\\\\/g,m7=/\\{/g,c7=/\\}/g,l7=/\\,/g,p7=/\\./g,i7=1e5;function P5(Q){return!isNaN(Q)?parseInt(Q,10):Q.charCodeAt(0)}function n7(Q){return Q.replace(d7,$6).replace(m7,J6).replace(c7,D5).replace(l7,z6).replace(p7,K6)}function o7(Q){return Q.replace(y7,"\\").replace(f7,"{").replace(u7,"}").replace(h7,",").replace(g7,".")}function Y6(Q){if(!Q)return[""];let X=[],Z=R5("{","}",Q);if(!Z)return Q.split(",");let{pre:V,body:$,post:J}=Z,z=V.split(",");z[z.length-1]+="{"+$+"}";let K=Y6(J);if(J.length)z[z.length-1]+=K.shift(),z.push.apply(z,K);return X.push.apply(X,z),X}function q6(Q,X={}){if(!Q)return[];let{max:Z=i7}=X;if(Q.slice(0,2)==="{}")Q="\\{\\}"+Q.slice(2);return xQ(n7(Q),Z,!0).map(o7)}function a7(Q){return"{"+Q+"}"}function r7(Q){return/^-?0\d/.test(Q)}function s7(Q,X){return Q<=X}function t7(Q,X){return Q>=X}function xQ(Q,X,Z){let V=[],$=R5("{","}",Q);if(!$)return[Q];let J=$.pre,z=$.post.length?xQ($.post,X,!1):[""];if(/\$$/.test($.pre))for(let K=0;K<z.length&&K<X;K++){let Y=J+"{"+$.body+"}"+z[K];V.push(Y)}else{let K=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test($.body),Y=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test($.body),q=K||Y,W=$.body.indexOf(",")>=0;if(!q&&!W){if($.post.match(/,(?!,).*\}/))return Q=$.pre+"{"+$.body+D5+$.post,xQ(Q,X,!0);return[Q]}let H;if(q)H=$.body.split(/\.\./);else if(H=Y6($.body),H.length===1&&H[0]!==void 0){if(H=xQ(H[0],X,!1).map(a7),H.length===1)return z.map((_)=>$.pre+H[0]+_)}let j;if(q&&H[0]!==void 0&&H[1]!==void 0){let _=P5(H[0]),G=P5(H[1]),w=Math.max(H[0].length,H[1].length),A=H.length===3&&H[2]!==void 0?Math.abs(P5(H[2])):1,U=s7;if(G<_)A*=-1,U=t7;let F=H.some(r7);j=[];for(let v=_;U(v,G);v+=A){let L;if(Y){if(L=String.fromCharCode(v),L==="\\")L=""}else if(L=String(v),F){let O=w-L.length;if(O>0){let I=Array(O+1).join("0");if(v<0)L="-"+I+L.slice(1);else L=I+L}}j.push(L)}}else{j=[];for(let _=0;_<H.length;_++)j.push.apply(j,xQ(H[_],X,!1))}for(let _=0;_<j.length;_++)for(let G=0;G<z.length&&V.length<X;G++){let w=J+j[_]+z[G];if(!Z||q||w)V.push(w)}}return V}var NQ=(Q)=>{if(typeof Q!=="string")throw TypeError("invalid pattern");if(Q.length>65536)throw TypeError("pattern is too long")};var e7={"[:alnum:]":["\\p{L}\\p{Nl}\\p{Nd}",!0],"[:alpha:]":["\\p{L}\\p{Nl}",!0],"[:ascii:]":["\\x00-\\x7f",!1],"[:blank:]":["\\p{Zs}\\t",!0],"[:cntrl:]":["\\p{Cc}",!0],"[:digit:]":["\\p{Nd}",!0],"[:graph:]":["\\p{Z}\\p{C}",!0,!0],"[:lower:]":["\\p{Ll}",!0],"[:print:]":["\\p{C}",!0],"[:punct:]":["\\p{P}",!0],"[:space:]":["\\p{Z}\\t\\r\\n\\v\\f",!0],"[:upper:]":["\\p{Lu}",!0],"[:word:]":["\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}",!0],"[:xdigit:]":["A-Fa-f0-9",!1]},IQ=(Q)=>Q.replace(/[[\]\\-]/g,"\\$&"),Q8=(Q)=>Q.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),H6=(Q)=>Q.join(""),W6=(Q,X)=>{let Z=X;if(Q.charAt(Z)!=="[")throw Error("not in a brace expression");let V=[],$=[],J=Z+1,z=!1,K=!1,Y=!1,q=!1,W=Z,H="";Q:while(J<Q.length){let w=Q.charAt(J);if((w==="!"||w==="^")&&J===Z+1){q=!0,J++;continue}if(w==="]"&&z&&!Y){W=J+1;break}if(z=!0,w==="\\"){if(!Y){Y=!0,J++;continue}}if(w==="["&&!Y){for(let[A,[U,B,F]]of Object.entries(e7))if(Q.startsWith(A,J)){if(H)return["$.",!1,Q.length-Z,!0];if(J+=A.length,F)$.push(U);else V.push(U);K=K||B;continue Q}}if(Y=!1,H){if(w>H)V.push(IQ(H)+"-"+IQ(w));else if(w===H)V.push(IQ(w));H="",J++;continue}if(Q.startsWith("-]",J+1)){V.push(IQ(w+"-")),J+=2;continue}if(Q.startsWith("-",J+1)){H=w,J+=2;continue}V.push(IQ(w)),J++}if(W<J)return["",!1,0,!1];if(!V.length&&!$.length)return["$.",!1,Q.length-Z,!0];if($.length===0&&V.length===1&&/^\\?.$/.test(V[0])&&!q){let w=V[0].length===2?V[0].slice(-1):V[0];return[Q8(w),!1,W-Z,!1]}let j="["+(q?"^":"")+H6(V)+"]",_="["+(q?"":"^")+H6($)+"]";return[V.length&&$.length?"("+j+"|"+_+")":V.length?j:_,K,W-Z,!0]};var o=(Q,{windowsPathsNoEscape:X=!1,magicalBraces:Z=!0}={})=>{if(Z)return X?Q.replace(/\[([^\/\\])\]/g,"$1"):Q.replace(/((?!\\).|^)\[([^\/\\])\]/g,"$1$2").replace(/\\([^\/])/g,"$1");return X?Q.replace(/\[([^\/\\{}])\]/g,"$1"):Q.replace(/((?!\\).|^)\[([^\/\\{}])\]/g,"$1$2").replace(/\\([^\/{}])/g,"$1")};var u,X8=new Set(["!","?","+","*","@"]),x5=(Q)=>X8.has(Q),j6=(Q)=>x5(Q.type),Z8=new Map([["!",["@"]],["?",["?","@"]],["@",["@"]],["*",["*","+","?","@"]],["+",["+","@"]]]),V8=new Map([["!",["?"]],["@",["?"]],["+",["?","*"]]]),$8=new Map([["!",["?","@"]],["?",["?","@"]],["@",["?","@"]],["*",["*","+","?","@"]],["+",["+","@","?","*"]]]),_6=new Map([["!",new Map([["!","@"]])],["?",new Map([["*","*"],["+","*"]])],["@",new Map([["!","!"],["?","?"],["@","@"],["*","*"],["+","+"]])],["+",new Map([["?","*"],["*","*"]])]]),J8="(?!(?:^|/)\\.\\.?(?:$|/))",rQ="(?!\\.)",z8=new Set(["[","."]),K8=new Set(["..","."]),Y8=new Set("().*{}+?[]^$\\!"),q8=(Q)=>Q.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),N5="[^/]",G6=N5+"*?",w6=N5+"+?",H8=0;class UQ{type;#Q;#V;#$=!1;#X=[];#z;#C;#B;#W=!1;#K;#j;#H=!1;id=++H8;get depth(){return(this.#z?.depth??-1)+1}[Symbol.for("nodejs.util.inspect.custom")](){return{"@@type":"AST",id:this.id,type:this.type,root:this.#Q.id,parent:this.#z?.id,depth:this.depth,partsLength:this.#X.length,parts:this.#X}}constructor(Q,X,Z={}){if(this.type=Q,Q)this.#V=!0;if(this.#z=X,this.#Q=this.#z?this.#z.#Q:this,this.#K=this.#Q===this?Z:this.#Q.#K,this.#B=this.#Q===this?[]:this.#Q.#B,Q==="!"&&!this.#Q.#W)this.#B.push(this);this.#C=this.#z?this.#z.#X.length:0}get hasMagic(){if(this.#V!==void 0)return this.#V;for(let Q of this.#X){if(typeof Q==="string")continue;if(Q.type||Q.hasMagic)return this.#V=!0}return this.#V}toString(){if(this.#j!==void 0)return this.#j;if(!this.type)return this.#j=this.#X.map((Q)=>String(Q)).join("");else return this.#j=this.type+"("+this.#X.map((Q)=>String(Q)).join("|")+")"}#Y(){if(this!==this.#Q)throw Error("should only call on root");if(this.#W)return this;this.toString(),this.#W=!0;let Q;while(Q=this.#B.pop()){if(Q.type!=="!")continue;let X=Q,Z=X.#z;while(Z){for(let V=X.#C+1;!Z.type&&V<Z.#X.length;V++)for(let $ of Q.#X){if(typeof $==="string")throw Error("string part in extglob AST??");$.copyIn(Z.#X[V])}X=Z,Z=X.#z}}return this}push(...Q){for(let X of Q){if(X==="")continue;if(typeof X!=="string"&&!(X instanceof u&&X.#z===this))throw Error("invalid part: "+X);this.#X.push(X)}}toJSON(){let Q=this.type===null?this.#X.slice().map((X)=>typeof X==="string"?X:X.toJSON()):[this.type,...this.#X.map((X)=>X.toJSON())];if(this.isStart()&&!this.type)Q.unshift([]);if(this.isEnd()&&(this===this.#Q||this.#Q.#W&&this.#z?.type==="!"))Q.push({});return Q}isStart(){if(this.#Q===this)return!0;if(!this.#z?.isStart())return!1;if(this.#C===0)return!0;let Q=this.#z;for(let X=0;X<this.#C;X++){let Z=Q.#X[X];if(!(Z instanceof u&&Z.type==="!"))return!1}return!0}isEnd(){if(this.#Q===this)return!0;if(this.#z?.type==="!")return!0;if(!this.#z?.isEnd())return!1;if(!this.type)return this.#z?.isEnd();let Q=this.#z?this.#z.#X.length:0;return this.#C===Q-1}copyIn(Q){if(typeof Q==="string")this.push(Q);else this.push(Q.clone(this))}clone(Q){let X=new u(this.type,Q);for(let Z of this.#X)X.copyIn(Z);return X}static#J(Q,X,Z,V,$){let J=V.maxExtglobRecursion??2,z=!1,K=!1,Y=-1,q=!1;if(X.type===null){let G=Z,w="";while(G<Q.length){let A=Q.charAt(G++);if(z||A==="\\"){z=!z,w+=A;continue}if(K){if(G===Y+1){if(A==="^"||A==="!")q=!0}else if(A==="]"&&!(G===Y+2&&q))K=!1;w+=A;continue}else if(A==="["){K=!0,Y=G,q=!1,w+=A;continue}if(!V.noext&&x5(A)&&Q.charAt(G)==="("&&$<=J){X.push(w),w="";let B=new u(A,X);G=u.#J(Q,B,G,V,$+1),X.push(B);continue}w+=A}return X.push(w),G}let W=Z+1,H=new u(null,X),j=[],_="";while(W<Q.length){let G=Q.charAt(W++);if(z||G==="\\"){z=!z,_+=G;continue}if(K){if(W===Y+1){if(G==="^"||G==="!")q=!0}else if(G==="]"&&!(W===Y+2&&q))K=!1;_+=G;continue}else if(G==="["){K=!0,Y=W,q=!1,_+=G;continue}if(!V.noext&&x5(G)&&Q.charAt(W)==="("&&($<=J||X&&X.#G(G))){let A=X&&X.#G(G)?0:1;H.push(_),_="";let U=new u(G,H);H.push(U),W=u.#J(Q,U,W,V,$+A);continue}if(G==="|"){H.push(_),_="",j.push(H),H=new u(null,X);continue}if(G===")"){if(_===""&&X.#X.length===0)X.#H=!0;return H.push(_),_="",X.push(...j,H),W}_+=G}return X.type=null,X.#V=void 0,X.#X=[Q.substring(Z-1)],W}#L(Q){return this.#F(Q,V8)}#F(Q,X=Z8){if(!Q||typeof Q!=="object"||Q.type!==null||Q.#X.length!==1||this.type===null)return!1;let Z=Q.#X[0];if(!Z||typeof Z!=="object"||Z.type===null)return!1;return this.#G(Z.type,X)}#G(Q,X=$8){return!!X.get(this.type)?.includes(Q)}#w(Q,X){let Z=Q.#X[0],V=new u(null,Z,this.options);V.#X.push(""),Z.push(V),this.#P(Q,X)}#P(Q,X){let Z=Q.#X[0];this.#X.splice(X,1,...Z.#X);for(let V of Z.#X)if(typeof V==="object")V.#z=this;this.#j=void 0}#U(Q){return!!_6.get(this.type)?.has(Q)}#O(Q){if(!Q||typeof Q!=="object"||Q.type!==null||Q.#X.length!==1||this.type===null||this.#X.length!==1)return!1;let X=Q.#X[0];if(!X||typeof X!=="object"||X.type===null)return!1;return this.#U(X.type)}#M(Q){let X=_6.get(this.type),Z=Q.#X[0],V=X?.get(Z.type);if(!V)return!1;this.#X=Z.#X;for(let $ of this.#X)if(typeof $==="object")$.#z=this;this.type=V,this.#j=void 0,this.#H=!1}static fromGlob(Q,X={}){let Z=new u(null,void 0,X);return u.#J(Q,Z,0,X,0),Z}toMMPattern(){if(this!==this.#Q)return this.#Q.toMMPattern();let Q=this.toString(),[X,Z,V,$]=this.toRegExpSource();if(!(V||this.#V||this.#K.nocase&&!this.#K.nocaseMagicOnly&&Q.toUpperCase()!==Q.toLowerCase()))return Z;let z=(this.#K.nocase?"i":"")+($?"u":"");return Object.assign(new RegExp(`^${X}$`,z),{_src:X,_glob:Q})}get options(){return this.#K}toRegExpSource(Q){let X=Q??!!this.#K.dot;if(this.#Q===this)this.#_(),this.#Y();if(!j6(this)){let K=this.isStart()&&this.isEnd()&&!this.#X.some((j)=>typeof j!=="string"),Y=this.#X.map((j)=>{let[_,G,w,A]=typeof j==="string"?u.#v(j,this.#V,K):j.toRegExpSource(Q);return this.#V=this.#V||w,this.#$=this.#$||A,_}).join(""),q="";if(this.isStart()){if(typeof this.#X[0]==="string"){if(!(this.#X.length===1&&K8.has(this.#X[0]))){let _=z8,G=X&&_.has(Y.charAt(0))||Y.startsWith("\\.")&&_.has(Y.charAt(2))||Y.startsWith("\\.\\.")&&_.has(Y.charAt(4)),w=!X&&!Q&&_.has(Y.charAt(0));q=G?J8:w?rQ:""}}}let W="";if(this.isEnd()&&this.#Q.#W&&this.#z?.type==="!")W="(?:$|\\/)";return[q+Y+W,o(Y),this.#V=!!this.#V,this.#$]}let Z=this.type==="*"||this.type==="+",V=this.type==="!"?"(?:(?!(?:":"(?:",$=this.#A(X);if(this.isStart()&&this.isEnd()&&!$&&this.type!=="!"){let K=this.toString(),Y=this;return Y.#X=[K],Y.type=null,Y.#V=void 0,[K,o(this.toString()),!1,!1]}let J=!Z||Q||X||!rQ?"":this.#A(!0);if(J===$)J="";if(J)$=`(?:${$})(?:${J})*?`;let z="";if(this.type==="!"&&this.#H)z=(this.isStart()&&!X?rQ:"")+w6;else{let K=this.type==="!"?"))"+(this.isStart()&&!X&&!Q?rQ:"")+G6+")":this.type==="@"?")":this.type==="?"?")?":this.type==="+"&&J?")":this.type==="*"&&J?")?":`)${this.type}`;z=V+$+K}return[z,o($),this.#V=!!this.#V,this.#$]}#_(){if(!j6(this)){for(let Q of this.#X)if(typeof Q==="object")Q.#_()}else{let Q=0,X=!1;do{X=!0;for(let Z=0;Z<this.#X.length;Z++){let V=this.#X[Z];if(typeof V==="object"){if(V.#_(),this.#F(V))X=!1,this.#P(V,Z);else if(this.#L(V))X=!1,this.#w(V,Z);else if(this.#O(V))X=!1,this.#M(V)}}}while(!X&&++Q<10)}this.#j=void 0}#A(Q){return this.#X.map((X)=>{if(typeof X==="string")throw Error("string type in extglob ast??");let[Z,V,$,J]=X.toRegExpSource(Q);return this.#$=this.#$||J,Z}).filter((X)=>!(this.isStart()&&this.isEnd())||!!X).join("|")}static#v(Q,X,Z=!1){let V=!1,$="",J=!1,z=!1;for(let K=0;K<Q.length;K++){let Y=Q.charAt(K);if(V){V=!1,$+=(Y8.has(Y)?"\\":"")+Y;continue}if(Y==="*"){if(z)continue;z=!0,$+=Z&&/^[*]+$/.test(Q)?w6:G6,X=!0;continue}else z=!1;if(Y==="\\"){if(K===Q.length-1)$+="\\\\";else V=!0;continue}if(Y==="["){let[q,W,H,j]=W6(Q,K);if(H){$+=q,J=J||W,K+=H-1,X=X||j;continue}}if(Y==="?"){$+=N5,X=!0;continue}$+=q8(Y)}return[$,o(Q),!!X,J]}}u=UQ;var AQ=(Q,{windowsPathsNoEscape:X=!1,magicalBraces:Z=!1}={})=>{if(Z)return X?Q.replace(/[?*()[\]{}]/g,"[$&]"):Q.replace(/[?*()[\]\\{}]/g,"\\$&");return X?Q.replace(/[?*()[\]]/g,"[$&]"):Q.replace(/[?*()[\]\\]/g,"\\$&")};var b=(Q,X,Z={})=>{if(NQ(X),!Z.nocomment&&X.charAt(0)==="#")return!1;return new l(X,Z).match(Q)},W8=/^\*+([^+@!?\*\[\(]*)$/,j8=(Q)=>(X)=>!X.startsWith(".")&&X.endsWith(Q),_8=(Q)=>(X)=>X.endsWith(Q),G8=(Q)=>{return Q=Q.toLowerCase(),(X)=>!X.startsWith(".")&&X.toLowerCase().endsWith(Q)},w8=(Q)=>{return Q=Q.toLowerCase(),(X)=>X.toLowerCase().endsWith(Q)},U8=/^\*+\.\*+$/,A8=(Q)=>!Q.startsWith(".")&&Q.includes("."),B8=(Q)=>Q!=="."&&Q!==".."&&Q.includes("."),L8=/^\.\*+$/,v8=(Q)=>Q!=="."&&Q!==".."&&Q.startsWith("."),F8=/^\*+$/,O8=(Q)=>Q.length!==0&&!Q.startsWith("."),C8=(Q)=>Q.length!==0&&Q!=="."&&Q!=="..",M8=/^\?+([^+@!?\*\[\(]*)?$/,R8=([Q,X=""])=>{let Z=B6([Q]);if(!X)return Z;return X=X.toLowerCase(),(V)=>Z(V)&&V.toLowerCase().endsWith(X)},P8=([Q,X=""])=>{let Z=L6([Q]);if(!X)return Z;return X=X.toLowerCase(),(V)=>Z(V)&&V.toLowerCase().endsWith(X)},D8=([Q,X=""])=>{let Z=L6([Q]);return!X?Z:(V)=>Z(V)&&V.endsWith(X)},x8=([Q,X=""])=>{let Z=B6([Q]);return!X?Z:(V)=>Z(V)&&V.endsWith(X)},B6=([Q])=>{let X=Q.length;return(Z)=>Z.length===X&&!Z.startsWith(".")},L6=([Q])=>{let X=Q.length;return(Z)=>Z.length===X&&Z!=="."&&Z!==".."},v6=typeof process==="object"&&process?typeof process.env==="object"&&process.env&&process.env.__MINIMATCH_TESTING_PLATFORM__||process.platform:"posix",U6={win32:{sep:"\\"},posix:{sep:"/"}},N8=v6==="win32"?U6.win32.sep:U6.posix.sep;b.sep=N8;var x=Symbol("globstar **");b.GLOBSTAR=x;var I8="[^/]",k8=I8+"*?",S8="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",T8="(?:(?!(?:\\/|^)\\.).)*?",E8=(Q,X={})=>(Z)=>b(Z,Q,X);b.filter=E8;var c=(Q,X={})=>Object.assign({},Q,X),b8=(Q)=>{if(!Q||typeof Q!=="object"||!Object.keys(Q).length)return b;let X=b;return Object.assign((V,$,J={})=>X(V,$,c(Q,J)),{Minimatch:class extends X.Minimatch{constructor($,J={}){super($,c(Q,J))}static defaults($){return X.defaults(c(Q,$)).Minimatch}},AST:class extends X.AST{constructor($,J,z={}){super($,J,c(Q,z))}static fromGlob($,J={}){return X.AST.fromGlob($,c(Q,J))}},unescape:(V,$={})=>X.unescape(V,c(Q,$)),escape:(V,$={})=>X.escape(V,c(Q,$)),filter:(V,$={})=>X.filter(V,c(Q,$)),defaults:(V)=>X.defaults(c(Q,V)),makeRe:(V,$={})=>X.makeRe(V,c(Q,$)),braceExpand:(V,$={})=>X.braceExpand(V,c(Q,$)),match:(V,$,J={})=>X.match(V,$,c(Q,J)),sep:X.sep,GLOBSTAR:x})};b.defaults=b8;var F6=(Q,X={})=>{if(NQ(Q),X.nobrace||!/\{(?:(?!\{).)*\}/.test(Q))return[Q];return q6(Q,{max:X.braceExpandMax})};b.braceExpand=F6;var y8=(Q,X={})=>new l(Q,X).makeRe();b.makeRe=y8;var f8=(Q,X,Z={})=>{let V=new l(X,Z);if(Q=Q.filter(($)=>V.match($)),V.options.nonull&&!Q.length)Q.push(X);return Q};b.match=f8;var A6=/[?*]|[+@!]\(.*?\)|\[|\]/,u8=(Q)=>Q.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&");class l{options;set;pattern;windowsPathsNoEscape;nonegate;negate;comment;empty;preserveMultipleSlashes;partial;globSet;globParts;nocase;isWindows;platform;windowsNoMagicRoot;maxGlobstarRecursion;regexp;constructor(Q,X={}){NQ(Q),X=X||{},this.options=X,this.maxGlobstarRecursion=X.maxGlobstarRecursion??200,this.pattern=Q,this.platform=X.platform||v6,this.isWindows=this.platform==="win32";let Z="allowWindowsEscape";if(this.windowsPathsNoEscape=!!X.windowsPathsNoEscape||X[Z]===!1,this.windowsPathsNoEscape)this.pattern=this.pattern.replace(/\\/g,"/");this.preserveMultipleSlashes=!!X.preserveMultipleSlashes,this.regexp=null,this.negate=!1,this.nonegate=!!X.nonegate,this.comment=!1,this.empty=!1,this.partial=!!X.partial,this.nocase=!!this.options.nocase,this.windowsNoMagicRoot=X.windowsNoMagicRoot!==void 0?X.windowsNoMagicRoot:!!(this.isWindows&&this.nocase),this.globSet=[],this.globParts=[],this.set=[],this.make()}hasMagic(){if(this.options.magicalBraces&&this.set.length>1)return!0;for(let Q of this.set)for(let X of Q)if(typeof X!=="string")return!0;return!1}debug(...Q){}make(){let Q=this.pattern,X=this.options;if(!X.nocomment&&Q.charAt(0)==="#"){this.comment=!0;return}if(!Q){this.empty=!0;return}if(this.parseNegate(),this.globSet=[...new Set(this.braceExpand())],X.debug)this.debug=(...$)=>console.error(...$);this.debug(this.pattern,this.globSet);let Z=this.globSet.map(($)=>this.slashSplit($));this.globParts=this.preprocess(Z),this.debug(this.pattern,this.globParts);let V=this.globParts.map(($,J,z)=>{if(this.isWindows&&this.windowsNoMagicRoot){let K=$[0]===""&&$[1]===""&&($[2]==="?"||!A6.test($[2]))&&!A6.test($[3]),Y=/^[a-z]:/i.test($[0]);if(K)return[...$.slice(0,4),...$.slice(4).map((q)=>this.parse(q))];else if(Y)return[$[0],...$.slice(1).map((q)=>this.parse(q))]}return $.map((K)=>this.parse(K))});if(this.debug(this.pattern,V),this.set=V.filter(($)=>$.indexOf(!1)===-1),this.isWindows)for(let $=0;$<this.set.length;$++){let J=this.set[$];if(J[0]===""&&J[1]===""&&this.globParts[$][2]==="?"&&typeof J[3]==="string"&&/^[a-z]:$/i.test(J[3]))J[2]="?"}this.debug(this.pattern,this.set)}preprocess(Q){if(this.options.noglobstar){for(let Z=0;Z<Q.length;Z++)for(let V=0;V<Q[Z].length;V++)if(Q[Z][V]==="**")Q[Z][V]="*"}let{optimizationLevel:X=1}=this.options;if(X>=2)Q=this.firstPhasePreProcess(Q),Q=this.secondPhasePreProcess(Q);else if(X>=1)Q=this.levelOneOptimize(Q);else Q=this.adjascentGlobstarOptimize(Q);return Q}adjascentGlobstarOptimize(Q){return Q.map((X)=>{let Z=-1;while((Z=X.indexOf("**",Z+1))!==-1){let V=Z;while(X[V+1]==="**")V++;if(V!==Z)X.splice(Z,V-Z)}return X})}levelOneOptimize(Q){return Q.map((X)=>{return X=X.reduce((Z,V)=>{let $=Z[Z.length-1];if(V==="**"&&$==="**")return Z;if(V===".."){if($&&$!==".."&&$!=="."&&$!=="**")return Z.pop(),Z}return Z.push(V),Z},[]),X.length===0?[""]:X})}levelTwoFileOptimize(Q){if(!Array.isArray(Q))Q=this.slashSplit(Q);let X=!1;do{if(X=!1,!this.preserveMultipleSlashes){for(let V=1;V<Q.length-1;V++){let $=Q[V];if(V===1&&$===""&&Q[0]==="")continue;if($==="."||$==="")X=!0,Q.splice(V,1),V--}if(Q[0]==="."&&Q.length===2&&(Q[1]==="."||Q[1]===""))X=!0,Q.pop()}let Z=0;while((Z=Q.indexOf("..",Z+1))!==-1){let V=Q[Z-1];if(V&&V!=="."&&V!==".."&&V!=="**")X=!0,Q.splice(Z-1,2),Z-=2}}while(X);return Q.length===0?[""]:Q}firstPhasePreProcess(Q){let X=!1;do{X=!1;for(let Z of Q){let V=-1;while((V=Z.indexOf("**",V+1))!==-1){let J=V;while(Z[J+1]==="**")J++;if(J>V)Z.splice(V+1,J-V);let z=Z[V+1],K=Z[V+2],Y=Z[V+3];if(z!=="..")continue;if(!K||K==="."||K===".."||!Y||Y==="."||Y==="..")continue;X=!0,Z.splice(V,1);let q=Z.slice(0);q[V]="**",Q.push(q),V--}if(!this.preserveMultipleSlashes){for(let J=1;J<Z.length-1;J++){let z=Z[J];if(J===1&&z===""&&Z[0]==="")continue;if(z==="."||z==="")X=!0,Z.splice(J,1),J--}if(Z[0]==="."&&Z.length===2&&(Z[1]==="."||Z[1]===""))X=!0,Z.pop()}let $=0;while(($=Z.indexOf("..",$+1))!==-1){let J=Z[$-1];if(J&&J!=="."&&J!==".."&&J!=="**"){X=!0;let K=$===1&&Z[$+1]==="**"?["."]:[];if(Z.splice($-1,2,...K),Z.length===0)Z.push("");$-=2}}}}while(X);return Q}secondPhasePreProcess(Q){for(let X=0;X<Q.length-1;X++)for(let Z=X+1;Z<Q.length;Z++){let V=this.partsMatch(Q[X],Q[Z],!this.preserveMultipleSlashes);if(V){Q[X]=[],Q[Z]=V;break}}return Q.filter((X)=>X.length)}partsMatch(Q,X,Z=!1){let V=0,$=0,J=[],z="";while(V<Q.length&&$<X.length)if(Q[V]===X[$])J.push(z==="b"?X[$]:Q[V]),V++,$++;else if(Z&&Q[V]==="**"&&X[$]===Q[V+1])J.push(Q[V]),V++;else if(Z&&X[$]==="**"&&Q[V]===X[$+1])J.push(X[$]),$++;else if(Q[V]==="*"&&X[$]&&(this.options.dot||!X[$].startsWith("."))&&X[$]!=="**"){if(z==="b")return!1;z="a",J.push(Q[V]),V++,$++}else if(X[$]==="*"&&Q[V]&&(this.options.dot||!Q[V].startsWith("."))&&Q[V]!=="**"){if(z==="a")return!1;z="b",J.push(X[$]),V++,$++}else return!1;return Q.length===X.length&&J}parseNegate(){if(this.nonegate)return;let Q=this.pattern,X=!1,Z=0;for(let V=0;V<Q.length&&Q.charAt(V)==="!";V++)X=!X,Z++;if(Z)this.pattern=Q.slice(Z);this.negate=X}matchOne(Q,X,Z=!1){let V=0,$=0;if(this.isWindows){let z=typeof Q[0]==="string"&&/^[a-z]:$/i.test(Q[0]),K=!z&&Q[0]===""&&Q[1]===""&&Q[2]==="?"&&/^[a-z]:$/i.test(Q[3]),Y=typeof X[0]==="string"&&/^[a-z]:$/i.test(X[0]),q=!Y&&X[0]===""&&X[1]===""&&X[2]==="?"&&typeof X[3]==="string"&&/^[a-z]:$/i.test(X[3]),W=K?3:z?0:void 0,H=q?3:Y?0:void 0;if(typeof W==="number"&&typeof H==="number"){let[j,_]=[Q[W],X[H]];if(j.toLowerCase()===_.toLowerCase())X[H]=j,$=H,V=W}}let{optimizationLevel:J=1}=this.options;if(J>=2)Q=this.levelTwoFileOptimize(Q);if(X.includes(x))return this.#Q(Q,X,Z,V,$);return this.#$(Q,X,Z,V,$)}#Q(Q,X,Z,V,$){let J=X.indexOf(x,$),z=X.lastIndexOf(x),[K,Y,q]=Z?[X.slice($,J),X.slice(J+1),[]]:[X.slice($,J),X.slice(J+1,z),X.slice(z+1)];if(K.length){let U=Q.slice(V,V+K.length);if(!this.#$(U,K,Z,0,0))return!1;V+=K.length,$+=K.length}let W=0;if(q.length){if(q.length+V>Q.length)return!1;let U=Q.length-q.length;if(this.#$(Q,q,Z,U,0))W=q.length;else{if(Q[Q.length-1]!==""||V+q.length===Q.length)return!1;if(U--,!this.#$(Q,q,Z,U,0))return!1;W=q.length+1}}if(!Y.length){let U=!!W;for(let B=V;B<Q.length-W;B++){let F=String(Q[B]);if(U=!0,F==="."||F===".."||!this.options.dot&&F.startsWith("."))return!1}return Z||U}let H=[[[],0]],j=H[0],_=0,G=[0];for(let U of Y)if(U===x)G.push(_),j=[[],0],H.push(j);else j[0].push(U),_++;let w=H.length-1,A=Q.length-W;for(let U of H)U[1]=A-(G[w--]+U[0].length);return!!this.#V(Q,H,V,0,Z,0,!!W)}#V(Q,X,Z,V,$,J,z){let K=X[V];if(!K){for(let W=Z;W<Q.length;W++){z=!0;let H=Q[W];if(H==="."||H===".."||!this.options.dot&&H.startsWith("."))return!1}return z}let[Y,q]=K;while(Z<=q){if(this.#$(Q.slice(0,Z+Y.length),Y,$,Z,0)&&J<this.maxGlobstarRecursion){let j=this.#V(Q,X,Z+Y.length,V+1,$,J+1,z);if(j!==!1)return j}let H=Q[Z];if(H==="."||H===".."||!this.options.dot&&H.startsWith("."))return!1;Z++}return $||null}#$(Q,X,Z,V,$){let J,z,K,Y;for(J=V,z=$,Y=Q.length,K=X.length;J<Y&&z<K;J++,z++){this.debug("matchOne loop");let q=X[z],W=Q[J];if(this.debug(X,q,W),q===!1||q===x)return!1;let H;if(typeof q==="string")H=W===q,this.debug("string match",q,W,H);else H=q.test(W),this.debug("pattern match",q,W,H);if(!H)return!1}if(J===Y&&z===K)return!0;else if(J===Y)return Z;else if(z===K)return J===Y-1&&Q[J]==="";else throw Error("wtf?")}braceExpand(){return F6(this.pattern,this.options)}parse(Q){NQ(Q);let X=this.options;if(Q==="**")return x;if(Q==="")return"";let Z,V=null;if(Z=Q.match(F8))V=X.dot?C8:O8;else if(Z=Q.match(W8))V=(X.nocase?X.dot?w8:G8:X.dot?_8:j8)(Z[1]);else if(Z=Q.match(M8))V=(X.nocase?X.dot?P8:R8:X.dot?D8:x8)(Z);else if(Z=Q.match(U8))V=X.dot?B8:A8;else if(Z=Q.match(L8))V=v8;let $=UQ.fromGlob(Q,this.options).toMMPattern();if(V&&typeof $==="object")Reflect.defineProperty($,"test",{value:V});return $}makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;let Q=this.set;if(!Q.length)return this.regexp=!1,this.regexp;let X=this.options,Z=X.noglobstar?k8:X.dot?S8:T8,V=new Set(X.nocase?["i"]:[]),$=Q.map((K)=>{let Y=K.map((W)=>{if(W instanceof RegExp)for(let H of W.flags.split(""))V.add(H);return typeof W==="string"?u8(W):W===x?x:W._src});Y.forEach((W,H)=>{let j=Y[H+1],_=Y[H-1];if(W!==x||_===x)return;if(_===void 0)if(j!==void 0&&j!==x)Y[H+1]="(?:\\/|"+Z+"\\/)?"+j;else Y[H]=Z;else if(j===void 0)Y[H-1]=_+"(?:\\/|\\/"+Z+")?";else if(j!==x)Y[H-1]=_+"(?:\\/|\\/"+Z+"\\/)"+j,Y[H+1]=x});let q=Y.filter((W)=>W!==x);if(this.partial&&q.length>=1){let W=[];for(let H=1;H<=q.length;H++)W.push(q.slice(0,H).join("/"));return"(?:"+W.join("|")+")"}return q.join("/")}).join("|"),[J,z]=Q.length>1?["(?:",")"]:["",""];if($="^"+J+$+z+"$",this.partial)$="^(?:\\/|"+J+$.slice(1,-1)+z+")$";if(this.negate)$="^(?!"+$+").+$";try{this.regexp=new RegExp($,[...V].join(""))}catch(K){this.regexp=!1}return this.regexp}slashSplit(Q){if(this.preserveMultipleSlashes)return Q.split("/");else if(this.isWindows&&/^\/\/[^\/]+/.test(Q))return["",...Q.split(/\/+/)];else return Q.split(/\/+/)}match(Q,X=this.partial){if(this.debug("match",Q,this.pattern),this.comment)return!1;if(this.empty)return Q==="";if(Q==="/"&&X)return!0;let Z=this.options;if(this.isWindows)Q=Q.split("\\").join("/");let V=this.slashSplit(Q);this.debug(this.pattern,"split",V);let $=this.set;this.debug(this.pattern,"set",$);let J=V[V.length-1];if(!J)for(let z=V.length-2;!J&&z>=0;z--)J=V[z];for(let z=0;z<$.length;z++){let K=$[z],Y=V;if(Z.matchBase&&K.length===1)Y=[J];if(this.matchOne(Y,K,X)){if(Z.flipNegate)return!0;return!this.negate}}if(Z.flipNegate)return!1;return this.negate}static defaults(Q){return b.defaults(Q).Minimatch}}b.AST=UQ;b.Minimatch=l;b.escape=AQ;b.unescape=o;import{fileURLToPath as B9}from"url";var h8=typeof performance=="object"&&performance&&typeof performance.now=="function"?performance:Date,C6=new Set,I5=typeof process=="object"&&process?process:{},M6=(Q,X,Z,V)=>{typeof I5.emitWarning=="function"?I5.emitWarning(Q,X,Z,V):console.error(`[${Z}] ${X}: ${Q}`)},tQ=globalThis.AbortController,O6=globalThis.AbortSignal;if(typeof tQ>"u"){O6=class{onabort;_onabort=[];reason;aborted=!1;addEventListener(Z,V){this._onabort.push(V)}},tQ=class{constructor(){X()}signal=new O6;abort(Z){if(!this.signal.aborted){this.signal.reason=Z,this.signal.aborted=!0;for(let V of this.signal._onabort)V(Z);this.signal.onabort?.(Z)}}};let Q=I5.env?.LRU_CACHE_IGNORE_AC_WARNING!=="1",X=()=>{Q&&(Q=!1,M6("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",X))}}var g8=(Q)=>!C6.has(Q),m0=Symbol("type"),HQ=(Q)=>Q&&Q===Math.floor(Q)&&Q>0&&isFinite(Q),R6=(Q)=>HQ(Q)?Q<=Math.pow(2,8)?Uint8Array:Q<=Math.pow(2,16)?Uint16Array:Q<=Math.pow(2,32)?Uint32Array:Q<=Number.MAX_SAFE_INTEGER?sQ:null:null,sQ=class extends Array{constructor(Q){super(Q),this.fill(0)}},d8=class Q{heap;length;static#Q=!1;static create(X){let Z=R6(X);if(!Z)return[];Q.#Q=!0;let V=new Q(X,Z);return Q.#Q=!1,V}constructor(X,Z){if(!Q.#Q)throw TypeError("instantiate Stack using Stack.create(n)");this.heap=new Z(X),this.length=0}push(X){this.heap[this.length++]=X}pop(){return this.heap[--this.length]}},kQ=class Q{#Q;#V;#$;#X;#z;#C;#B;#W;get perf(){return this.#W}ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#K;#j;#H;#Y;#J;#L;#F;#G;#w;#P;#U;#O;#M;#_;#A;#v;#D;#Z;#E;static unsafeExposeInternals(X){return{starts:X.#M,ttls:X.#_,autopurgeTimers:X.#A,sizes:X.#O,keyMap:X.#H,keyList:X.#Y,valList:X.#J,next:X.#L,prev:X.#F,get head(){return X.#G},get tail(){return X.#w},free:X.#P,isBackgroundFetch:(Z)=>X.#q(Z),backgroundFetch:(Z,V,$,J)=>X.#m(Z,V,$,J),moveToTail:(Z)=>X.#y(Z),indexes:(Z)=>X.#I(Z),rindexes:(Z)=>X.#k(Z),isStale:(Z)=>X.#R(Z)}}get max(){return this.#Q}get maxSize(){return this.#V}get calculatedSize(){return this.#j}get size(){return this.#K}get fetchMethod(){return this.#C}get memoMethod(){return this.#B}get dispose(){return this.#$}get onInsert(){return this.#X}get disposeAfter(){return this.#z}constructor(X){let{max:Z=0,ttl:V,ttlResolution:$=1,ttlAutopurge:J,updateAgeOnGet:z,updateAgeOnHas:K,allowStale:Y,dispose:q,onInsert:W,disposeAfter:H,noDisposeOnSet:j,noUpdateTTL:_,maxSize:G=0,maxEntrySize:w=0,sizeCalculation:A,fetchMethod:U,memoMethod:B,noDeleteOnFetchRejection:F,noDeleteOnStaleGet:v,allowStaleOnFetchRejection:L,allowStaleOnFetchAbort:O,ignoreFetchAbort:I,perf:m}=X;if(m!==void 0&&typeof m?.now!="function")throw TypeError("perf option must have a now() method if specified");if(this.#W=m??h8,Z!==0&&!HQ(Z))throw TypeError("max option must be a nonnegative integer");let h=Z?R6(Z):Array;if(!h)throw Error("invalid max value: "+Z);if(this.#Q=Z,this.#V=G,this.maxEntrySize=w||this.#V,this.sizeCalculation=A,this.sizeCalculation){if(!this.#V&&!this.maxEntrySize)throw TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if(typeof this.sizeCalculation!="function")throw TypeError("sizeCalculation set to non-function")}if(B!==void 0&&typeof B!="function")throw TypeError("memoMethod must be a function if defined");if(this.#B=B,U!==void 0&&typeof U!="function")throw TypeError("fetchMethod must be a function if specified");if(this.#C=U,this.#D=!!U,this.#H=new Map,this.#Y=Array(Z).fill(void 0),this.#J=Array(Z).fill(void 0),this.#L=new h(Z),this.#F=new h(Z),this.#G=0,this.#w=0,this.#P=d8.create(Z),this.#K=0,this.#j=0,typeof q=="function"&&(this.#$=q),typeof W=="function"&&(this.#X=W),typeof H=="function"?(this.#z=H,this.#U=[]):(this.#z=void 0,this.#U=void 0),this.#v=!!this.#$,this.#E=!!this.#X,this.#Z=!!this.#z,this.noDisposeOnSet=!!j,this.noUpdateTTL=!!_,this.noDeleteOnFetchRejection=!!F,this.allowStaleOnFetchRejection=!!L,this.allowStaleOnFetchAbort=!!O,this.ignoreFetchAbort=!!I,this.maxEntrySize!==0){if(this.#V!==0&&!HQ(this.#V))throw TypeError("maxSize must be a positive integer if specified");if(!HQ(this.maxEntrySize))throw TypeError("maxEntrySize must be a positive integer if specified");this.#l()}if(this.allowStale=!!Y,this.noDeleteOnStaleGet=!!v,this.updateAgeOnGet=!!z,this.updateAgeOnHas=!!K,this.ttlResolution=HQ($)||$===0?$:1,this.ttlAutopurge=!!J,this.ttl=V||0,this.ttl){if(!HQ(this.ttl))throw TypeError("ttl must be a positive integer if specified");this.#S()}if(this.#Q===0&&this.ttl===0&&this.#V===0)throw TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#Q&&!this.#V){let g="LRU_CACHE_UNBOUNDED";g8(g)&&(C6.add(g),M6("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",g,Q))}}getRemainingTTL(X){return this.#H.has(X)?1/0:0}#S(){let X=new sQ(this.#Q),Z=new sQ(this.#Q);this.#_=X,this.#M=Z;let V=this.ttlAutopurge?Array(this.#Q):void 0;this.#A=V,this.#u=(z,K,Y=this.#W.now())=>{if(Z[z]=K!==0?Y:0,X[z]=K,V?.[z]&&(clearTimeout(V[z]),V[z]=void 0),K!==0&&V){let q=setTimeout(()=>{this.#R(z)&&this.#N(this.#Y[z],"expire")},K+1);q.unref&&q.unref(),V[z]=q}},this.#x=(z)=>{Z[z]=X[z]!==0?this.#W.now():0},this.#T=(z,K)=>{if(X[K]){let Y=X[K],q=Z[K];if(!Y||!q)return;z.ttl=Y,z.start=q,z.now=$||J();let W=z.now-q;z.remainingTTL=Y-W}};let $=0,J=()=>{let z=this.#W.now();if(this.ttlResolution>0){$=z;let K=setTimeout(()=>$=0,this.ttlResolution);K.unref&&K.unref()}return z};this.getRemainingTTL=(z)=>{let K=this.#H.get(z);if(K===void 0)return 0;let Y=X[K],q=Z[K];if(!Y||!q)return 1/0;let W=($||J())-q;return Y-W},this.#R=(z)=>{let K=Z[z],Y=X[z];return!!Y&&!!K&&($||J())-K>Y}}#x=()=>{};#T=()=>{};#u=()=>{};#R=()=>!1;#l(){let X=new sQ(this.#Q);this.#j=0,this.#O=X,this.#f=(Z)=>{this.#j-=X[Z],X[Z]=0},this.#h=(Z,V,$,J)=>{if(this.#q(V))return 0;if(!HQ($))if(J){if(typeof J!="function")throw TypeError("sizeCalculation must be a function");if($=J(V,Z),!HQ($))throw TypeError("sizeCalculation return invalid (expect positive integer)")}else throw TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");return $},this.#b=(Z,V,$)=>{if(X[Z]=V,this.#V){let J=this.#V-X[Z];for(;this.#j>J;)this.#d(!0)}this.#j+=X[Z],$&&($.entrySize=V,$.totalCalculatedSize=this.#j)}}#f=(X)=>{};#b=(X,Z,V)=>{};#h=(X,Z,V,$)=>{if(V||$)throw TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0};*#I({allowStale:X=this.allowStale}={}){if(this.#K)for(let Z=this.#w;!(!this.#g(Z)||((X||!this.#R(Z))&&(yield Z),Z===this.#G));)Z=this.#F[Z]}*#k({allowStale:X=this.allowStale}={}){if(this.#K)for(let Z=this.#G;!(!this.#g(Z)||((X||!this.#R(Z))&&(yield Z),Z===this.#w));)Z=this.#L[Z]}#g(X){return X!==void 0&&this.#H.get(this.#Y[X])===X}*entries(){for(let X of this.#I())this.#J[X]!==void 0&&this.#Y[X]!==void 0&&!this.#q(this.#J[X])&&(yield[this.#Y[X],this.#J[X]])}*rentries(){for(let X of this.#k())this.#J[X]!==void 0&&this.#Y[X]!==void 0&&!this.#q(this.#J[X])&&(yield[this.#Y[X],this.#J[X]])}*keys(){for(let X of this.#I()){let Z=this.#Y[X];Z!==void 0&&!this.#q(this.#J[X])&&(yield Z)}}*rkeys(){for(let X of this.#k()){let Z=this.#Y[X];Z!==void 0&&!this.#q(this.#J[X])&&(yield Z)}}*values(){for(let X of this.#I())this.#J[X]!==void 0&&!this.#q(this.#J[X])&&(yield this.#J[X])}*rvalues(){for(let X of this.#k())this.#J[X]!==void 0&&!this.#q(this.#J[X])&&(yield this.#J[X])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(X,Z={}){for(let V of this.#I()){let $=this.#J[V],J=this.#q($)?$.__staleWhileFetching:$;if(J!==void 0&&X(J,this.#Y[V],this))return this.get(this.#Y[V],Z)}}forEach(X,Z=this){for(let V of this.#I()){let $=this.#J[V],J=this.#q($)?$.__staleWhileFetching:$;J!==void 0&&X.call(Z,J,this.#Y[V],this)}}rforEach(X,Z=this){for(let V of this.#k()){let $=this.#J[V],J=this.#q($)?$.__staleWhileFetching:$;J!==void 0&&X.call(Z,J,this.#Y[V],this)}}purgeStale(){let X=!1;for(let Z of this.#k({allowStale:!0}))this.#R(Z)&&(this.#N(this.#Y[Z],"expire"),X=!0);return X}info(X){let Z=this.#H.get(X);if(Z===void 0)return;let V=this.#J[Z],$=this.#q(V)?V.__staleWhileFetching:V;if($===void 0)return;let J={value:$};if(this.#_&&this.#M){let z=this.#_[Z],K=this.#M[Z];if(z&&K){let Y=z-(this.#W.now()-K);J.ttl=Y,J.start=Date.now()}}return this.#O&&(J.size=this.#O[Z]),J}dump(){let X=[];for(let Z of this.#I({allowStale:!0})){let V=this.#Y[Z],$=this.#J[Z],J=this.#q($)?$.__staleWhileFetching:$;if(J===void 0||V===void 0)continue;let z={value:J};if(this.#_&&this.#M){z.ttl=this.#_[Z];let K=this.#W.now()-this.#M[Z];z.start=Math.floor(Date.now()-K)}this.#O&&(z.size=this.#O[Z]),X.unshift([V,z])}return X}load(X){this.clear();for(let[Z,V]of X){if(V.start){let $=Date.now()-V.start;V.start=this.#W.now()-$}this.set(Z,V.value,V)}}set(X,Z,V={}){if(Z===void 0)return this.delete(X),this;let{ttl:$=this.ttl,start:J,noDisposeOnSet:z=this.noDisposeOnSet,sizeCalculation:K=this.sizeCalculation,status:Y}=V,{noUpdateTTL:q=this.noUpdateTTL}=V,W=this.#h(X,Z,V.size||0,K);if(this.maxEntrySize&&W>this.maxEntrySize)return Y&&(Y.set="miss",Y.maxEntrySizeExceeded=!0),this.#N(X,"set"),this;let H=this.#K===0?void 0:this.#H.get(X);if(H===void 0)H=this.#K===0?this.#w:this.#P.length!==0?this.#P.pop():this.#K===this.#Q?this.#d(!1):this.#K,this.#Y[H]=X,this.#J[H]=Z,this.#H.set(X,H),this.#L[this.#w]=H,this.#F[H]=this.#w,this.#w=H,this.#K++,this.#b(H,W,Y),Y&&(Y.set="add"),q=!1,this.#E&&this.#X?.(Z,X,"add");else{this.#y(H);let j=this.#J[H];if(Z!==j){if(this.#D&&this.#q(j)){j.__abortController.abort(Error("replaced"));let{__staleWhileFetching:_}=j;_!==void 0&&!z&&(this.#v&&this.#$?.(_,X,"set"),this.#Z&&this.#U?.push([_,X,"set"]))}else z||(this.#v&&this.#$?.(j,X,"set"),this.#Z&&this.#U?.push([j,X,"set"]));if(this.#f(H),this.#b(H,W,Y),this.#J[H]=Z,Y){Y.set="replace";let _=j&&this.#q(j)?j.__staleWhileFetching:j;_!==void 0&&(Y.oldValue=_)}}else Y&&(Y.set="update");this.#E&&this.onInsert?.(Z,X,Z===j?"update":"replace")}if($!==0&&!this.#_&&this.#S(),this.#_&&(q||this.#u(H,$,J),Y&&this.#T(Y,H)),!z&&this.#Z&&this.#U){let j=this.#U,_;for(;_=j?.shift();)this.#z?.(..._)}return this}pop(){try{for(;this.#K;){let X=this.#J[this.#G];if(this.#d(!0),this.#q(X)){if(X.__staleWhileFetching)return X.__staleWhileFetching}else if(X!==void 0)return X}}finally{if(this.#Z&&this.#U){let X=this.#U,Z;for(;Z=X?.shift();)this.#z?.(...Z)}}}#d(X){let Z=this.#G,V=this.#Y[Z],$=this.#J[Z];return this.#D&&this.#q($)?$.__abortController.abort(Error("evicted")):(this.#v||this.#Z)&&(this.#v&&this.#$?.($,V,"evict"),this.#Z&&this.#U?.push([$,V,"evict"])),this.#f(Z),this.#A?.[Z]&&(clearTimeout(this.#A[Z]),this.#A[Z]=void 0),X&&(this.#Y[Z]=void 0,this.#J[Z]=void 0,this.#P.push(Z)),this.#K===1?(this.#G=this.#w=0,this.#P.length=0):this.#G=this.#L[Z],this.#H.delete(V),this.#K--,Z}has(X,Z={}){let{updateAgeOnHas:V=this.updateAgeOnHas,status:$}=Z,J=this.#H.get(X);if(J!==void 0){let z=this.#J[J];if(this.#q(z)&&z.__staleWhileFetching===void 0)return!1;if(this.#R(J))$&&($.has="stale",this.#T($,J));else return V&&this.#x(J),$&&($.has="hit",this.#T($,J)),!0}else $&&($.has="miss");return!1}peek(X,Z={}){let{allowStale:V=this.allowStale}=Z,$=this.#H.get(X);if($===void 0||!V&&this.#R($))return;let J=this.#J[$];return this.#q(J)?J.__staleWhileFetching:J}#m(X,Z,V,$){let J=Z===void 0?void 0:this.#J[Z];if(this.#q(J))return J;let z=new tQ,{signal:K}=V;K?.addEventListener("abort",()=>z.abort(K.reason),{signal:z.signal});let Y={signal:z.signal,options:V,context:$},q=(w,A=!1)=>{let{aborted:U}=z.signal,B=V.ignoreFetchAbort&&w!==void 0,F=V.ignoreFetchAbort||!!(V.allowStaleOnFetchAbort&&w!==void 0);if(V.status&&(U&&!A?(V.status.fetchAborted=!0,V.status.fetchError=z.signal.reason,B&&(V.status.fetchAbortIgnored=!0)):V.status.fetchResolved=!0),U&&!B&&!A)return H(z.signal.reason,F);let v=_,L=this.#J[Z];return(L===_||B&&A&&L===void 0)&&(w===void 0?v.__staleWhileFetching!==void 0?this.#J[Z]=v.__staleWhileFetching:this.#N(X,"fetch"):(V.status&&(V.status.fetchUpdated=!0),this.set(X,w,Y.options))),w},W=(w)=>(V.status&&(V.status.fetchRejected=!0,V.status.fetchError=w),H(w,!1)),H=(w,A)=>{let{aborted:U}=z.signal,B=U&&V.allowStaleOnFetchAbort,F=B||V.allowStaleOnFetchRejection,v=F||V.noDeleteOnFetchRejection,L=_;if(this.#J[Z]===_&&(!v||!A&&L.__staleWhileFetching===void 0?this.#N(X,"fetch"):B||(this.#J[Z]=L.__staleWhileFetching)),F)return V.status&&L.__staleWhileFetching!==void 0&&(V.status.returnedStale=!0),L.__staleWhileFetching;if(L.__returned===L)throw w},j=(w,A)=>{let U=this.#C?.(X,J,Y);U&&U instanceof Promise&&U.then((B)=>w(B===void 0?void 0:B),A),z.signal.addEventListener("abort",()=>{(!V.ignoreFetchAbort||V.allowStaleOnFetchAbort)&&(w(void 0),V.allowStaleOnFetchAbort&&(w=(B)=>q(B,!0)))})};V.status&&(V.status.fetchDispatched=!0);let _=new Promise(j).then(q,W),G=Object.assign(_,{__abortController:z,__staleWhileFetching:J,__returned:void 0});return Z===void 0?(this.set(X,G,{...Y.options,status:void 0}),Z=this.#H.get(X)):this.#J[Z]=G,G}#q(X){if(!this.#D)return!1;let Z=X;return!!Z&&Z instanceof Promise&&Z.hasOwnProperty("__staleWhileFetching")&&Z.__abortController instanceof tQ}async fetch(X,Z={}){let{allowStale:V=this.allowStale,updateAgeOnGet:$=this.updateAgeOnGet,noDeleteOnStaleGet:J=this.noDeleteOnStaleGet,ttl:z=this.ttl,noDisposeOnSet:K=this.noDisposeOnSet,size:Y=0,sizeCalculation:q=this.sizeCalculation,noUpdateTTL:W=this.noUpdateTTL,noDeleteOnFetchRejection:H=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:j=this.allowStaleOnFetchRejection,ignoreFetchAbort:_=this.ignoreFetchAbort,allowStaleOnFetchAbort:G=this.allowStaleOnFetchAbort,context:w,forceRefresh:A=!1,status:U,signal:B}=Z;if(!this.#D)return U&&(U.fetch="get"),this.get(X,{allowStale:V,updateAgeOnGet:$,noDeleteOnStaleGet:J,status:U});let F={allowStale:V,updateAgeOnGet:$,noDeleteOnStaleGet:J,ttl:z,noDisposeOnSet:K,size:Y,sizeCalculation:q,noUpdateTTL:W,noDeleteOnFetchRejection:H,allowStaleOnFetchRejection:j,allowStaleOnFetchAbort:G,ignoreFetchAbort:_,status:U,signal:B},v=this.#H.get(X);if(v===void 0){U&&(U.fetch="miss");let L=this.#m(X,v,F,w);return L.__returned=L}else{let L=this.#J[v];if(this.#q(L)){let h=V&&L.__staleWhileFetching!==void 0;return U&&(U.fetch="inflight",h&&(U.returnedStale=!0)),h?L.__staleWhileFetching:L.__returned=L}let O=this.#R(v);if(!A&&!O)return U&&(U.fetch="hit"),this.#y(v),$&&this.#x(v),U&&this.#T(U,v),L;let I=this.#m(X,v,F,w),m=I.__staleWhileFetching!==void 0&&V;return U&&(U.fetch=O?"stale":"refresh",m&&O&&(U.returnedStale=!0)),m?I.__staleWhileFetching:I.__returned=I}}async forceFetch(X,Z={}){let V=await this.fetch(X,Z);if(V===void 0)throw Error("fetch() returned undefined");return V}memo(X,Z={}){let V=this.#B;if(!V)throw Error("no memoMethod provided to constructor");let{context:$,forceRefresh:J,...z}=Z,K=this.get(X,z);if(!J&&K!==void 0)return K;let Y=V(X,K,{options:z,context:$});return this.set(X,Y,z),Y}get(X,Z={}){let{allowStale:V=this.allowStale,updateAgeOnGet:$=this.updateAgeOnGet,noDeleteOnStaleGet:J=this.noDeleteOnStaleGet,status:z}=Z,K=this.#H.get(X);if(K!==void 0){let Y=this.#J[K],q=this.#q(Y);return z&&this.#T(z,K),this.#R(K)?(z&&(z.get="stale"),q?(z&&V&&Y.__staleWhileFetching!==void 0&&(z.returnedStale=!0),V?Y.__staleWhileFetching:void 0):(J||this.#N(X,"expire"),z&&V&&(z.returnedStale=!0),V?Y:void 0)):(z&&(z.get="hit"),q?Y.__staleWhileFetching:(this.#y(K),$&&this.#x(K),Y))}else z&&(z.get="miss")}#c(X,Z){this.#F[Z]=X,this.#L[X]=Z}#y(X){X!==this.#w&&(X===this.#G?this.#G=this.#L[X]:this.#c(this.#F[X],this.#L[X]),this.#c(this.#w,X),this.#w=X)}delete(X){return this.#N(X,"delete")}#N(X,Z){let V=!1;if(this.#K!==0){let $=this.#H.get(X);if($!==void 0)if(this.#A?.[$]&&(clearTimeout(this.#A?.[$]),this.#A[$]=void 0),V=!0,this.#K===1)this.#p(Z);else{this.#f($);let J=this.#J[$];if(this.#q(J)?J.__abortController.abort(Error("deleted")):(this.#v||this.#Z)&&(this.#v&&this.#$?.(J,X,Z),this.#Z&&this.#U?.push([J,X,Z])),this.#H.delete(X),this.#Y[$]=void 0,this.#J[$]=void 0,$===this.#w)this.#w=this.#F[$];else if($===this.#G)this.#G=this.#L[$];else{let z=this.#F[$];this.#L[z]=this.#L[$];let K=this.#L[$];this.#F[K]=this.#F[$]}this.#K--,this.#P.push($)}}if(this.#Z&&this.#U?.length){let $=this.#U,J;for(;J=$?.shift();)this.#z?.(...J)}return V}clear(){return this.#p("delete")}#p(X){for(let Z of this.#k({allowStale:!0})){let V=this.#J[Z];if(this.#q(V))V.__abortController.abort(Error("deleted"));else{let $=this.#Y[Z];this.#v&&this.#$?.(V,$,X),this.#Z&&this.#U?.push([V,$,X])}}if(this.#H.clear(),this.#J.fill(void 0),this.#Y.fill(void 0),this.#_&&this.#M){this.#_.fill(0),this.#M.fill(0);for(let Z of this.#A??[])Z!==void 0&&clearTimeout(Z);this.#A?.fill(void 0)}if(this.#O&&this.#O.fill(0),this.#G=0,this.#w=0,this.#P.length=0,this.#j=0,this.#K=0,this.#Z&&this.#U){let Z=this.#U,V;for(;V=Z?.shift();)this.#z?.(...V)}}};import{posix as t8,win32 as g5}from"path";import{fileURLToPath as e8}from"url";import{lstatSync as Q9,readdir as X9,readdirSync as Z9,readlinkSync as V9,realpathSync as $9}from"fs";import*as J9 from"fs";import{lstat as K9,readdir as Y9,readlink as q9,realpath as H9}from"fs/promises";import{EventEmitter as y5}from"events";import I6 from"stream";import{StringDecoder as m8}from"string_decoder";var P6=typeof process==="object"&&process?process:{stdout:null,stderr:null},c8=(Q)=>!!Q&&typeof Q==="object"&&(Q instanceof GQ||Q instanceof I6||l8(Q)||p8(Q)),l8=(Q)=>!!Q&&typeof Q==="object"&&Q instanceof y5&&typeof Q.pipe==="function"&&Q.pipe!==I6.Writable.prototype.pipe,p8=(Q)=>!!Q&&typeof Q==="object"&&Q instanceof y5&&typeof Q.write==="function"&&typeof Q.end==="function",zQ=Symbol("EOF"),KQ=Symbol("maybeEmitEnd"),WQ=Symbol("emittedEnd"),eQ=Symbol("emittingEnd"),SQ=Symbol("emittedError"),Q5=Symbol("closed"),D6=Symbol("read"),X5=Symbol("flush"),x6=Symbol("flushChunk"),a=Symbol("encoding"),BQ=Symbol("decoder"),k=Symbol("flowing"),TQ=Symbol("paused"),LQ=Symbol("resume"),S=Symbol("buffer"),y=Symbol("pipes"),T=Symbol("bufferLength"),k5=Symbol("bufferPush"),Z5=Symbol("bufferShift"),E=Symbol("objectMode"),N=Symbol("destroyed"),S5=Symbol("error"),T5=Symbol("emitData"),N6=Symbol("emitEnd"),E5=Symbol("emitEnd2"),e=Symbol("async"),b5=Symbol("abort"),V5=Symbol("aborted"),EQ=Symbol("signal"),_Q=Symbol("dataListeners"),d=Symbol("discarded"),bQ=(Q)=>Promise.resolve().then(Q),i8=(Q)=>Q(),n8=(Q)=>Q==="end"||Q==="finish"||Q==="prefinish",o8=(Q)=>Q instanceof ArrayBuffer||!!Q&&typeof Q==="object"&&Q.constructor&&Q.constructor.name==="ArrayBuffer"&&Q.byteLength>=0,a8=(Q)=>!Buffer.isBuffer(Q)&&ArrayBuffer.isView(Q);class f5{src;dest;opts;ondrain;constructor(Q,X,Z){this.src=Q,this.dest=X,this.opts=Z,this.ondrain=()=>Q[LQ](),this.dest.on("drain",this.ondrain)}unpipe(){this.dest.removeListener("drain",this.ondrain)}proxyErrors(Q){}end(){if(this.unpipe(),this.opts.end)this.dest.end()}}class k6 extends f5{unpipe(){this.src.removeListener("error",this.proxyErrors),super.unpipe()}constructor(Q,X,Z){super(Q,X,Z);this.proxyErrors=(V)=>this.dest.emit("error",V),Q.on("error",this.proxyErrors)}}var r8=(Q)=>!!Q.objectMode,s8=(Q)=>!Q.objectMode&&!!Q.encoding&&Q.encoding!=="buffer";class GQ extends y5{[k]=!1;[TQ]=!1;[y]=[];[S]=[];[E];[a];[e];[BQ];[zQ]=!1;[WQ]=!1;[eQ]=!1;[Q5]=!1;[SQ]=null;[T]=0;[N]=!1;[EQ];[V5]=!1;[_Q]=0;[d]=!1;writable=!0;readable=!0;constructor(...Q){let X=Q[0]||{};super();if(X.objectMode&&typeof X.encoding==="string")throw TypeError("Encoding and objectMode may not be used together");if(r8(X))this[E]=!0,this[a]=null;else if(s8(X))this[a]=X.encoding,this[E]=!1;else this[E]=!1,this[a]=null;if(this[e]=!!X.async,this[BQ]=this[a]?new m8(this[a]):null,X&&X.debugExposeBuffer===!0)Object.defineProperty(this,"buffer",{get:()=>this[S]});if(X&&X.debugExposePipes===!0)Object.defineProperty(this,"pipes",{get:()=>this[y]});let{signal:Z}=X;if(Z)if(this[EQ]=Z,Z.aborted)this[b5]();else Z.addEventListener("abort",()=>this[b5]())}get bufferLength(){return this[T]}get encoding(){return this[a]}set encoding(Q){throw Error("Encoding must be set at instantiation time")}setEncoding(Q){throw Error("Encoding must be set at instantiation time")}get objectMode(){return this[E]}set objectMode(Q){throw Error("objectMode must be set at instantiation time")}get["async"](){return this[e]}set["async"](Q){this[e]=this[e]||!!Q}[b5](){this[V5]=!0,this.emit("abort",this[EQ]?.reason),this.destroy(this[EQ]?.reason)}get aborted(){return this[V5]}set aborted(Q){}write(Q,X,Z){if(this[V5])return!1;if(this[zQ])throw Error("write after end");if(this[N])return this.emit("error",Object.assign(Error("Cannot call write after a stream was destroyed"),{code:"ERR_STREAM_DESTROYED"})),!0;if(typeof X==="function")Z=X,X="utf8";if(!X)X="utf8";let V=this[e]?bQ:i8;if(!this[E]&&!Buffer.isBuffer(Q)){if(a8(Q))Q=Buffer.from(Q.buffer,Q.byteOffset,Q.byteLength);else if(o8(Q))Q=Buffer.from(Q);else if(typeof Q!=="string")throw Error("Non-contiguous data written to non-objectMode stream")}if(this[E]){if(this[k]&&this[T]!==0)this[X5](!0);if(this[k])this.emit("data",Q);else this[k5](Q);if(this[T]!==0)this.emit("readable");if(Z)V(Z);return this[k]}if(!Q.length){if(this[T]!==0)this.emit("readable");if(Z)V(Z);return this[k]}if(typeof Q==="string"&&!(X===this[a]&&!this[BQ]?.lastNeed))Q=Buffer.from(Q,X);if(Buffer.isBuffer(Q)&&this[a])Q=this[BQ].write(Q);if(this[k]&&this[T]!==0)this[X5](!0);if(this[k])this.emit("data",Q);else this[k5](Q);if(this[T]!==0)this.emit("readable");if(Z)V(Z);return this[k]}read(Q){if(this[N])return null;if(this[d]=!1,this[T]===0||Q===0||Q&&Q>this[T])return this[KQ](),null;if(this[E])Q=null;if(this[S].length>1&&!this[E])this[S]=[this[a]?this[S].join(""):Buffer.concat(this[S],this[T])];let X=this[D6](Q||null,this[S][0]);return this[KQ](),X}[D6](Q,X){if(this[E])this[Z5]();else{let Z=X;if(Q===Z.length||Q===null)this[Z5]();else if(typeof Z==="string")this[S][0]=Z.slice(Q),X=Z.slice(0,Q),this[T]-=Q;else this[S][0]=Z.subarray(Q),X=Z.subarray(0,Q),this[T]-=Q}if(this.emit("data",X),!this[S].length&&!this[zQ])this.emit("drain");return X}end(Q,X,Z){if(typeof Q==="function")Z=Q,Q=void 0;if(typeof X==="function")Z=X,X="utf8";if(Q!==void 0)this.write(Q,X);if(Z)this.once("end",Z);if(this[zQ]=!0,this.writable=!1,this[k]||!this[TQ])this[KQ]();return this}[LQ](){if(this[N])return;if(!this[_Q]&&!this[y].length)this[d]=!0;if(this[TQ]=!1,this[k]=!0,this.emit("resume"),this[S].length)this[X5]();else if(this[zQ])this[KQ]();else this.emit("drain")}resume(){return this[LQ]()}pause(){this[k]=!1,this[TQ]=!0,this[d]=!1}get destroyed(){return this[N]}get flowing(){return this[k]}get paused(){return this[TQ]}[k5](Q){if(this[E])this[T]+=1;else this[T]+=Q.length;this[S].push(Q)}[Z5](){if(this[E])this[T]-=1;else this[T]-=this[S][0].length;return this[S].shift()}[X5](Q=!1){do;while(this[x6](this[Z5]())&&this[S].length);if(!Q&&!this[S].length&&!this[zQ])this.emit("drain")}[x6](Q){return this.emit("data",Q),this[k]}pipe(Q,X){if(this[N])return Q;this[d]=!1;let Z=this[WQ];if(X=X||{},Q===P6.stdout||Q===P6.stderr)X.end=!1;else X.end=X.end!==!1;if(X.proxyErrors=!!X.proxyErrors,Z){if(X.end)Q.end()}else if(this[y].push(!X.proxyErrors?new f5(this,Q,X):new k6(this,Q,X)),this[e])bQ(()=>this[LQ]());else this[LQ]();return Q}unpipe(Q){let X=this[y].find((Z)=>Z.dest===Q);if(X){if(this[y].length===1){if(this[k]&&this[_Q]===0)this[k]=!1;this[y]=[]}else this[y].splice(this[y].indexOf(X),1);X.unpipe()}}addListener(Q,X){return this.on(Q,X)}on(Q,X){let Z=super.on(Q,X);if(Q==="data"){if(this[d]=!1,this[_Q]++,!this[y].length&&!this[k])this[LQ]()}else if(Q==="readable"&&this[T]!==0)super.emit("readable");else if(n8(Q)&&this[WQ])super.emit(Q),this.removeAllListeners(Q);else if(Q==="error"&&this[SQ]){let V=X;if(this[e])bQ(()=>V.call(this,this[SQ]));else V.call(this,this[SQ])}return Z}removeListener(Q,X){return this.off(Q,X)}off(Q,X){let Z=super.off(Q,X);if(Q==="data"){if(this[_Q]=this.listeners("data").length,this[_Q]===0&&!this[d]&&!this[y].length)this[k]=!1}return Z}removeAllListeners(Q){let X=super.removeAllListeners(Q);if(Q==="data"||Q===void 0){if(this[_Q]=0,!this[d]&&!this[y].length)this[k]=!1}return X}get emittedEnd(){return this[WQ]}[KQ](){if(!this[eQ]&&!this[WQ]&&!this[N]&&this[S].length===0&&this[zQ]){if(this[eQ]=!0,this.emit("end"),this.emit("prefinish"),this.emit("finish"),this[Q5])this.emit("close");this[eQ]=!1}}emit(Q,...X){let Z=X[0];if(Q!=="error"&&Q!=="close"&&Q!==N&&this[N])return!1;else if(Q==="data")return!this[E]&&!Z?!1:this[e]?(bQ(()=>this[T5](Z)),!0):this[T5](Z);else if(Q==="end")return this[N6]();else if(Q==="close"){if(this[Q5]=!0,!this[WQ]&&!this[N])return!1;let $=super.emit("close");return this.removeAllListeners("close"),$}else if(Q==="error"){this[SQ]=Z,super.emit(S5,Z);let $=!this[EQ]||this.listeners("error").length?super.emit("error",Z):!1;return this[KQ](),$}else if(Q==="resume"){let $=super.emit("resume");return this[KQ](),$}else if(Q==="finish"||Q==="prefinish"){let $=super.emit(Q);return this.removeAllListeners(Q),$}let V=super.emit(Q,...X);return this[KQ](),V}[T5](Q){for(let Z of this[y])if(Z.dest.write(Q)===!1)this.pause();let X=this[d]?!1:super.emit("data",Q);return this[KQ](),X}[N6](){if(this[WQ])return!1;return this[WQ]=!0,this.readable=!1,this[e]?(bQ(()=>this[E5]()),!0):this[E5]()}[E5](){if(this[BQ]){let X=this[BQ].end();if(X){for(let Z of this[y])Z.dest.write(X);if(!this[d])super.emit("data",X)}}for(let X of this[y])X.end();let Q=super.emit("end");return this.removeAllListeners("end"),Q}async collect(){let Q=Object.assign([],{dataLength:0});if(!this[E])Q.dataLength=0;let X=this.promise();return this.on("data",(Z)=>{if(Q.push(Z),!this[E])Q.dataLength+=Z.length}),await X,Q}async concat(){if(this[E])throw Error("cannot concat in objectMode");let Q=await this.collect();return this[a]?Q.join(""):Buffer.concat(Q,Q.dataLength)}async promise(){return new Promise((Q,X)=>{this.on(N,()=>X(Error("stream destroyed"))),this.on("error",(Z)=>X(Z)),this.on("end",()=>Q())})}[Symbol.asyncIterator](){this[d]=!1;let Q=!1,X=async()=>{return this.pause(),Q=!0,{value:void 0,done:!0}};return{next:()=>{if(Q)return X();let V=this.read();if(V!==null)return Promise.resolve({done:!1,value:V});if(this[zQ])return X();let $,J,z=(W)=>{this.off("data",K),this.off("end",Y),this.off(N,q),X(),J(W)},K=(W)=>{this.off("error",z),this.off("end",Y),this.off(N,q),this.pause(),$({value:W,done:!!this[zQ]})},Y=()=>{this.off("error",z),this.off("data",K),this.off(N,q),X(),$({done:!0,value:void 0})},q=()=>z(Error("stream destroyed"));return new Promise((W,H)=>{J=H,$=W,this.once(N,q),this.once("error",z),this.once("end",Y),this.once("data",K)})},throw:X,return:X,[Symbol.asyncIterator](){return this},[Symbol.asyncDispose]:async()=>{}}}[Symbol.iterator](){this[d]=!1;let Q=!1,X=()=>{return this.pause(),this.off(S5,X),this.off(N,X),this.off("end",X),Q=!0,{done:!0,value:void 0}},Z=()=>{if(Q)return X();let V=this.read();return V===null?X():{done:!1,value:V}};return this.once("end",X),this.once(S5,X),this.once(N,X),{next:Z,throw:X,return:X,[Symbol.iterator](){return this},[Symbol.dispose]:()=>{}}}destroy(Q){if(this[N]){if(Q)this.emit("error",Q);else this.emit(N);return this}this[N]=!0,this[d]=!0,this[S].length=0,this[T]=0;let X=this;if(typeof X.close==="function"&&!this[Q5])X.close();if(Q)this.emit("error",Q);else this.emit(N);return this}static get isStream(){return c8}}var z9=$9.native,fQ={lstatSync:Q9,readdir:X9,readdirSync:Z9,readlinkSync:V9,realpathSync:z9,promises:{lstat:K9,readdir:Y9,readlink:q9,realpath:H9}},y6=(Q)=>!Q||Q===fQ||Q===J9?fQ:{...fQ,...Q,promises:{...fQ.promises,...Q.promises||{}}},f6=/^\\\\\?\\([a-z]:)\\?$/i,W9=(Q)=>Q.replace(/\//g,"\\").replace(f6,"$1\\"),j9=/[\\\/]/,i=0,u6=1,h6=2,QQ=4,g6=6,d6=8,wQ=10,m6=12,p=15,yQ=~p,u5=16,S6=32,uQ=64,r=128,$5=256,z5=512,T6=uQ|r|z5,_9=1023,h5=(Q)=>Q.isFile()?d6:Q.isDirectory()?QQ:Q.isSymbolicLink()?wQ:Q.isCharacterDevice()?h6:Q.isBlockDevice()?g6:Q.isSocket()?m6:Q.isFIFO()?u6:i,E6=new kQ({max:4096}),hQ=(Q)=>{let X=E6.get(Q);if(X)return X;let Z=Q.normalize("NFKD");return E6.set(Q,Z),Z},b6=new kQ({max:4096}),J5=(Q)=>{let X=b6.get(Q);if(X)return X;let Z=hQ(Q.toLowerCase());return b6.set(Q,Z),Z};class d5 extends kQ{constructor(){super({max:256})}}class c6 extends kQ{constructor(Q=16384){super({maxSize:Q,sizeCalculation:(X)=>X.length+1})}}var l6=Symbol("PathScurry setAsCwd");class f{name;root;roots;parent;nocase;isCWD=!1;#Q;#V;get dev(){return this.#V}#$;get mode(){return this.#$}#X;get nlink(){return this.#X}#z;get uid(){return this.#z}#C;get gid(){return this.#C}#B;get rdev(){return this.#B}#W;get blksize(){return this.#W}#K;get ino(){return this.#K}#j;get size(){return this.#j}#H;get blocks(){return this.#H}#Y;get atimeMs(){return this.#Y}#J;get mtimeMs(){return this.#J}#L;get ctimeMs(){return this.#L}#F;get birthtimeMs(){return this.#F}#G;get atime(){return this.#G}#w;get mtime(){return this.#w}#P;get ctime(){return this.#P}#U;get birthtime(){return this.#U}#O;#M;#_;#A;#v;#D;#Z;#E;#S;#x;get parentPath(){return(this.parent||this).fullpath()}get path(){return this.parentPath}constructor(Q,X=i,Z,V,$,J,z){if(this.name=Q,this.#O=$?J5(Q):hQ(Q),this.#Z=X&_9,this.nocase=$,this.roots=V,this.root=Z||this,this.#E=J,this.#_=z.fullpath,this.#v=z.relative,this.#D=z.relativePosix,this.parent=z.parent,this.parent)this.#Q=this.parent.#Q;else this.#Q=y6(z.fs)}depth(){if(this.#M!==void 0)return this.#M;if(!this.parent)return this.#M=0;return this.#M=this.parent.depth()+1}childrenCache(){return this.#E}resolve(Q){if(!Q)return this;let X=this.getRootString(Q),V=Q.substring(X.length).split(this.splitSep);return X?this.getRoot(X).#T(V):this.#T(V)}#T(Q){let X=this;for(let Z of Q)X=X.child(Z);return X}children(){let Q=this.#E.get(this);if(Q)return Q;let X=Object.assign([],{provisional:0});return this.#E.set(this,X),this.#Z&=~u5,X}child(Q,X){if(Q===""||Q===".")return this;if(Q==="..")return this.parent||this;let Z=this.children(),V=this.nocase?J5(Q):hQ(Q);for(let K of Z)if(K.#O===V)return K;let $=this.parent?this.sep:"",J=this.#_?this.#_+$+Q:void 0,z=this.newChild(Q,i,{...X,parent:this,fullpath:J});if(!this.canReaddir())z.#Z|=r;return Z.push(z),z}relative(){if(this.isCWD)return"";if(this.#v!==void 0)return this.#v;let Q=this.name,X=this.parent;if(!X)return this.#v=this.name;let Z=X.relative();return Z+(!Z||!X.parent?"":this.sep)+Q}relativePosix(){if(this.sep==="/")return this.relative();if(this.isCWD)return"";if(this.#D!==void 0)return this.#D;let Q=this.name,X=this.parent;if(!X)return this.#D=this.fullpathPosix();let Z=X.relativePosix();return Z+(!Z||!X.parent?"":"/")+Q}fullpath(){if(this.#_!==void 0)return this.#_;let Q=this.name,X=this.parent;if(!X)return this.#_=this.name;let V=X.fullpath()+(!X.parent?"":this.sep)+Q;return this.#_=V}fullpathPosix(){if(this.#A!==void 0)return this.#A;if(this.sep==="/")return this.#A=this.fullpath();if(!this.parent){let V=this.fullpath().replace(/\\/g,"/");if(/^[a-z]:\//i.test(V))return this.#A=`//?/${V}`;else return this.#A=V}let Q=this.parent,X=Q.fullpathPosix(),Z=X+(!X||!Q.parent?"":"/")+this.name;return this.#A=Z}isUnknown(){return(this.#Z&p)===i}isType(Q){return this[`is${Q}`]()}getType(){return this.isUnknown()?"Unknown":this.isDirectory()?"Directory":this.isFile()?"File":this.isSymbolicLink()?"SymbolicLink":this.isFIFO()?"FIFO":this.isCharacterDevice()?"CharacterDevice":this.isBlockDevice()?"BlockDevice":this.isSocket()?"Socket":"Unknown"}isFile(){return(this.#Z&p)===d6}isDirectory(){return(this.#Z&p)===QQ}isCharacterDevice(){return(this.#Z&p)===h6}isBlockDevice(){return(this.#Z&p)===g6}isFIFO(){return(this.#Z&p)===u6}isSocket(){return(this.#Z&p)===m6}isSymbolicLink(){return(this.#Z&wQ)===wQ}lstatCached(){return this.#Z&S6?this:void 0}readlinkCached(){return this.#S}realpathCached(){return this.#x}readdirCached(){let Q=this.children();return Q.slice(0,Q.provisional)}canReadlink(){if(this.#S)return!0;if(!this.parent)return!1;let Q=this.#Z&p;return!(Q!==i&&Q!==wQ||this.#Z&$5||this.#Z&r)}calledReaddir(){return!!(this.#Z&u5)}isENOENT(){return!!(this.#Z&r)}isNamed(Q){return!this.nocase?this.#O===hQ(Q):this.#O===J5(Q)}async readlink(){let Q=this.#S;if(Q)return Q;if(!this.canReadlink())return;if(!this.parent)return;try{let X=await this.#Q.promises.readlink(this.fullpath()),Z=(await this.parent.realpath())?.resolve(X);if(Z)return this.#S=Z}catch(X){this.#k(X.code);return}}readlinkSync(){let Q=this.#S;if(Q)return Q;if(!this.canReadlink())return;if(!this.parent)return;try{let X=this.#Q.readlinkSync(this.fullpath()),Z=this.parent.realpathSync()?.resolve(X);if(Z)return this.#S=Z}catch(X){this.#k(X.code);return}}#u(Q){this.#Z|=u5;for(let X=Q.provisional;X<Q.length;X++){let Z=Q[X];if(Z)Z.#R()}}#R(){if(this.#Z&r)return;this.#Z=(this.#Z|r)&yQ,this.#l()}#l(){let Q=this.children();Q.provisional=0;for(let X of Q)X.#R()}#f(){this.#Z|=z5,this.#b()}#b(){if(this.#Z&uQ)return;let Q=this.#Z;if((Q&p)===QQ)Q&=yQ;this.#Z=Q|uQ,this.#l()}#h(Q=""){if(Q==="ENOTDIR"||Q==="EPERM")this.#b();else if(Q==="ENOENT")this.#R();else this.children().provisional=0}#I(Q=""){if(Q==="ENOTDIR")this.parent.#b();else if(Q==="ENOENT")this.#R()}#k(Q=""){let X=this.#Z;if(X|=$5,Q==="ENOENT")X|=r;if(Q==="EINVAL"||Q==="UNKNOWN")X&=yQ;if(this.#Z=X,Q==="ENOTDIR"&&this.parent)this.parent.#b()}#g(Q,X){return this.#m(Q,X)||this.#d(Q,X)}#d(Q,X){let Z=h5(Q),V=this.newChild(Q.name,Z,{parent:this}),$=V.#Z&p;if($!==QQ&&$!==wQ&&$!==i)V.#Z|=uQ;return X.unshift(V),X.provisional++,V}#m(Q,X){for(let Z=X.provisional;Z<X.length;Z++){let V=X[Z];if((this.nocase?J5(Q.name):hQ(Q.name))!==V.#O)continue;return this.#q(Q,V,Z,X)}}#q(Q,X,Z,V){let $=X.name;if(X.#Z=X.#Z&yQ|h5(Q),$!==Q.name)X.name=Q.name;if(Z!==V.provisional){if(Z===V.length-1)V.pop();else V.splice(Z,1);V.unshift(X)}return V.provisional++,X}async lstat(){if((this.#Z&r)===0)try{return this.#c(await this.#Q.promises.lstat(this.fullpath())),this}catch(Q){this.#I(Q.code)}}lstatSync(){if((this.#Z&r)===0)try{return this.#c(this.#Q.lstatSync(this.fullpath())),this}catch(Q){this.#I(Q.code)}}#c(Q){let{atime:X,atimeMs:Z,birthtime:V,birthtimeMs:$,blksize:J,blocks:z,ctime:K,ctimeMs:Y,dev:q,gid:W,ino:H,mode:j,mtime:_,mtimeMs:G,nlink:w,rdev:A,size:U,uid:B}=Q;this.#G=X,this.#Y=Z,this.#U=V,this.#F=$,this.#W=J,this.#H=z,this.#P=K,this.#L=Y,this.#V=q,this.#C=W,this.#K=H,this.#$=j,this.#w=_,this.#J=G,this.#X=w,this.#B=A,this.#j=U,this.#z=B;let F=h5(Q);if(this.#Z=this.#Z&yQ|F|S6,F!==i&&F!==QQ&&F!==wQ)this.#Z|=uQ}#y=[];#N=!1;#p(Q){this.#N=!1;let X=this.#y.slice();this.#y.length=0,X.forEach((Z)=>Z(null,Q))}readdirCB(Q,X=!1){if(!this.canReaddir()){if(X)Q(null,[]);else queueMicrotask(()=>Q(null,[]));return}let Z=this.children();if(this.calledReaddir()){let $=Z.slice(0,Z.provisional);if(X)Q(null,$);else queueMicrotask(()=>Q(null,$));return}if(this.#y.push(Q),this.#N)return;this.#N=!0;let V=this.fullpath();this.#Q.readdir(V,{withFileTypes:!0},($,J)=>{if($)this.#h($.code),Z.provisional=0;else{for(let z of J)this.#g(z,Z);this.#u(Z)}this.#p(Z.slice(0,Z.provisional));return})}#i;async readdir(){if(!this.canReaddir())return[];let Q=this.children();if(this.calledReaddir())return Q.slice(0,Q.provisional);let X=this.fullpath();if(this.#i)await this.#i;else{let Z=()=>{};this.#i=new Promise((V)=>Z=V);try{for(let V of await this.#Q.promises.readdir(X,{withFileTypes:!0}))this.#g(V,Q);this.#u(Q)}catch(V){this.#h(V.code),Q.provisional=0}this.#i=void 0,Z()}return Q.slice(0,Q.provisional)}readdirSync(){if(!this.canReaddir())return[];let Q=this.children();if(this.calledReaddir())return Q.slice(0,Q.provisional);let X=this.fullpath();try{for(let Z of this.#Q.readdirSync(X,{withFileTypes:!0}))this.#g(Z,Q);this.#u(Q)}catch(Z){this.#h(Z.code),Q.provisional=0}return Q.slice(0,Q.provisional)}canReaddir(){if(this.#Z&T6)return!1;let Q=p&this.#Z;if(!(Q===i||Q===QQ||Q===wQ))return!1;return!0}shouldWalk(Q,X){return(this.#Z&QQ)===QQ&&!(this.#Z&T6)&&!Q.has(this)&&(!X||X(this))}async realpath(){if(this.#x)return this.#x;if((z5|$5|r)&this.#Z)return;try{let Q=await this.#Q.promises.realpath(this.fullpath());return this.#x=this.resolve(Q)}catch(Q){this.#f()}}realpathSync(){if(this.#x)return this.#x;if((z5|$5|r)&this.#Z)return;try{let Q=this.#Q.realpathSync(this.fullpath());return this.#x=this.resolve(Q)}catch(Q){this.#f()}}[l6](Q){if(Q===this)return;Q.isCWD=!1,this.isCWD=!0;let X=new Set([]),Z=[],V=this;while(V&&V.parent)X.add(V),V.#v=Z.join(this.sep),V.#D=Z.join("/"),V=V.parent,Z.push("..");V=Q;while(V&&V.parent&&!X.has(V))V.#v=void 0,V.#D=void 0,V=V.parent}}class K5 extends f{sep="\\";splitSep=j9;constructor(Q,X=i,Z,V,$,J,z){super(Q,X,Z,V,$,J,z)}newChild(Q,X=i,Z={}){return new K5(Q,X,this.root,this.roots,this.nocase,this.childrenCache(),Z)}getRootString(Q){return g5.parse(Q).root}getRoot(Q){if(Q=W9(Q.toUpperCase()),Q===this.root.name)return this.root;for(let[X,Z]of Object.entries(this.roots))if(this.sameRoot(Q,X))return this.roots[Q]=Z;return this.roots[Q]=new gQ(Q,this).root}sameRoot(Q,X=this.root.name){return Q=Q.toUpperCase().replace(/\//g,"\\").replace(f6,"$1\\"),Q===X}}class Y5 extends f{splitSep="/";sep="/";constructor(Q,X=i,Z,V,$,J,z){super(Q,X,Z,V,$,J,z)}getRootString(Q){return Q.startsWith("/")?"/":""}getRoot(Q){return this.root}newChild(Q,X=i,Z={}){return new Y5(Q,X,this.root,this.roots,this.nocase,this.childrenCache(),Z)}}class m5{root;rootPath;roots;cwd;#Q;#V;#$;nocase;#X;constructor(Q=process.cwd(),X,Z,{nocase:V,childrenCacheSize:$=16384,fs:J=fQ}={}){if(this.#X=y6(J),Q instanceof URL||Q.startsWith("file://"))Q=e8(Q);let z=X.resolve(Q);this.roots=Object.create(null),this.rootPath=this.parseRootPath(z),this.#Q=new d5,this.#V=new d5,this.#$=new c6($);let K=z.substring(this.rootPath.length).split(Z);if(K.length===1&&!K[0])K.pop();if(V===void 0)throw TypeError("must provide nocase setting to PathScurryBase ctor");this.nocase=V,this.root=this.newRoot(this.#X),this.roots[this.rootPath]=this.root;let Y=this.root,q=K.length-1,W=X.sep,H=this.rootPath,j=!1;for(let _ of K){let G=q--;Y=Y.child(_,{relative:Array(G).fill("..").join(W),relativePosix:Array(G).fill("..").join("/"),fullpath:H+=(j?"":W)+_}),j=!0}this.cwd=Y}depth(Q=this.cwd){if(typeof Q==="string")Q=this.cwd.resolve(Q);return Q.depth()}childrenCache(){return this.#$}resolve(...Q){let X="";for(let $=Q.length-1;$>=0;$--){let J=Q[$];if(!J||J===".")continue;if(X=X?`${J}/${X}`:J,this.isAbsolute(J))break}let Z=this.#Q.get(X);if(Z!==void 0)return Z;let V=this.cwd.resolve(X).fullpath();return this.#Q.set(X,V),V}resolvePosix(...Q){let X="";for(let $=Q.length-1;$>=0;$--){let J=Q[$];if(!J||J===".")continue;if(X=X?`${J}/${X}`:J,this.isAbsolute(J))break}let Z=this.#V.get(X);if(Z!==void 0)return Z;let V=this.cwd.resolve(X).fullpathPosix();return this.#V.set(X,V),V}relative(Q=this.cwd){if(typeof Q==="string")Q=this.cwd.resolve(Q);return Q.relative()}relativePosix(Q=this.cwd){if(typeof Q==="string")Q=this.cwd.resolve(Q);return Q.relativePosix()}basename(Q=this.cwd){if(typeof Q==="string")Q=this.cwd.resolve(Q);return Q.name}dirname(Q=this.cwd){if(typeof Q==="string")Q=this.cwd.resolve(Q);return(Q.parent||Q).fullpath()}async readdir(Q=this.cwd,X={withFileTypes:!0}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;let{withFileTypes:Z}=X;if(!Q.canReaddir())return[];else{let V=await Q.readdir();return Z?V:V.map(($)=>$.name)}}readdirSync(Q=this.cwd,X={withFileTypes:!0}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;let{withFileTypes:Z=!0}=X;if(!Q.canReaddir())return[];else if(Z)return Q.readdirSync();else return Q.readdirSync().map((V)=>V.name)}async lstat(Q=this.cwd){if(typeof Q==="string")Q=this.cwd.resolve(Q);return Q.lstat()}lstatSync(Q=this.cwd){if(typeof Q==="string")Q=this.cwd.resolve(Q);return Q.lstatSync()}async readlink(Q=this.cwd,{withFileTypes:X}={withFileTypes:!1}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q.withFileTypes,Q=this.cwd;let Z=await Q.readlink();return X?Z:Z?.fullpath()}readlinkSync(Q=this.cwd,{withFileTypes:X}={withFileTypes:!1}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q.withFileTypes,Q=this.cwd;let Z=Q.readlinkSync();return X?Z:Z?.fullpath()}async realpath(Q=this.cwd,{withFileTypes:X}={withFileTypes:!1}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q.withFileTypes,Q=this.cwd;let Z=await Q.realpath();return X?Z:Z?.fullpath()}realpathSync(Q=this.cwd,{withFileTypes:X}={withFileTypes:!1}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q.withFileTypes,Q=this.cwd;let Z=Q.realpathSync();return X?Z:Z?.fullpath()}async walk(Q=this.cwd,X={}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;let{withFileTypes:Z=!0,follow:V=!1,filter:$,walkFilter:J}=X,z=[];if(!$||$(Q))z.push(Z?Q:Q.fullpath());let K=new Set,Y=(W,H)=>{K.add(W),W.readdirCB((j,_)=>{if(j)return H(j);let G=_.length;if(!G)return H();let w=()=>{if(--G===0)H()};for(let A of _){if(!$||$(A))z.push(Z?A:A.fullpath());if(V&&A.isSymbolicLink())A.realpath().then((U)=>U?.isUnknown()?U.lstat():U).then((U)=>U?.shouldWalk(K,J)?Y(U,w):w());else if(A.shouldWalk(K,J))Y(A,w);else w()}},!0)},q=Q;return new Promise((W,H)=>{Y(q,(j)=>{if(j)return H(j);W(z)})})}walkSync(Q=this.cwd,X={}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;let{withFileTypes:Z=!0,follow:V=!1,filter:$,walkFilter:J}=X,z=[];if(!$||$(Q))z.push(Z?Q:Q.fullpath());let K=new Set([Q]);for(let Y of K){let q=Y.readdirSync();for(let W of q){if(!$||$(W))z.push(Z?W:W.fullpath());let H=W;if(W.isSymbolicLink()){if(!(V&&(H=W.realpathSync())))continue;if(H.isUnknown())H.lstatSync()}if(H.shouldWalk(K,J))K.add(H)}}return z}[Symbol.asyncIterator](){return this.iterate()}iterate(Q=this.cwd,X={}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;return this.stream(Q,X)[Symbol.asyncIterator]()}[Symbol.iterator](){return this.iterateSync()}*iterateSync(Q=this.cwd,X={}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;let{withFileTypes:Z=!0,follow:V=!1,filter:$,walkFilter:J}=X;if(!$||$(Q))yield Z?Q:Q.fullpath();let z=new Set([Q]);for(let K of z){let Y=K.readdirSync();for(let q of Y){if(!$||$(q))yield Z?q:q.fullpath();let W=q;if(q.isSymbolicLink()){if(!(V&&(W=q.realpathSync())))continue;if(W.isUnknown())W.lstatSync()}if(W.shouldWalk(z,J))z.add(W)}}}stream(Q=this.cwd,X={}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;let{withFileTypes:Z=!0,follow:V=!1,filter:$,walkFilter:J}=X,z=new GQ({objectMode:!0});if(!$||$(Q))z.write(Z?Q:Q.fullpath());let K=new Set,Y=[Q],q=0,W=()=>{let H=!1;while(!H){let j=Y.shift();if(!j){if(q===0)z.end();return}q++,K.add(j);let _=(w,A,U=!1)=>{if(w)return z.emit("error",w);if(V&&!U){let B=[];for(let F of A)if(F.isSymbolicLink())B.push(F.realpath().then((v)=>v?.isUnknown()?v.lstat():v));if(B.length){Promise.all(B).then(()=>_(null,A,!0));return}}for(let B of A)if(B&&(!$||$(B))){if(!z.write(Z?B:B.fullpath()))H=!0}q--;for(let B of A){let F=B.realpathCached()||B;if(F.shouldWalk(K,J))Y.push(F)}if(H&&!z.flowing)z.once("drain",W);else if(!G)W()},G=!0;j.readdirCB(_,!0),G=!1}};return W(),z}streamSync(Q=this.cwd,X={}){if(typeof Q==="string")Q=this.cwd.resolve(Q);else if(!(Q instanceof f))X=Q,Q=this.cwd;let{withFileTypes:Z=!0,follow:V=!1,filter:$,walkFilter:J}=X,z=new GQ({objectMode:!0}),K=new Set;if(!$||$(Q))z.write(Z?Q:Q.fullpath());let Y=[Q],q=0,W=()=>{let H=!1;while(!H){let j=Y.shift();if(!j){if(q===0)z.end();return}q++,K.add(j);let _=j.readdirSync();for(let G of _)if(!$||$(G)){if(!z.write(Z?G:G.fullpath()))H=!0}q--;for(let G of _){let w=G;if(G.isSymbolicLink()){if(!(V&&(w=G.realpathSync())))continue;if(w.isUnknown())w.lstatSync()}if(w.shouldWalk(K,J))Y.push(w)}}if(H&&!z.flowing)z.once("drain",W)};return W(),z}chdir(Q=this.cwd){let X=this.cwd;this.cwd=typeof Q==="string"?this.cwd.resolve(Q):Q,this.cwd[l6](X)}}class gQ extends m5{sep="\\";constructor(Q=process.cwd(),X={}){let{nocase:Z=!0}=X;super(Q,g5,"\\",{...X,nocase:Z});this.nocase=Z;for(let V=this.cwd;V;V=V.parent)V.nocase=this.nocase}parseRootPath(Q){return g5.parse(Q).root.toUpperCase()}newRoot(Q){return new K5(this.rootPath,QQ,void 0,this.roots,this.nocase,this.childrenCache(),{fs:Q})}isAbsolute(Q){return Q.startsWith("/")||Q.startsWith("\\")||/^[a-z]:(\/|\\)/i.test(Q)}}class dQ extends m5{sep="/";constructor(Q=process.cwd(),X={}){let{nocase:Z=!1}=X;super(Q,t8,"/",{...X,nocase:Z});this.nocase=Z}parseRootPath(Q){return"/"}newRoot(Q){return new Y5(this.rootPath,QQ,void 0,this.roots,this.nocase,this.childrenCache(),{fs:Q})}isAbsolute(Q){return Q.startsWith("/")}}class q5 extends dQ{constructor(Q=process.cwd(),X={}){let{nocase:Z=!0}=X;super(Q,{...X,nocase:Z})}}var VX=process.platform==="win32"?K5:Y5,p6=process.platform==="win32"?gQ:process.platform==="darwin"?q5:dQ;var G9=(Q)=>Q.length>=1,w9=(Q)=>Q.length>=1;class vQ{#Q;#V;#$;length;#X;#z;#C;#B;#W;#K;#j=!0;constructor(Q,X,Z,V){if(!G9(Q))throw TypeError("empty pattern list");if(!w9(X))throw TypeError("empty glob list");if(X.length!==Q.length)throw TypeError("mismatched pattern list and glob list lengths");if(this.length=Q.length,Z<0||Z>=this.length)throw TypeError("index out of range");if(this.#Q=Q,this.#V=X,this.#$=Z,this.#X=V,this.#$===0){if(this.isUNC()){let[$,J,z,K,...Y]=this.#Q,[q,W,H,j,..._]=this.#V;if(Y[0]==="")Y.shift(),_.shift();let G=[$,J,z,K,""].join("/"),w=[q,W,H,j,""].join("/");this.#Q=[G,...Y],this.#V=[w,..._],this.length=this.#Q.length}else if(this.isDrive()||this.isAbsolute()){let[$,...J]=this.#Q,[z,...K]=this.#V;if(J[0]==="")J.shift(),K.shift();let Y=$+"/",q=z+"/";this.#Q=[Y,...J],this.#V=[q,...K],this.length=this.#Q.length}}}pattern(){return this.#Q[this.#$]}isString(){return typeof this.#Q[this.#$]==="string"}isGlobstar(){return this.#Q[this.#$]===x}isRegExp(){return this.#Q[this.#$]instanceof RegExp}globString(){return this.#C=this.#C||(this.#$===0?this.isAbsolute()?this.#V[0]+this.#V.slice(1).join("/"):this.#V.join("/"):this.#V.slice(this.#$).join("/"))}hasMore(){return this.length>this.#$+1}rest(){if(this.#z!==void 0)return this.#z;if(!this.hasMore())return this.#z=null;return this.#z=new vQ(this.#Q,this.#V,this.#$+1,this.#X),this.#z.#K=this.#K,this.#z.#W=this.#W,this.#z.#B=this.#B,this.#z}isUNC(){let Q=this.#Q;return this.#W!==void 0?this.#W:this.#W=this.#X==="win32"&&this.#$===0&&Q[0]===""&&Q[1]===""&&typeof Q[2]==="string"&&!!Q[2]&&typeof Q[3]==="string"&&!!Q[3]}isDrive(){let Q=this.#Q;return this.#B!==void 0?this.#B:this.#B=this.#X==="win32"&&this.#$===0&&this.length>1&&typeof Q[0]==="string"&&/^[a-z]:$/i.test(Q[0])}isAbsolute(){let Q=this.#Q;return this.#K!==void 0?this.#K:this.#K=Q[0]===""&&Q.length>1||this.isDrive()||this.isUNC()}root(){let Q=this.#Q[0];return typeof Q==="string"&&this.isAbsolute()&&this.#$===0?Q:""}checkFollowGlobstar(){return!(this.#$===0||!this.isGlobstar()||!this.#j)}markFollowGlobstar(){if(this.#$===0||!this.isGlobstar()||!this.#j)return!1;return this.#j=!1,!0}}var U9=typeof process==="object"&&process&&typeof process.platform==="string"?process.platform:"linux";class mQ{relative;relativeChildren;absolute;absoluteChildren;platform;mmopts;constructor(Q,{nobrace:X,nocase:Z,noext:V,noglobstar:$,platform:J=U9}){this.relative=[],this.absolute=[],this.relativeChildren=[],this.absoluteChildren=[],this.platform=J,this.mmopts={dot:!0,nobrace:X,nocase:Z,noext:V,noglobstar:$,optimizationLevel:2,platform:J,nocomment:!0,nonegate:!0};for(let z of Q)this.add(z)}add(Q){let X=new l(Q,this.mmopts);for(let Z=0;Z<X.set.length;Z++){let V=X.set[Z],$=X.globParts[Z];if(!V||!$)throw Error("invalid pattern object");while(V[0]==="."&&$[0]===".")V.shift(),$.shift();let J=new vQ(V,$,0,this.platform),z=new l(J.globString(),this.mmopts),K=$[$.length-1]==="**",Y=J.isAbsolute();if(Y)this.absolute.push(z);else this.relative.push(z);if(K)if(Y)this.absoluteChildren.push(z);else this.relativeChildren.push(z)}}ignored(Q){let X=Q.fullpath(),Z=`${X}/`,V=Q.relative()||".",$=`${V}/`;for(let J of this.relative)if(J.match(V)||J.match($))return!0;for(let J of this.absolute)if(J.match(X)||J.match(Z))return!0;return!1}childrenIgnored(Q){let X=Q.fullpath()+"/",Z=(Q.relative()||".")+"/";for(let V of this.relativeChildren)if(V.match(Z))return!0;for(let V of this.absoluteChildren)if(V.match(X))return!0;return!1}}class c5{store;constructor(Q=new Map){this.store=Q}copy(){return new c5(new Map(this.store))}hasWalked(Q,X){return this.store.get(Q.fullpath())?.has(X.globString())}storeWalked(Q,X){let Z=Q.fullpath(),V=this.store.get(Z);if(V)V.add(X.globString());else this.store.set(Z,new Set([X.globString()]))}}class i6{store=new Map;add(Q,X,Z){let V=(X?2:0)|(Z?1:0),$=this.store.get(Q);this.store.set(Q,$===void 0?V:V&$)}entries(){return[...this.store.entries()].map(([Q,X])=>[Q,!!(X&2),!!(X&1)])}}class n6{store=new Map;add(Q,X){if(!Q.canReaddir())return;let Z=this.store.get(Q);if(Z){if(!Z.find((V)=>V.globString()===X.globString()))Z.push(X)}else this.store.set(Q,[X])}get(Q){let X=this.store.get(Q);if(!X)throw Error("attempting to walk unknown path");return X}entries(){return this.keys().map((Q)=>[Q,this.store.get(Q)])}keys(){return[...this.store.keys()].filter((Q)=>Q.canReaddir())}}class cQ{hasWalkedCache;matches=new i6;subwalks=new n6;patterns;follow;dot;opts;constructor(Q,X){this.opts=Q,this.follow=!!Q.follow,this.dot=!!Q.dot,this.hasWalkedCache=X?X.copy():new c5}processPatterns(Q,X){this.patterns=X;let Z=X.map((V)=>[Q,V]);for(let[V,$]of Z){this.hasWalkedCache.storeWalked(V,$);let J=$.root(),z=$.isAbsolute()&&this.opts.absolute!==!1;if(J){V=V.resolve(J==="/"&&this.opts.root!==void 0?this.opts.root:J);let W=$.rest();if(!W){this.matches.add(V,!0,!1);continue}else $=W}if(V.isENOENT())continue;let K,Y,q=!1;while(typeof(K=$.pattern())==="string"&&(Y=$.rest()))V=V.resolve(K),$=Y,q=!0;if(K=$.pattern(),Y=$.rest(),q){if(this.hasWalkedCache.hasWalked(V,$))continue;this.hasWalkedCache.storeWalked(V,$)}if(typeof K==="string"){let W=K===".."||K===""||K===".";this.matches.add(V.resolve(K),z,W);continue}else if(K===x){if(!V.isSymbolicLink()||this.follow||$.checkFollowGlobstar())this.subwalks.add(V,$);let W=Y?.pattern(),H=Y?.rest();if(!Y||(W===""||W===".")&&!H)this.matches.add(V,z,W===""||W===".");else if(W===".."){let j=V.parent||V;if(!H)this.matches.add(j,z,!0);else if(!this.hasWalkedCache.hasWalked(j,H))this.subwalks.add(j,H)}}else if(K instanceof RegExp)this.subwalks.add(V,$)}return this}subwalkTargets(){return this.subwalks.keys()}child(){return new cQ(this.opts,this.hasWalkedCache)}filterEntries(Q,X){let Z=this.subwalks.get(Q),V=this.child();for(let $ of X)for(let J of Z){let z=J.isAbsolute(),K=J.pattern(),Y=J.rest();if(K===x)V.testGlobstar($,J,Y,z);else if(K instanceof RegExp)V.testRegExp($,K,Y,z);else V.testString($,K,Y,z)}return V}testGlobstar(Q,X,Z,V){if(this.dot||!Q.name.startsWith(".")){if(!X.hasMore())this.matches.add(Q,V,!1);if(Q.canReaddir()){if(this.follow||!Q.isSymbolicLink())this.subwalks.add(Q,X);else if(Q.isSymbolicLink()){if(Z&&X.checkFollowGlobstar())this.subwalks.add(Q,Z);else if(X.markFollowGlobstar())this.subwalks.add(Q,X)}}}if(Z){let $=Z.pattern();if(typeof $==="string"&&$!==".."&&$!==""&&$!==".")this.testString(Q,$,Z.rest(),V);else if($===".."){let J=Q.parent||Q;this.subwalks.add(J,Z)}else if($ instanceof RegExp)this.testRegExp(Q,$,Z.rest(),V)}}testRegExp(Q,X,Z,V){if(!X.test(Q.name))return;if(!Z)this.matches.add(Q,V,!1);else this.subwalks.add(Q,Z)}testString(Q,X,Z,V){if(!Q.isNamed(X))return;if(!Z)this.matches.add(Q,V,!1);else this.subwalks.add(Q,Z)}}var A9=(Q,X)=>typeof Q==="string"?new mQ([Q],X):Array.isArray(Q)?new mQ(Q,X):Q;class l5{path;patterns;opts;seen=new Set;paused=!1;aborted=!1;#Q=[];#V;#$;signal;maxDepth;includeChildMatches;constructor(Q,X,Z){if(this.patterns=Q,this.path=X,this.opts=Z,this.#$=!Z.posix&&Z.platform==="win32"?"\\":"/",this.includeChildMatches=Z.includeChildMatches!==!1,Z.ignore||!this.includeChildMatches){if(this.#V=A9(Z.ignore??[],Z),!this.includeChildMatches&&typeof this.#V.add!=="function")throw Error("cannot ignore child matches, ignore lacks add() method.")}if(this.maxDepth=Z.maxDepth||1/0,Z.signal)this.signal=Z.signal,this.signal.addEventListener("abort",()=>{this.#Q.length=0})}#X(Q){return this.seen.has(Q)||!!this.#V?.ignored?.(Q)}#z(Q){return!!this.#V?.childrenIgnored?.(Q)}pause(){this.paused=!0}resume(){if(this.signal?.aborted)return;this.paused=!1;let Q=void 0;while(!this.paused&&(Q=this.#Q.shift()))Q()}onResume(Q){if(this.signal?.aborted)return;if(!this.paused)Q();else this.#Q.push(Q)}async matchCheck(Q,X){if(X&&this.opts.nodir)return;let Z;if(this.opts.realpath){if(Z=Q.realpathCached()||await Q.realpath(),!Z)return;Q=Z}let $=Q.isUnknown()||this.opts.stat?await Q.lstat():Q;if(this.opts.follow&&this.opts.nodir&&$?.isSymbolicLink()){let J=await $.realpath();if(J&&(J.isUnknown()||this.opts.stat))await J.lstat()}return this.matchCheckTest($,X)}matchCheckTest(Q,X){return Q&&(this.maxDepth===1/0||Q.depth()<=this.maxDepth)&&(!X||Q.canReaddir())&&(!this.opts.nodir||!Q.isDirectory())&&(!this.opts.nodir||!this.opts.follow||!Q.isSymbolicLink()||!Q.realpathCached()?.isDirectory())&&!this.#X(Q)?Q:void 0}matchCheckSync(Q,X){if(X&&this.opts.nodir)return;let Z;if(this.opts.realpath){if(Z=Q.realpathCached()||Q.realpathSync(),!Z)return;Q=Z}let $=Q.isUnknown()||this.opts.stat?Q.lstatSync():Q;if(this.opts.follow&&this.opts.nodir&&$?.isSymbolicLink()){let J=$.realpathSync();if(J&&(J?.isUnknown()||this.opts.stat))J.lstatSync()}return this.matchCheckTest($,X)}matchFinish(Q,X){if(this.#X(Q))return;if(!this.includeChildMatches&&this.#V?.add){let $=`${Q.relativePosix()}/**`;this.#V.add($)}let Z=this.opts.absolute===void 0?X:this.opts.absolute;this.seen.add(Q);let V=this.opts.mark&&Q.isDirectory()?this.#$:"";if(this.opts.withFileTypes)this.matchEmit(Q);else if(Z){let $=this.opts.posix?Q.fullpathPosix():Q.fullpath();this.matchEmit($+V)}else{let $=this.opts.posix?Q.relativePosix():Q.relative(),J=this.opts.dotRelative&&!$.startsWith(".."+this.#$)?"."+this.#$:"";this.matchEmit(!$?"."+V:J+$+V)}}async match(Q,X,Z){let V=await this.matchCheck(Q,Z);if(V)this.matchFinish(V,X)}matchSync(Q,X,Z){let V=this.matchCheckSync(Q,Z);if(V)this.matchFinish(V,X)}walkCB(Q,X,Z){if(this.signal?.aborted)Z();this.walkCB2(Q,X,new cQ(this.opts),Z)}walkCB2(Q,X,Z,V){if(this.#z(Q))return V();if(this.signal?.aborted)V();if(this.paused){this.onResume(()=>this.walkCB2(Q,X,Z,V));return}Z.processPatterns(Q,X);let $=1,J=()=>{if(--$===0)V()};for(let[z,K,Y]of Z.matches.entries()){if(this.#X(z))continue;$++,this.match(z,K,Y).then(()=>J())}for(let z of Z.subwalkTargets()){if(this.maxDepth!==1/0&&z.depth()>=this.maxDepth)continue;$++;let K=z.readdirCached();if(z.calledReaddir())this.walkCB3(z,K,Z,J);else z.readdirCB((Y,q)=>this.walkCB3(z,q,Z,J),!0)}J()}walkCB3(Q,X,Z,V){Z=Z.filterEntries(Q,X);let $=1,J=()=>{if(--$===0)V()};for(let[z,K,Y]of Z.matches.entries()){if(this.#X(z))continue;$++,this.match(z,K,Y).then(()=>J())}for(let[z,K]of Z.subwalks.entries())$++,this.walkCB2(z,K,Z.child(),J);J()}walkCBSync(Q,X,Z){if(this.signal?.aborted)Z();this.walkCB2Sync(Q,X,new cQ(this.opts),Z)}walkCB2Sync(Q,X,Z,V){if(this.#z(Q))return V();if(this.signal?.aborted)V();if(this.paused){this.onResume(()=>this.walkCB2Sync(Q,X,Z,V));return}Z.processPatterns(Q,X);let $=1,J=()=>{if(--$===0)V()};for(let[z,K,Y]of Z.matches.entries()){if(this.#X(z))continue;this.matchSync(z,K,Y)}for(let z of Z.subwalkTargets()){if(this.maxDepth!==1/0&&z.depth()>=this.maxDepth)continue;$++;let K=z.readdirSync();this.walkCB3Sync(z,K,Z,J)}J()}walkCB3Sync(Q,X,Z,V){Z=Z.filterEntries(Q,X);let $=1,J=()=>{if(--$===0)V()};for(let[z,K,Y]of Z.matches.entries()){if(this.#X(z))continue;this.matchSync(z,K,Y)}for(let[z,K]of Z.subwalks.entries())$++,this.walkCB2Sync(z,K,Z.child(),J);J()}}class H5 extends l5{matches=new Set;constructor(Q,X,Z){super(Q,X,Z)}matchEmit(Q){this.matches.add(Q)}async walk(){if(this.signal?.aborted)throw this.signal.reason;if(this.path.isUnknown())await this.path.lstat();return await new Promise((Q,X)=>{this.walkCB(this.path,this.patterns,()=>{if(this.signal?.aborted)X(this.signal.reason);else Q(this.matches)})}),this.matches}walkSync(){if(this.signal?.aborted)throw this.signal.reason;if(this.path.isUnknown())this.path.lstatSync();return this.walkCBSync(this.path,this.patterns,()=>{if(this.signal?.aborted)throw this.signal.reason}),this.matches}}class W5 extends l5{results;constructor(Q,X,Z){super(Q,X,Z);this.results=new GQ({signal:this.signal,objectMode:!0}),this.results.on("drain",()=>this.resume()),this.results.on("resume",()=>this.resume())}matchEmit(Q){if(this.results.write(Q),!this.results.flowing)this.pause()}stream(){let Q=this.path;if(Q.isUnknown())Q.lstat().then(()=>{this.walkCB(Q,this.patterns,()=>this.results.end())});else this.walkCB(Q,this.patterns,()=>this.results.end());return this.results}streamSync(){if(this.path.isUnknown())this.path.lstatSync();return this.walkCBSync(this.path,this.patterns,()=>this.results.end()),this.results}}var L9=typeof process==="object"&&process&&typeof process.platform==="string"?process.platform:"linux";class XQ{absolute;cwd;root;dot;dotRelative;follow;ignore;magicalBraces;mark;matchBase;maxDepth;nobrace;nocase;nodir;noext;noglobstar;pattern;platform;realpath;scurry;stat;signal;windowsPathsNoEscape;withFileTypes;includeChildMatches;opts;patterns;constructor(Q,X){if(!X)throw TypeError("glob options required");if(this.withFileTypes=!!X.withFileTypes,this.signal=X.signal,this.follow=!!X.follow,this.dot=!!X.dot,this.dotRelative=!!X.dotRelative,this.nodir=!!X.nodir,this.mark=!!X.mark,!X.cwd)this.cwd="";else if(X.cwd instanceof URL||X.cwd.startsWith("file://"))X.cwd=B9(X.cwd);if(this.cwd=X.cwd||"",this.root=X.root,this.magicalBraces=!!X.magicalBraces,this.nobrace=!!X.nobrace,this.noext=!!X.noext,this.realpath=!!X.realpath,this.absolute=X.absolute,this.includeChildMatches=X.includeChildMatches!==!1,this.noglobstar=!!X.noglobstar,this.matchBase=!!X.matchBase,this.maxDepth=typeof X.maxDepth==="number"?X.maxDepth:1/0,this.stat=!!X.stat,this.ignore=X.ignore,this.withFileTypes&&this.absolute!==void 0)throw Error("cannot set absolute and withFileTypes:true");if(typeof Q==="string")Q=[Q];if(this.windowsPathsNoEscape=!!X.windowsPathsNoEscape||X.allowWindowsEscape===!1,this.windowsPathsNoEscape)Q=Q.map((K)=>K.replace(/\\/g,"/"));if(this.matchBase){if(X.noglobstar)throw TypeError("base matching requires globstar");Q=Q.map((K)=>K.includes("/")?K:`./**/${K}`)}if(this.pattern=Q,this.platform=X.platform||L9,this.opts={...X,platform:this.platform},X.scurry){if(this.scurry=X.scurry,X.nocase!==void 0&&X.nocase!==X.scurry.nocase)throw Error("nocase option contradicts provided scurry option")}else{let K=X.platform==="win32"?gQ:X.platform==="darwin"?q5:X.platform?dQ:p6;this.scurry=new K(this.cwd,{nocase:X.nocase,fs:X.fs})}this.nocase=this.scurry.nocase;let Z=this.platform==="darwin"||this.platform==="win32",V={...X,dot:this.dot,matchBase:this.matchBase,nobrace:this.nobrace,nocase:this.nocase,nocaseMagicOnly:Z,nocomment:!0,noext:this.noext,nonegate:!0,optimizationLevel:2,platform:this.platform,windowsPathsNoEscape:this.windowsPathsNoEscape,debug:!!this.opts.debug},$=this.pattern.map((K)=>new l(K,V)),[J,z]=$.reduce((K,Y)=>{return K[0].push(...Y.set),K[1].push(...Y.globParts),K},[[],[]]);this.patterns=J.map((K,Y)=>{let q=z[Y];if(!q)throw Error("invalid pattern object");return new vQ(K,q,0,this.platform)})}async walk(){return[...await new H5(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walk()]}walkSync(){return[...new H5(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).walkSync()]}stream(){return new W5(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).stream()}streamSync(){return new W5(this.patterns,this.scurry.cwd,{...this.opts,maxDepth:this.maxDepth!==1/0?this.maxDepth+this.scurry.cwd.depth():1/0,platform:this.platform,nocase:this.nocase,includeChildMatches:this.includeChildMatches}).streamSync()}iterateSync(){return this.streamSync()[Symbol.iterator]()}[Symbol.iterator](){return this.iterateSync()}iterate(){return this.stream()[Symbol.asyncIterator]()}[Symbol.asyncIterator](){return this.iterate()}}var p5=(Q,X={})=>{if(!Array.isArray(Q))Q=[Q];for(let Z of Q)if(new l(Z,X).hasMagic())return!0;return!1};function _5(Q,X={}){return new XQ(Q,X).streamSync()}function a6(Q,X={}){return new XQ(Q,X).stream()}function r6(Q,X={}){return new XQ(Q,X).walkSync()}async function o6(Q,X={}){return new XQ(Q,X).walk()}function G5(Q,X={}){return new XQ(Q,X).iterateSync()}function s6(Q,X={}){return new XQ(Q,X).iterate()}var v9=_5,F9=Object.assign(a6,{sync:_5}),O9=G5,C9=Object.assign(s6,{sync:G5}),M9=Object.assign(r6,{stream:_5,iterate:G5}),j5=Object.assign(o6,{glob:o6,globSync:r6,sync:M9,globStream:a6,stream:F9,globStreamSync:_5,streamSync:v9,globIterate:s6,iterate:C9,globIterateSync:G5,iterateSync:O9,Glob:XQ,hasMagic:p5,escape:AQ,unescape:o});j5.glob=j5;var R9={name:"Read",description:"Reads a file from the local filesystem. You can access any file directly by using this tool.",input_schema:{type:"object",properties:{file_path:{type:"string",description:"The absolute path to the file to read"},offset:{type:"number",description:"The line number to start reading from (1-based)"},limit:{type:"number",description:"The number of lines to read"}},required:["file_path"]},handler:async(Q,X)=>{let Z=Q.file_path,V=Q.offset||1,$=Q.limit||2000;try{let K=(await Bun.file(Z).text()).split(`
|
|
30
|
-
`),Y=Math.max(0,V-1),q=Math.min(K.length,Y+$);return{content:K.slice(Y,q).map((j,_)=>`${Y+_+1} ${j}`).join(`
|
|
31
|
-
`)}}catch(J){return{content:`Error reading file: ${J instanceof Error?J.message:String(J)}`,is_error:!0}}}},P9={name:"Write",description:"Writes a file to the local filesystem. This tool will overwrite the existing file if there is one at the provided path.",input_schema:{type:"object",properties:{file_path:{type:"string",description:"The absolute path to the file to write"},content:{type:"string",description:"The content to write to the file"}},required:["file_path","content"]},handler:async(Q,X)=>{let{file_path:Z,content:V}=Q;try{return await Bun.write(Z,V),{content:`Successfully wrote to ${Z}`}}catch($){return{content:`Error writing file: ${$ instanceof Error?$.message:String($)}`,is_error:!0}}}},D9={name:"Edit",description:"Performs exact string replacements in files. Use this tool to modify existing files.",input_schema:{type:"object",properties:{file_path:{type:"string",description:"The absolute path to the file to modify"},old_string:{type:"string",description:"The text to replace"},new_string:{type:"string",description:"The text to replace it with"},replace_all:{type:"boolean",description:"Replace all occurrences (default false)"}},required:["file_path","old_string","new_string"]},handler:async(Q,X)=>{let{file_path:Z,old_string:V,new_string:$}=Q,J=Q.replace_all||!1;try{let K=await Bun.file(Z).text();if(J){let Y=K;K=K.split(V).join($);let q=(Y.match(new RegExp(x9(V),"g"))||[]).length;if(q===0)return{content:"Error: String not found in file",is_error:!0};return await Bun.write(Z,K),{content:`Successfully replaced ${q} occurrences`}}else{let Y=K.indexOf(V);if(Y===-1)return{content:"Error: String not found in file",is_error:!0};if(K.indexOf(V,Y+1)!==-1)return{content:"Error: String appears multiple times in file. Use replace_all or provide more context.",is_error:!0};return K=K.replace(V,$),await Bun.write(Z,K),{content:`Successfully edited ${Z}`}}}catch(z){return{content:`Error editing file: ${z instanceof Error?z.message:String(z)}`,is_error:!0}}}};function x9(Q){return Q.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}var N9={name:"Bash",description:"Executes a given bash command with optional timeout. Working directory persists between commands.",input_schema:{type:"object",properties:{command:{type:"string",description:"The command to execute"},timeout:{type:"number",description:"Optional timeout in milliseconds (max 600000)"},description:{type:"string",description:"Clear, concise description of what this command does"}},required:["command"]},handler:async(Q,X)=>{let Z=Q.command,V=Q.timeout||120000;try{let $=Bun.spawnSync(["sh","-c",Z],{cwd:X.workingDirectory,timeout:V,maxBuffer:31457280}),J=$.stdout?.toString()||"",z=$.stderr?.toString()||"";if($.exitCode!==0)return{content:`Exit code: ${$.exitCode}
|
|
32
|
-
${J}
|
|
33
|
-
${z}`.trim(),is_error:!0};return{content:J||"(no output)"}}catch($){return{content:`Error executing command: ${$ instanceof Error?$.message:String($)}`,is_error:!0}}}},I9={name:"Glob",description:"Fast file pattern matching tool that works with any codebase size. Supports glob patterns.",input_schema:{type:"object",properties:{pattern:{type:"string",description:"The glob pattern to match files"},path:{type:"string",description:"The directory to search (default: current directory)"}},required:["pattern"]},handler:async(Q,X)=>{let Z=Q.pattern,V=Q.path||X.workingDirectory;try{let $=await j5(Z,{cwd:V,absolute:!0,nodir:!0});if($.length===0)return{content:"No files found matching pattern"};return{content:$.sort().join(`
|
|
34
|
-
`)}}catch($){return{content:`Error searching files: ${$ instanceof Error?$.message:String($)}`,is_error:!0}}}},k9={name:"Grep",description:"A powerful search tool built on ripgrep. Supports full regex syntax.",input_schema:{type:"object",properties:{pattern:{type:"string",description:"The regular expression pattern to search for"},path:{type:"string",description:"File or directory to search"},glob:{type:"string",description:"Glob pattern to filter files"},output_mode:{type:"string",enum:["content","files_with_matches","count"],description:"Output mode (default: content)"},"-i:":{type:"boolean",description:"Case insensitive search"},"-C:":{type:"number",description:"Context lines around match"},head_limit:{type:"number",description:"Maximum number of results"}},required:["pattern"]},handler:async(Q,X)=>{let Z=Q.pattern,V=Q.path||X.workingDirectory,$=Q.glob,J=Q.output_mode||"content",z=Q["-i:"],K=Q["-C:"],Y=Q.head_limit;try{let q=["--json"];if(z)q.push("-i");if(K)q.push("-C",String(K));if($)q.push("--glob",$);if(J==="files_with_matches")q.push("--files-with-matches");if(J==="count")q.push("--count");q.push(Z,V);let H=Bun.spawnSync(["rg",...q],{cwd:X.workingDirectory,maxBuffer:10485760}).stdout?.toString()||"";if(!H.trim())return{content:"No matches found"};if(J==="content"){let j=H.trim().split(`
|
|
35
|
-
`),_=[];for(let G of j.slice(0,Y||100))try{let w=JSON.parse(G);if(w.type==="match"){let A=w.data?.path?.text||"",U=w.data?.line_number||0,B=w.data?.lines?.text||"";_.push(`${A}:${U}:${B.trim()}`)}}catch{_.push(G)}return{content:_.join(`
|
|
36
|
-
`)||"No matches found"}}return{content:H.trim()}}catch(q){return{content:`Error searching: ${q instanceof Error?q.message:String(q)}`,is_error:!0}}}},S9=[R9,P9,D9,N9,I9,k9];function TX(Q){return S9.find((X)=>X.name===Q)}import{spawn as T9}from"child_process";class E9{hooks=new Map;timeout;constructor(Q=60000){this.timeout=Q}register(Q,X){if(!this.hooks.has(Q))this.hooks.set(Q,[]);this.hooks.get(Q)?.push(X)}registerAll(Q){for(let[X,Z]of Object.entries(Q))for(let V of Z)this.register(X,V)}async execute(Q,X){let Z=this.hooks.get(Q);if(!Z||Z.length===0)return{decision:"allow"};let V={...X,event:Q,timestamp:Date.now()};for(let $ of Z){if($.enabled===!1)continue;let J=await this.executeHook($,V);if(J.decision==="deny"||J.decision==="block")return J;if(J.modified_input)Object.assign(X,J.modified_input)}return{decision:"allow"}}async executeHook(Q,X){let Z=Q.timeout||this.timeout;try{return await new Promise(($,J)=>{let z=T9(Q.command,[],{shell:!0,stdio:["pipe","pipe","pipe"]}),K="",Y="";z.stdout?.on("data",(q)=>{K+=q.toString()}),z.stderr?.on("data",(q)=>{Y+=q.toString()}),z.on("close",(q)=>{if(q===0)try{let W=JSON.parse(K);$(W)}catch{$({decision:"allow"})}else if(q===1)$({decision:"deny",reason:Y||"Hook denied execution"});else if(q===2)$({decision:"block",reason:Y||"Hook blocked execution"});else $({decision:"allow"})}),z.on("error",(q)=>{$({decision:"allow",reason:`Hook error: ${q.message}`})}),z.stdin?.write(JSON.stringify(X)),z.stdin?.end(),setTimeout(()=>{z.kill(),$({decision:"allow",reason:"Hook timeout"})},Z)})}catch(V){return{decision:"allow",reason:`Hook execution failed: ${V instanceof Error?V.message:String(V)}`}}}getHooks(Q){return this.hooks.get(Q)||[]}clear(Q){if(Q)this.hooks.delete(Q);else this.hooks.clear()}}var yX={validateWrite:{event:"PreToolUse",command:`node -e '
|
|
37
|
-
const input = JSON.parse(require("fs").readFileSync(0, "utf8"));
|
|
38
|
-
if (input.tool_name === "Write") {
|
|
39
|
-
const path = input.tool_input.file_path;
|
|
40
|
-
if (path.includes("..") || path.startsWith("/etc/")) {
|
|
41
|
-
console.log(JSON.stringify({ decision: "deny", reason: "Unsafe path" }));
|
|
42
|
-
process.exit(1);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
console.log(JSON.stringify({ decision: "allow" }));
|
|
46
|
-
'`,timeout:5000,enabled:!1},logToolUse:{event:"PostToolUse",command:`node -e '
|
|
47
|
-
const input = JSON.parse(require("fs").readFileSync(0, "utf8"));
|
|
48
|
-
console.error(\`[LOG] Tool: \${input.tool_name}\`);
|
|
49
|
-
console.log(JSON.stringify({ decision: "allow" }));
|
|
50
|
-
'`,timeout:5000,enabled:!1}},fX={PreToolUse:"Before a tool is executed. Can modify input or deny execution.",PostToolUse:"After a tool successfully executes. Can process result.",PostToolUseFailure:"After a tool fails. Can handle error or retry.",Stop:"When the agent stops (end_turn, max_tokens, error).",UserPromptSubmit:"When user submits a prompt. Can modify or reject.",SessionStart:"When a new session starts.",SessionEnd:"When a session ends.",Notification:"When a notification is sent.",ConfigChange:"When configuration changes.",WorktreeCreate:"When a git worktree is created."},uX={ALLOW:0,DENY:1,BLOCK:2};import{readFileSync as b9,existsSync as t6,readdirSync as y9}from"fs";import{join as f9}from"path";function u9(Q,X="project"){if(!t6(Q))return null;let Z=b9(Q,"utf-8"),V=Q.split("/").pop()?.replace(/\.md$/i,"")||"unknown",$=Z.match(/^---\n([\s\S]*?)\n---\n([\s\S]*)$/);if(!$)return{path:Q,name:V,description:"",prompt:Z.trim(),source:X};let J=$[1]??"",z=$[2]??"",K=h9(J);return{path:Q,name:K.name||V,description:K.description||"",prompt:z.trim(),tools:K.tools,model:K.model,color:K.color,source:X}}function h9(Q){let X={},Z=Q.split(`
|
|
51
|
-
`);for(let V of Z){let $=V.match(/^(\w+):\s*(.*)$/);if($){let J=$[1];if(!J)continue;let z=$[2]??"";if(z.startsWith("["))try{X[J]=JSON.parse(z)}catch{X[J]=z}else if(z==="true")X[J]=!0;else if(z==="false")X[J]=!1;else if(/^\d+$/.test(z))X[J]=parseInt(z,10);else if(/^\d+\.\d+$/.test(z))X[J]=parseFloat(z);else X[J]=z}}return X}class g9{skills=new Map;loadFromDirectory(Q,X="project"){if(!t6(Q))return 0;let Z=0,V=y9(Q);for(let $ of V)if($.endsWith(".md")){let J=u9(f9(Q,$),X);if(J)this.skills.set(J.name,J),Z++}return Z}get(Q){return this.skills.get(Q)}getAll(){return Array.from(this.skills.values())}has(Q){return this.skills.has(Q)}getNames(){return Array.from(this.skills.keys())}}function cX(Q){return`
|
|
52
|
-
<skill-loading>
|
|
53
|
-
You are operating with the "${Q.name}" skill loaded.
|
|
54
|
-
|
|
55
|
-
${Q.description?`Description: ${Q.description}
|
|
56
|
-
`:""}
|
|
57
|
-
${Q.prompt}
|
|
58
|
-
</skill-loading>
|
|
59
|
-
`.trim()}var lX=[{path:"built-in://commit",name:"commit",description:"Create a git commit with the staged changes",prompt:`Analyze the staged changes and create a git commit.
|
|
60
|
-
|
|
61
|
-
Steps:
|
|
62
|
-
1. Run \`git diff --staged\` to see staged changes
|
|
63
|
-
2. Run \`git log --oneline -5\` to understand commit message style
|
|
64
|
-
3. Create a commit message following conventional commits format
|
|
65
|
-
4. Include "Co-Authored-By: Claude <noreply@anthropic.com>" if applicable
|
|
66
|
-
5. Run \`git commit\` with the message`,tools:["Bash"],model:"sonnet",source:"built-in"},{path:"built-in://review-pr",name:"review-pr",description:"Review a pull request",prompt:`Review the current pull request and provide feedback.
|
|
67
|
-
|
|
68
|
-
Steps:
|
|
69
|
-
1. Use \`gh pr view\` to get PR details
|
|
70
|
-
2. Use \`gh pr diff\` to see the changes
|
|
71
|
-
3. Analyze the code for:
|
|
72
|
-
- Bugs and potential issues
|
|
73
|
-
- Code quality and style
|
|
74
|
-
- Test coverage
|
|
75
|
-
- Documentation
|
|
76
|
-
4. Provide constructive feedback
|
|
77
|
-
5. Approve or request changes as appropriate`,tools:["Bash"],model:"sonnet",source:"built-in"},{path:"built-in://mcp-builder",name:"mcp-builder",description:"Guide for creating MCP servers",prompt:`Help the user build MCP (Model Context Protocol) servers.
|
|
78
|
-
|
|
79
|
-
MCP servers enable LLMs to interact with external services through well-designed tools.
|
|
80
|
-
|
|
81
|
-
Key concepts:
|
|
82
|
-
1. Use FastMCP (Python) or MCP SDK (TypeScript)
|
|
83
|
-
2. Define tools with clear input schemas
|
|
84
|
-
3. Return structured content
|
|
85
|
-
4. Handle errors gracefully
|
|
86
|
-
|
|
87
|
-
Transport types:
|
|
88
|
-
- stdio: Local process communication
|
|
89
|
-
- HTTP: REST API with JSON-RPC
|
|
90
|
-
- SSE: Server-Sent Events for streaming
|
|
91
|
-
- WebSocket: Bidirectional communication`,tools:["Read","Write","Edit","Bash"],model:"sonnet",source:"built-in"},{path:"built-in://claude-hooks",name:"claude-hooks",description:"Guide for Claude Code hooks",prompt:`Help the user configure Claude Code hooks.
|
|
92
|
-
|
|
93
|
-
Hooks are user-defined shell commands that execute at specific points during Claude Code's lifecycle.
|
|
94
|
-
|
|
95
|
-
Available events:
|
|
96
|
-
- PreToolUse: Before a tool executes
|
|
97
|
-
- PostToolUse: After a tool succeeds
|
|
98
|
-
- PostToolUseFailure: After a tool fails
|
|
99
|
-
- Stop: When agent stops
|
|
100
|
-
- UserPromptSubmit: When user submits prompt
|
|
101
|
-
- SessionStart/SessionEnd: Session lifecycle
|
|
102
|
-
|
|
103
|
-
Exit codes:
|
|
104
|
-
- 0: Allow execution
|
|
105
|
-
- 1: Deny and show stderr
|
|
106
|
-
- 2: Block silently`,tools:["Read","Write","Edit"],model:"sonnet",source:"built-in"}];function pX(Q){return Q.match(/^\/(\w+)(?:\s+(.*))?$/)?.[1]??null}function iX(Q){return Q.match(/^\/\w+\s+(.*)$/)?.[1]??""}import{spawn as i5}from"child_process";import{mkdirSync as e6,rmSync as d9,existsSync as Q7,readFileSync as m9}from"fs";import{join as lQ}from"path";class c9{teams=new Map;teammates=new Map;messageQueue=new Map;storagePath;constructor(Q="~/.claude/teams"){if(this.storagePath=Q.replace("~",process.env.HOME||""),!Q7(this.storagePath))e6(this.storagePath,{recursive:!0});this.loadTeams()}createTeam(Q){let X={...Q,status:"active"};this.teams.set(Q.name,X);for(let Z of Q.teammates)this.teammates.set(Z.teammateId,Z);return this.persistTeam(X).catch((Z)=>{console.error(`Failed to persist team ${Q.name}:`,Z)}),X}getTeam(Q){return this.teams.get(Q)}listTeams(){return Array.from(this.teams.values())}deleteTeam(Q){let X=this.teams.get(Q);if(X){for(let V of X.teammates)this.teammates.delete(V.teammateId),this.messageQueue.delete(V.teammateId);this.teams.delete(Q);let Z=lQ(this.storagePath,Q);try{d9(Z,{recursive:!0,force:!0})}catch(V){console.error(`Failed to delete team directory ${Z}:`,V)}}}getTeammate(Q){return this.teammates.get(Q)}updateTeammateStatus(Q,X){let Z=this.teammates.get(Q);if(Z)Z.status=X}async spawnTeammate(Q,X={}){let{session:Z,workingDir:V=process.cwd()}=X;if(!process.env.TMUX)await this.spawnInTerminal(Q,{session:Z,workingDir:V});else await this.spawnInTmux(Q,{session:Z,workingDir:V});this.updateTeammateStatus(Q.teammateId,"in_progress")}async spawnInTerminal(Q,X){let Z=["bun","run","src/cli.ts","--teammate-mode","--agent-id",Q.teammateId,"--agent-name",Q.name,"--team-name",Q.teamName,"--agent-color",Q.color];if(Q.planModeRequired)Z.push("--permission-mode","plan");if(process.platform==="darwin"){let V=`
|
|
107
|
-
tell application "Terminal"
|
|
108
|
-
do script "cd ${X.workingDir} && ${Z.join(" ")}"
|
|
109
|
-
activate
|
|
110
|
-
end tell
|
|
111
|
-
`;i5("osascript",["-e",V])}else i5("xterm",["-e",Z.join(" ")])}async spawnInTmux(Q,X){let Z=X.session||process.env.TMUX?.split(",")[0]?.split(":")[0]||"claude";await this.tmuxCommand(["split-window","-t",Z,"-c",X.workingDir]);let V=await this.tmuxCommand(["display-message","-p","#{pane_id}"]);if(V)Q.paneId=V.trim();let $=["bun","run","src/cli.ts","--teammate-mode","--agent-id",Q.teammateId,"--agent-name",Q.name,"--team-name",Q.teamName];await this.tmuxCommand(["send-keys","-t",Q.paneId||"",$.join(" "),"Enter"])}async tmuxCommand(Q){return new Promise((X)=>{let Z=i5("tmux",Q),V="";Z.stdout?.on("data",($)=>{V+=$.toString()}),Z.on("close",()=>{X(V)})})}broadcast(Q,X,Z){let V=this.teams.get(Q);if(!V)return;let $={type:"broadcast",from:Z||"system",content:X,timestamp:Date.now()};for(let J of V.teammates){if(Z&&J.teammateId===Z)continue;let z=this.messageQueue.get(J.teammateId)||[];z.push($),this.messageQueue.set(J.teammateId,z)}}sendDirect(Q,X,Z){let V={type:"direct",from:X,to:Q,content:Z,timestamp:Date.now()},$=this.messageQueue.get(Q)||[];$.push(V),this.messageQueue.set(Q,$)}getMessages(Q){let X=this.messageQueue.get(Q)||[];return this.messageQueue.delete(Q),X}hasMessages(Q){let X=this.messageQueue.get(Q);return X!==void 0&&X.length>0}peekMessages(Q){return this.messageQueue.get(Q)||[]}clearMessages(Q){this.messageQueue.delete(Q)}getMessageCount(Q){return this.messageQueue.get(Q)?.length||0}async persistTeam(Q){let X=lQ(this.storagePath,Q.name),Z=lQ(X,"config.json");if(!Q7(X))e6(X,{recursive:!0});await Bun.write(lQ(X,".gitkeep"),"");let V={name:Q.name,description:Q.description,teammates:Q.teammates,taskListId:Q.taskListId,status:Q.status,coordination:Q.coordination,updatedAt:Date.now()};await Bun.write(Z,JSON.stringify(V,null,2))}loadTeams(){let Q=new Bun.Glob("**/config.json");try{let X=Array.from(Q.scanSync(this.storagePath));for(let Z of X)try{let V=lQ(this.storagePath,Z);if(Bun.file(V).size===0)continue;let z=m9(V,"utf-8"),K=JSON.parse(z);if(!K.name||!K.teammates||!Array.isArray(K.teammates))continue;let Y={name:K.name,description:K.description||"",teammates:K.teammates,taskListId:K.taskListId||"",status:K.status||"active",coordination:K.coordination||{dependencyOrder:[],communicationProtocol:"broadcast",taskAssignmentStrategy:"manual"}};this.teams.set(Y.name,Y);for(let q of Y.teammates)this.teammates.set(q.teammateId,q)}catch(V){}}catch(X){if(X.code!=="ENOENT");}}async persistAllTeams(){let Q=Array.from(this.teams.values()).map((X)=>this.persistTeam(X));await Promise.all(Q)}}var sX={architect:(Q)=>({name:"architect",teamName:Q,color:"blue",prompt:`You are an architect on the ${Q} team.
|
|
112
|
-
Your role is to design and plan the technical architecture.
|
|
113
|
-
Focus on:
|
|
114
|
-
- System design and component relationships
|
|
115
|
-
- API contracts and interfaces
|
|
116
|
-
- Data models and schemas
|
|
117
|
-
- Trade-offs and design decisions`,planModeRequired:!0,status:"pending"}),implementer:(Q)=>({name:"implementer",teamName:Q,color:"green",prompt:`You are an implementer on the ${Q} team.
|
|
118
|
-
Your role is to write clean, working code based on the architecture.
|
|
119
|
-
Focus on:
|
|
120
|
-
- Implementing the designed architecture
|
|
121
|
-
- Writing tests
|
|
122
|
-
- Following coding standards
|
|
123
|
-
- Handling edge cases`,planModeRequired:!1,status:"pending"}),reviewer:(Q)=>({name:"reviewer",teamName:Q,color:"yellow",prompt:`You are a code reviewer on the ${Q} team.
|
|
124
|
-
Your role is to review code changes and provide feedback.
|
|
125
|
-
Focus on:
|
|
126
|
-
- Code quality and readability
|
|
127
|
-
- Potential bugs and issues
|
|
128
|
-
- Performance considerations
|
|
129
|
-
- Test coverage`,planModeRequired:!1,status:"pending"}),tester:(Q)=>({name:"tester",teamName:Q,color:"orange",prompt:`You are a tester on the ${Q} team.
|
|
130
|
-
Your role is to ensure features work correctly.
|
|
131
|
-
Focus on:
|
|
132
|
-
- Writing comprehensive tests
|
|
133
|
-
- Finding edge cases
|
|
134
|
-
- Verifying requirements
|
|
135
|
-
- Reporting bugs`,planModeRequired:!1,status:"pending"})};function l9(){return`teammate_${Date.now()}_${Math.random().toString(36).slice(2,8)}`}function tX(Q){return{...Q,teammateId:l9(),status:"pending"}}
|
|
136
|
-
export{K7 as a,aQ as b,i9 as c,j7 as d,_7 as e,G7 as f,w7 as g,s5 as h,B7 as i,L7 as j,A5 as k,B5 as l,e9 as m,Q0 as n,X0 as o,G0 as p,M5 as q,w0 as r,U0 as s,A0 as t,S7 as u,T7 as v,F0 as w,R9 as x,P9 as y,D9 as z,N9 as A,I9 as B,k9 as C,S9 as D,TX as E,E9 as F,yX as G,fX as H,uX as I,u9 as J,g9 as K,cX as L,lX as M,pX as N,iX as O,c9 as P,sX as Q,l9 as R,tX as S};
|