@builder.io/dev-tools 1.27.2-dev.202602171351.f28bd13c8 → 1.27.2-dev.202602171425.ed091d7f7

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.
Files changed (32) hide show
  1. package/cli/index.cjs +1680 -1118
  2. package/cli/index.cjs.map +4 -4
  3. package/core/index.cjs +1 -1
  4. package/core/index.mjs +1 -1
  5. package/node/index.cjs +1 -1
  6. package/node/index.mjs +1 -1
  7. package/package.json +1 -1
  8. package/server/index.cjs +2 -2
  9. package/server/index.mjs +2 -2
  10. package/types/cli/code-tools.d.ts +2 -0
  11. package/types/cli/launch/dev-server-orchestrator.d.ts +1 -0
  12. package/types/cli/launch/machine-health.d.ts +4 -0
  13. package/types/cli/utils/agents/browser-testing-agent.d.ts +2 -0
  14. package/types/cli/utils/agents/project-configuration-agent.d.ts +2 -0
  15. package/types/cli/utils/agents/project-setup-agent.d.ts +2 -0
  16. package/types/cli/utils/agents/setup-project-agent.d.ts +2 -0
  17. package/types/tsconfig.tsbuildinfo +1 -1
  18. package/types/cli/code-tools.test.d.ts +0 -1
  19. package/types/cli/github-cli.test.d.ts +0 -1
  20. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/COPYING +0 -3
  21. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/LICENSE-MIT +0 -21
  22. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/README.md +0 -516
  23. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/UNLICENSE +0 -24
  24. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg +0 -665
  25. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg.ps1 +0 -213
  26. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.bash +0 -783
  27. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.fish +0 -175
  28. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/CHANGELOG.md +0 -1689
  29. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/FAQ.md +0 -1046
  30. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/GUIDE.md +0 -1022
  31. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/rg.1 +0 -2178
  32. package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/rg.exe +0 -0
@@ -5,6 +5,7 @@ import type { CodeGenEventEmitter } from "./codegen";
5
5
  import { CodeGenSession } from "./codegen";
6
6
  import type { Credentials } from "./credentials";
7
7
  import type { LocalMCPClientManager } from "./mcp-local";
8
+ import type { createFusionStatusMonitor } from "./launch/machine-health";
8
9
  export interface LLMToolCalls {
9
10
  name: CodeGenTools;
10
11
  input: Record<string, any>;
@@ -34,6 +35,7 @@ export interface ToolContext {
34
35
  session: CodeGenSession;
35
36
  sessionMode: SessionMode;
36
37
  devServerOrchestrator?: DevServerOrchestrator;
38
+ fusionStatusMonitor?: ReturnType<typeof createFusionStatusMonitor>;
37
39
  switchSessionMode: (mode: SessionMode) => void;
38
40
  getAllFiles: (options: {
39
41
  getDotFiles?: boolean;
@@ -31,6 +31,7 @@ export interface DevCommandProcessOptions {
31
31
  export interface DevServerOrchestrator {
32
32
  devCommand: string;
33
33
  setupCommand: string | undefined;
34
+ setupDependencies: SetupDependency[] | undefined;
34
35
  setupState: SetupCommandState;
35
36
  lastServerBody: string | undefined;
36
37
  lastServerStatus: number | undefined;
@@ -4,6 +4,10 @@ import type { FusionConfig, LaunchServerStatus } from "$/ai-utils";
4
4
  interface FusionStatusMonitor {
5
5
  start: () => void;
6
6
  stop: () => void;
7
+ getPeakUsage: () => {
8
+ peakDiskUsage: number | undefined;
9
+ peakMemoryUsage: number | undefined;
10
+ };
7
11
  }
8
12
  export declare function createFusionStatusMonitor(sys: DevToolsSys, credentials: Credentials, fusionConfig: FusionConfig, sharedState: LaunchServerStatus): FusionStatusMonitor | null;
9
13
  export {};
@@ -0,0 +1,2 @@
1
+ import type { CustomAgentDefinition } from "$/ai-utils";
2
+ export declare const BROWSER_TESTING_AGENT: CustomAgentDefinition;
@@ -0,0 +1,2 @@
1
+ import type { CustomAgentDefinition } from "$/ai-utils";
2
+ export declare const PROJECT_CONFIGURATION_AGENT: CustomAgentDefinition;
@@ -0,0 +1,2 @@
1
+ import type { CustomAgentDefinition } from "$/ai-utils";
2
+ export declare const PROJECT_SETUP_AGENT: CustomAgentDefinition;
@@ -0,0 +1,2 @@
1
+ import type { CustomAgentDefinition } from "$/ai-utils";
2
+ export declare const PROJECT_SETUP_AGENT: CustomAgentDefinition;