@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.
- package/cli/index.cjs +1680 -1118
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/code-tools.d.ts +2 -0
- package/types/cli/launch/dev-server-orchestrator.d.ts +1 -0
- package/types/cli/launch/machine-health.d.ts +4 -0
- package/types/cli/utils/agents/browser-testing-agent.d.ts +2 -0
- package/types/cli/utils/agents/project-configuration-agent.d.ts +2 -0
- package/types/cli/utils/agents/project-setup-agent.d.ts +2 -0
- package/types/cli/utils/agents/setup-project-agent.d.ts +2 -0
- package/types/tsconfig.tsbuildinfo +1 -1
- package/types/cli/code-tools.test.d.ts +0 -1
- package/types/cli/github-cli.test.d.ts +0 -1
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/COPYING +0 -3
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/LICENSE-MIT +0 -21
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/README.md +0 -516
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/UNLICENSE +0 -24
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg +0 -665
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg.ps1 +0 -213
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.bash +0 -783
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.fish +0 -175
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/CHANGELOG.md +0 -1689
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/FAQ.md +0 -1046
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/GUIDE.md +0 -1022
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/rg.1 +0 -2178
- 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 {};
|