惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 聂微东
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
美团技术团队
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
Jina AI
Jina AI
D
Docker
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat: add Mantis visual task video QA · openclaw/openclaw...
steipete · 2026-05-05 · via Recent Commits to openclaw:main

@@ -4,6 +4,11 @@ import type { MantisDesktopBrowserSmokeOptions } from "./desktop-browser-smoke.r

44

import type { MantisDiscordSmokeOptions } from "./discord-smoke.runtime.js";

55

import type { MantisBeforeAfterOptions } from "./run.runtime.js";

66

import type { MantisSlackDesktopSmokeOptions } from "./slack-desktop-smoke.runtime.js";

7+

import type {

8+

MantisVisualDriverOptions,

9+

MantisVisualTaskOptions,

10+

MantisVisualTaskVisionMode,

11+

} from "./visual-task.runtime.js";

712813

type MantisCliRuntime = typeof import("./cli.runtime.js");

914

@@ -31,6 +36,16 @@ async function runSlackDesktopSmoke(opts: MantisSlackDesktopSmokeOptions) {

3136

await runtime.runMantisSlackDesktopSmokeCommand(opts);

3237

}

333839+

async function runVisualDriver(opts: MantisVisualDriverOptions) {

40+

const runtime = await loadMantisCliRuntime();

41+

await runtime.runMantisVisualDriverCommand(opts);

42+

}

43+44+

async function runVisualTask(opts: MantisVisualTaskOptions) {

45+

const runtime = await loadMantisCliRuntime();

46+

await runtime.runMantisVisualTaskCommand(opts);

47+

}

48+3449

type MantisDiscordSmokeCommanderOptions = {

3550

channelId?: string;

3651

guildId?: string;

@@ -96,10 +111,57 @@ type MantisSlackDesktopSmokeCommanderOptions = {

96111

ttl?: string;

97112

};

98113114+

type MantisVisualTaskCommanderOptions = {

115+

browserUrl?: string;

116+

class?: string;

117+

crabboxBin?: string;

118+

duration?: string;

119+

expectText?: string;

120+

idleTimeout?: string;

121+

keepLease?: boolean;

122+

leaseId?: string;

123+

machineClass?: string;

124+

outputDir?: string;

125+

provider?: string;

126+

repoRoot?: string;

127+

settleMs?: string;

128+

ttl?: string;

129+

visionMode?: MantisVisualTaskVisionMode;

130+

visionModel?: string;

131+

visionPrompt?: string;

132+

visionTimeoutMs?: string;

133+

};

134+135+

type MantisVisualDriverCommanderOptions = {

136+

browserUrl?: string;

137+

crabboxBin?: string;

138+

expectText?: string;

139+

leaseId?: string;

140+

outputDir?: string;

141+

provider?: string;

142+

repoRoot?: string;

143+

settleMs?: string;

144+

visionMode?: MantisVisualTaskVisionMode;

145+

visionModel?: string;

146+

visionPrompt?: string;

147+

visionTimeoutMs?: string;

148+

};

149+99150

function collectString(value: string, previous: string[] = []) {

100151

return [...previous, value];

101152

}

102153154+

function parseOptionalInteger(value: string | undefined, label: string) {

155+

if (value === undefined) {

156+

return undefined;

157+

}

158+

const parsed = Number.parseInt(value, 10);

159+

if (!Number.isFinite(parsed) || String(parsed) !== value || parsed < 0) {

160+

throw new Error(`${label} must be a non-negative integer`);

161+

}

162+

return parsed;

163+

}

164+103165

export function registerMantisCli(qa: Command) {

104166

const mantis = qa

105167

.command("mantis")

@@ -166,7 +228,7 @@ export function registerMantisCli(qa: Command) {

166228

mantis

167229

.command("desktop-browser-smoke")

168230

.description(

169-

"Lease or reuse a Crabbox desktop, open a visible browser, and capture a VNC desktop screenshot",

231+

"Lease or reuse a Crabbox desktop, open a visible browser, and capture VNC desktop screenshot/video artifacts",

170232

)

171233

.option("--repo-root <path>", "Repository root to target when running from a neutral cwd")

172234

.option("--output-dir <path>", "Mantis desktop browser artifact directory")

@@ -199,7 +261,7 @@ export function registerMantisCli(qa: Command) {

199261

mantis

200262

.command("slack-desktop-smoke")

201263

.description(

202-

"Lease or reuse a Crabbox VNC desktop, run Slack QA inside it, open Slack in the browser, and capture a screenshot",

264+

"Lease or reuse a Crabbox VNC desktop, run Slack QA inside it, open Slack in the browser, and capture screenshot/video artifacts",

203265

)

204266

.option("--repo-root <path>", "Repository root to target when running from a neutral cwd")

205267

.option("--output-dir <path>", "Mantis Slack desktop artifact directory")

@@ -249,4 +311,83 @@ export function registerMantisCli(qa: Command) {

249311

ttl: opts.ttl,

250312

});

251313

});

314+315+

mantis

316+

.command("visual-task")

317+

.description(

318+

"Lease or reuse a Crabbox desktop, drive visible browser UI, record MP4, screenshot it, and optionally run image-understanding assertions",

319+

)

320+

.option("--repo-root <path>", "Repository root to target when running from a neutral cwd")

321+

.option("--output-dir <path>", "Mantis visual-task artifact directory")

322+

.option("--crabbox-bin <path>", "Crabbox binary path")

323+

.option("--provider <provider>", "Crabbox provider")

324+

.option("--machine-class <class>", "Crabbox machine class")

325+

.option("--class <class>", "Alias for --machine-class")

326+

.option("--lease-id <id>", "Reuse an existing Crabbox lease")

327+

.option("--idle-timeout <duration>", "Crabbox idle timeout")

328+

.option("--ttl <duration>", "Crabbox maximum lease lifetime")

329+

.option("--keep-lease", "Keep a lease created by this run after a passing task")

330+

.option("--browser-url <url>", "URL to open in the visible browser")

331+

.option("--duration <duration>", "Desktop recording duration")

332+

.option("--settle-ms <ms>", "Milliseconds to wait after launch before screenshot")

333+

.option("--vision-mode <mode>", "Vision mode: image-describe or metadata")

334+

.option("--vision-prompt <text>", "Prompt for image understanding")

335+

.option("--vision-model <provider/model>", "Image-capable provider/model ref")

336+

.option("--vision-timeout-ms <ms>", "Image understanding timeout in milliseconds")

337+

.option("--expect-text <text>", "Case-insensitive text expected in the vision output")

338+

.action(async (opts: MantisVisualTaskCommanderOptions) => {

339+

await runVisualTask({

340+

browserUrl: opts.browserUrl,

341+

crabboxBin: opts.crabboxBin,

342+

duration: opts.duration,

343+

expectText: opts.expectText,

344+

idleTimeout: opts.idleTimeout,

345+

keepLease: opts.keepLease,

346+

leaseId: opts.leaseId,

347+

machineClass: opts.machineClass ?? opts.class,

348+

outputDir: opts.outputDir,

349+

provider: opts.provider,

350+

repoRoot: opts.repoRoot,

351+

settleMs: parseOptionalInteger(opts.settleMs, "--settle-ms"),

352+

ttl: opts.ttl,

353+

visionMode: opts.visionMode,

354+

visionModel: opts.visionModel,

355+

visionPrompt: opts.visionPrompt,

356+

visionTimeoutMs: parseOptionalInteger(opts.visionTimeoutMs, "--vision-timeout-ms"),

357+

});

358+

});

359+360+

mantis

361+

.command("visual-driver")

362+

.description(

363+

"Driver half for Mantis visual-task; launched by Crabbox record --while, then opens browser, screenshots, and runs vision",

364+

)

365+

.option("--repo-root <path>", "Repository root to target when running from a neutral cwd")

366+

.option("--output-dir <path>", "Mantis visual-task artifact directory")

367+

.option("--crabbox-bin <path>", "Crabbox binary path")

368+

.option("--provider <provider>", "Crabbox provider")

369+

.option("--lease-id <id>", "Crabbox lease id")

370+

.option("--browser-url <url>", "URL to open in the visible browser")

371+

.option("--settle-ms <ms>", "Milliseconds to wait after launch before screenshot")

372+

.option("--vision-mode <mode>", "Vision mode: image-describe or metadata")

373+

.option("--vision-prompt <text>", "Prompt for image understanding")

374+

.option("--vision-model <provider/model>", "Image-capable provider/model ref")

375+

.option("--vision-timeout-ms <ms>", "Image understanding timeout in milliseconds")

376+

.option("--expect-text <text>", "Case-insensitive text expected in the vision output")

377+

.action(async (opts: MantisVisualDriverCommanderOptions) => {

378+

await runVisualDriver({

379+

browserUrl: opts.browserUrl,

380+

crabboxBin: opts.crabboxBin,

381+

expectText: opts.expectText,

382+

leaseId: opts.leaseId,

383+

outputDir: opts.outputDir,

384+

provider: opts.provider,

385+

repoRoot: opts.repoRoot,

386+

settleMs: parseOptionalInteger(opts.settleMs, "--settle-ms"),

387+

visionMode: opts.visionMode,

388+

visionModel: opts.visionModel,

389+

visionPrompt: opts.visionPrompt,

390+

visionTimeoutMs: parseOptionalInteger(opts.visionTimeoutMs, "--vision-timeout-ms"),

391+

});

392+

});

252393

}