chore: initialize qiming workspace repository

This commit is contained in:
Codex
2026-05-29 14:22:48 +08:00
commit bfd67a0f2c
10750 changed files with 1885711 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/**
* SDK entry point — programmatic API for embedding the GUI Agent MCP Server.
*/
export { createGuiAgentServer, type GuiAgentServer } from './mcp/server.js';
export { loadConfig, type GuiAgentConfig } from './config.js';
export type { ScreenshotResult } from './desktop/screenshot.js';
export type { DisplayDescriptor } from './desktop/display.js';
export type { TaskResult, ProgressInfo, StepRecord } from './agent/taskRunner.js';
// Windows-MCP 管理
export { WindowsMcpManager, healthCheck, waitForReady } from './windowsMcp/index.js';
export type {
WindowsMcpStatus,
ProcessConfig,
ProcessRunner,
StartResult,
StopResult,
WindowsMcpConfig,
HealthCheckOptions,
HealthCheckResult,
} from './windowsMcp/index.js';