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

推荐订阅源

MyScale Blog
MyScale Blog
J
Java Code Geeks
Vercel News
Vercel News
A
About on SuperTechFans
G
Google Developers Blog
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
博客园 - 司徒正美
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园_首页
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
量子位
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
博客园 - 三生石上(FineUI控件)
H
Help Net Security
宝玉的分享
宝玉的分享
博客园 - 叶小钗

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
refactor(qa): share mantis option helpers · openclaw/open...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,10 @@

1+

// Qa Lab plugin module implements shared Mantis option parsing helpers.

2+

export function trimToValue(value: string | undefined) {

3+

const trimmed = value?.trim();

4+

return trimmed && trimmed.length > 0 ? trimmed : undefined;

5+

}

6+
7+

export function isTruthyOptIn(value: string | undefined) {

8+

const normalized = value?.trim().toLowerCase();

9+

return normalized === "1" || normalized === "true" || normalized === "yes";

10+

}

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,7 @@

22

import { spawn, type SpawnOptions } from "node:child_process";

33

import path from "node:path";

44

import { pathExists } from "openclaw/plugin-sdk/security-runtime";

5+

import { trimToValue } from "../mantis-options.runtime.js";

56
67

export type CommandResult = {

78

stderr: string;

@@ -26,11 +27,6 @@ export type CrabboxInspect = {

2627

state?: string;

2728

};

2829
29-

function trimToValue(value: string | undefined) {

30-

const trimmed = value?.trim();

31-

return trimmed && trimmed.length > 0 ? trimmed : undefined;

32-

}

33-
3430

export async function defaultCommandRunner(

3531

command: string,

3632

args: readonly string[],

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import { pathToFileURL } from "node:url";

55

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

66

import { pathExists } from "openclaw/plugin-sdk/security-runtime";

77

import { ensureRepoBoundDirectory, resolveRepoRelativeOutputDir } from "../cli-paths.js";

8+

import { isTruthyOptIn, trimToValue } from "../mantis-options.runtime.js";

89

import {

910

type CommandRunner,

1011

type CrabboxInspect,

@@ -89,16 +90,6 @@ const BROWSER_PROFILE_ARCHIVE_ENV = "OPENCLAW_MANTIS_BROWSER_PROFILE_TGZ_B64";

8990

const BROWSER_PROFILE_DIR_ENV = "OPENCLAW_MANTIS_BROWSER_PROFILE_DIR";

9091

const DEFAULT_VIDEO_DURATION_SECONDS = 10;

9192
92-

function trimToValue(value: string | undefined) {

93-

const trimmed = value?.trim();

94-

return trimmed && trimmed.length > 0 ? trimmed : undefined;

95-

}

96-
97-

function isTruthyOptIn(value: string | undefined) {

98-

const normalized = value?.trim().toLowerCase();

99-

return normalized === "1" || normalized === "true" || normalized === "yes";

100-

}

101-
10293

function defaultOutputDir(repoRoot: string, startedAt: Date) {

10394

const stamp = startedAt.toISOString().replace(/[:.]/gu, "-");

10495

return path.join(repoRoot, ".artifacts", "qa-e2e", "mantis", `desktop-browser-${stamp}`);

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import path from "node:path";

55

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

66

import { fetchWithSsrFGuard } from "openclaw/plugin-sdk/ssrf-runtime";

77

import { ensureRepoBoundDirectory, resolveRepoRelativeOutputDir } from "../cli-paths.js";

8+

import { isTruthyOptIn, trimToValue } from "../mantis-options.runtime.js";

89
910

export type MantisDiscordSmokeOptions = {

1011

channelId?: string;

@@ -100,16 +101,6 @@ const DEFAULT_GUILD_ID_ENV = "OPENCLAW_QA_DISCORD_GUILD_ID";

100101

const DEFAULT_CHANNEL_ID_ENV = "OPENCLAW_QA_DISCORD_CHANNEL_ID";

101102

const QA_REDACT_PUBLIC_METADATA_ENV = "OPENCLAW_QA_REDACT_PUBLIC_METADATA";

102103
103-

function trimToValue(value: string | undefined) {

104-

const trimmed = value?.trim();

105-

return trimmed && trimmed.length > 0 ? trimmed : undefined;

106-

}

107-
108-

function isTruthyOptIn(value: string | undefined) {

109-

const normalized = value?.trim().toLowerCase();

110-

return normalized === "1" || normalized === "true" || normalized === "yes";

111-

}

112-
113104

function assertDiscordSnowflake(value: string, label: string) {

114105

if (!/^\d{17,20}$/u.test(value)) {

115106

throw new Error(`${label} must be a Discord snowflake.`);

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import path from "node:path";

55

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

66

import { ensureRepoBoundDirectory, resolveRepoRelativeOutputDir } from "../cli-paths.js";

77

import { QA_EVIDENCE_FILENAME, validateQaEvidenceSummaryJson } from "../evidence-summary.js";

8+

import { trimToValue } from "../mantis-options.runtime.js";

89
910

export type MantisBeforeAfterOptions = {

1011

allowFailures?: boolean;

@@ -134,11 +135,6 @@ const MANTIS_SCENARIO_CONFIGS: Record<string, MantisScenarioConfig> = {

134135

},

135136

};

136137
137-

function trimToValue(value: string | undefined) {

138-

const trimmed = value?.trim();

139-

return trimmed && trimmed.length > 0 ? trimmed : undefined;

140-

}

141-
142138

function normalizeRequiredLiteral<T extends string>(

143139

value: string | undefined,

144140

defaultValue: T,

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,8 @@ import {

88

acquireQaCredentialLease,

99

startQaCredentialLeaseHeartbeat,

1010

} from "../live-transports/shared/credential-lease.runtime.js";

11+

import { isTruthyOptIn, trimToValue } from "../mantis-options.runtime.js";

12+

import { createPhaseTimer, type MantisPhaseTimings } from "../mantis-phase-timer.runtime.js";

1113

import {

1214

type CommandRunner,

1315

type CrabboxInspect,

@@ -20,7 +22,6 @@ import {

2022

stopCrabbox,

2123

warmupCrabbox,

2224

} from "./crabbox-runtime.js";

23-

import { createPhaseTimer, type MantisPhaseTimings } from "../mantis-phase-timer.runtime.js";

2425
2526

export type MantisSlackDesktopSmokeOptions = {

2627

alternateModel?: string;

@@ -153,16 +154,6 @@ const HYDRATE_MODE_ENV = "OPENCLAW_MANTIS_HYDRATE_MODE";

153154

const SLACK_URL_ENV = "OPENCLAW_MANTIS_SLACK_URL";

154155

const SLACK_CHANNEL_ID_ENV = "OPENCLAW_MANTIS_SLACK_CHANNEL_ID";

155156
156-

function trimToValue(value: string | undefined) {

157-

const trimmed = value?.trim();

158-

return trimmed && trimmed.length > 0 ? trimmed : undefined;

159-

}

160-
161-

function isTruthyOptIn(value: string | undefined) {

162-

const normalized = value?.trim().toLowerCase();

163-

return normalized === "1" || normalized === "true" || normalized === "yes";

164-

}

165-
166157

function normalizeHydrateMode(

167158

value: string | undefined,

168159

): MantisSlackDesktopHydrateMode | undefined {

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,8 @@ import {

88

acquireQaCredentialLease,

99

startQaCredentialLeaseHeartbeat,

1010

} from "../live-transports/shared/credential-lease.runtime.js";

11+

import { isTruthyOptIn, trimToValue } from "../mantis-options.runtime.js";

12+

import { createPhaseTimer, type MantisPhaseTimings } from "../mantis-phase-timer.runtime.js";

1113

import {

1214

type CommandRunner,

1315

type CrabboxInspect,

@@ -20,7 +22,6 @@ import {

2022

stopCrabbox,

2123

warmupCrabbox,

2224

} from "./crabbox-runtime.js";

23-

import { createPhaseTimer, type MantisPhaseTimings } from "../mantis-phase-timer.runtime.js";

2425
2526

export type MantisTelegramDesktopBuilderOptions = {

2627

commandRunner?: CommandRunner;

@@ -126,16 +127,6 @@ const TELEGRAM_PROFILE_ARCHIVE_ENV_NAME_ENV =

126127

"OPENCLAW_MANTIS_TELEGRAM_DESKTOP_PROFILE_ARCHIVE_ENV";

127128

const TELEGRAM_PROFILE_DIR_ENV = "OPENCLAW_MANTIS_TELEGRAM_DESKTOP_PROFILE_DIR";

128129
129-

function trimToValue(value: string | undefined) {

130-

const trimmed = value?.trim();

131-

return trimmed && trimmed.length > 0 ? trimmed : undefined;

132-

}

133-
134-

function isTruthyOptIn(value: string | undefined) {

135-

const normalized = value?.trim().toLowerCase();

136-

return normalized === "1" || normalized === "true" || normalized === "yes";

137-

}

138-
139130

function normalizeHydrateMode(

140131

value: string | undefined,

141132

): MantisTelegramDesktopHydrateMode | undefined {

Original file line numberDiff line numberDiff line change

@@ -4,6 +4,7 @@ import path from "node:path";

44

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

55

import { pathExists, writeExternalFileWithinRoot } from "openclaw/plugin-sdk/security-runtime";

66

import { ensureRepoBoundDirectory, resolveRepoRelativeOutputDir } from "../cli-paths.js";

7+

import { isTruthyOptIn, trimToValue } from "../mantis-options.runtime.js";

78

import {

89

type CommandRunner,

910

type CrabboxInspect,

@@ -141,16 +142,6 @@ const CRABBOX_KEEP_ENV = "OPENCLAW_MANTIS_KEEP_VM";

141142

const CRABBOX_IDLE_TIMEOUT_ENV = "OPENCLAW_MANTIS_CRABBOX_IDLE_TIMEOUT";

142143

const CRABBOX_TTL_ENV = "OPENCLAW_MANTIS_CRABBOX_TTL";

143144
144-

function trimToValue(value: string | undefined) {

145-

const trimmed = value?.trim();

146-

return trimmed && trimmed.length > 0 ? trimmed : undefined;

147-

}

148-
149-

function isTruthyOptIn(value: string | undefined) {

150-

const normalized = value?.trim().toLowerCase();

151-

return normalized === "1" || normalized === "true" || normalized === "yes";

152-

}

153-
154145

function defaultOutputDir(repoRoot: string, startedAt: Date) {

155146

const stamp = startedAt.toISOString().replace(/[:.]/gu, "-");

156147

return path.join(repoRoot, ".artifacts", "qa-e2e", "mantis", `visual-task-${stamp}`);