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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
T
Tailwind CSS Blog
V
Visual Studio Blog
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
量子位
有赞技术团队
有赞技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
Jina AI
Jina AI
雷峰网
雷峰网
博客园 - 【当耐特】
博客园 - 叶小钗
美团技术团队
宝玉的分享
宝玉的分享
IT之家
IT之家

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
test(release): harden npm telegram smoke inputs · opencla...
obviyus · 2026-04-24 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

import { execFile } from "node:child_process";

22

import { randomUUID } from "node:crypto";

33

import fs from "node:fs/promises";

4+

import os from "node:os";

45

import path from "node:path";

56

import { promisify } from "node:util";

67

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";

@@ -969,10 +970,12 @@ async function runInstalledOpenClawTelegramOnboardingPreflight(params: {

969970

openClawCommand: string;

970971

sutToken: string;

971972

}) {

972-

const tempRoot = await fs.mkdtemp(path.join(process.cwd(), ".tmp-openclaw-npm-telegram-"));

973+

const tempRoot = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-npm-telegram-"));

973974

const homeDir = path.join(tempRoot, "home");

974975

const stateDir = path.join(homeDir, ".openclaw");

975976

await fs.mkdir(stateDir, { recursive: true });

977+

const tokenPath = path.join(tempRoot, "sut-token.txt");

978+

await fs.writeFile(tokenPath, params.sutToken, { encoding: "utf8", mode: 0o600 });

976979

const env = {

977980

...process.env,

978981

HOME: homeDir,

@@ -1008,7 +1011,7 @@ async function runInstalledOpenClawTelegramOnboardingPreflight(params: {

10081011

);

10091012

await execFileAsync(

10101013

params.openClawCommand,

1011-

["channels", "add", "--channel", "telegram", "--token", params.sutToken],

1014+

["channels", "add", "--channel", "telegram", "--token-file", tokenPath],

10121015

{ env },

10131016

);

10141017

await execFileAsync(params.openClawCommand, ["doctor", "--non-interactive"], { env });

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,17 @@ DOCKER_TARGET="${OPENCLAW_NPM_TELEGRAM_DOCKER_TARGET:-build}"

99

PACKAGE_SPEC="${OPENCLAW_NPM_TELEGRAM_PACKAGE_SPEC:-openclaw@beta}"

1010

OUTPUT_DIR="${OPENCLAW_NPM_TELEGRAM_OUTPUT_DIR:-.artifacts/qa-e2e/npm-telegram-live}"

1111
12+

validate_openclaw_package_spec() {

13+

local spec="$1"

14+

if [[ "$spec" =~ ^openclaw@(beta|latest|[0-9]{4}\.[1-9][0-9]*\.[1-9][0-9]*(-[1-9][0-9]*|-beta\.[1-9][0-9]*)?)$ ]]; then

15+

return 0

16+

fi

17+

echo "OPENCLAW_NPM_TELEGRAM_PACKAGE_SPEC must be openclaw@beta, openclaw@latest, or an exact OpenClaw release version; got: $spec" >&2

18+

exit 1

19+

}

20+
21+

validate_openclaw_package_spec "$PACKAGE_SPEC"

22+
1223

docker_e2e_build_or_reuse "$IMAGE_NAME" npm-telegram-live "$ROOT_DIR/scripts/e2e/Dockerfile" "$ROOT_DIR" "$DOCKER_TARGET"

1324
1425

mkdir -p "$ROOT_DIR/.artifacts/qa-e2e"

@@ -75,6 +86,10 @@ export PATH="$NPM_CONFIG_PREFIX/bin:$PATH"

7586

export OPENCLAW_NPM_TELEGRAM_REPO_ROOT="/app"

7687
7788

package_spec="${OPENCLAW_NPM_TELEGRAM_PACKAGE_SPEC:?missing OPENCLAW_NPM_TELEGRAM_PACKAGE_SPEC}"

89+

if [[ ! "$package_spec" =~ ^openclaw@(beta|latest|[0-9]{4}\.[1-9][0-9]*\.[1-9][0-9]*(-[1-9][0-9]*|-beta\.[1-9][0-9]*)?)$ ]]; then

90+

echo "OPENCLAW_NPM_TELEGRAM_PACKAGE_SPEC must be openclaw@beta, openclaw@latest, or an exact OpenClaw release version; got: $package_spec" >&2

91+

exit 1

92+

fi

7893

echo "Installing ${package_spec}..."

7994

npm install -g "$package_spec" --no-fund --no-audit

8095
Original file line numberDiff line numberDiff line change

@@ -1,5 +1,6 @@

11

#!/usr/bin/env -S node --import tsx

22
3+

import fs from "node:fs/promises";

34

import path from "node:path";

45

import { runTelegramQaLive } from "../../extensions/qa-lab/src/live-transports/telegram/telegram-live.runtime.ts";

56

import { formatErrorMessage } from "../../src/infra/errors.ts";

@@ -16,11 +17,36 @@ function splitCsv(value: string | undefined) {

1617

.filter((entry) => entry.length > 0);

1718

}

1819
20+

async function resolveTrustedOpenClawCommand(rawCommand: string) {

21+

if (!path.isAbsolute(rawCommand)) {

22+

throw new Error("OPENCLAW_NPM_TELEGRAM_SUT_COMMAND must be an absolute path.");

23+

}

24+

const commandName = path.basename(rawCommand);

25+

if (commandName !== "openclaw" && commandName !== "openclaw.cmd") {

26+

throw new Error(

27+

`OPENCLAW_NPM_TELEGRAM_SUT_COMMAND must point to openclaw; got: ${commandName}`,

28+

);

29+

}

30+

const npmPrefix = process.env.NPM_CONFIG_PREFIX?.trim();

31+

if (!npmPrefix) {

32+

throw new Error("Missing NPM_CONFIG_PREFIX for installed openclaw command validation.");

33+

}

34+

const [realCommand, realPrefix] = await Promise.all([

35+

fs.realpath(rawCommand),

36+

fs.realpath(npmPrefix),

37+

]);

38+

if (realCommand !== realPrefix && !realCommand.startsWith(`${realPrefix}${path.sep}`)) {

39+

throw new Error("OPENCLAW_NPM_TELEGRAM_SUT_COMMAND must resolve inside NPM_CONFIG_PREFIX.");

40+

}

41+

return rawCommand;

42+

}

43+
1944

async function main() {

20-

const sutOpenClawCommand = process.env.OPENCLAW_NPM_TELEGRAM_SUT_COMMAND?.trim();

21-

if (!sutOpenClawCommand) {

45+

const rawSutOpenClawCommand = process.env.OPENCLAW_NPM_TELEGRAM_SUT_COMMAND?.trim();

46+

if (!rawSutOpenClawCommand) {

2247

throw new Error("Missing OPENCLAW_NPM_TELEGRAM_SUT_COMMAND.");

2348

}

49+

const sutOpenClawCommand = await resolveTrustedOpenClawCommand(rawSutOpenClawCommand);

2450
2551

const repoRoot = path.resolve(process.env.OPENCLAW_NPM_TELEGRAM_REPO_ROOT ?? process.cwd());

2652

const outputDir =