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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
美团技术团队
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
A
About on SuperTechFans
Recent Announcements
Recent Announcements
D
Docker
Vercel News
Vercel News
Engineering at Meta
Engineering at Meta
腾讯CDC
Martin Fowler
Martin Fowler
阮一峰的网络日志
阮一峰的网络日志

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
Gate private QQBot group commands (#92154) · openclaw/ope...
sliverp · 2026-06-23 · via Recent Commits to openclaw:main
1+

// Qqbot tests cover group command visibility classification.

2+

import { describe, expect, it } from "vitest";

3+

import { classifyCoreCommandForGroup, parseSlashCommandName } from "./command-visibility.js";

4+5+

describe("QQBot command visibility", () => {

6+

it("parses slash command names case-insensitively", () => {

7+

expect(parseSlashCommandName(" /NEW now ")).toBe("new");

8+

expect(parseSlashCommandName("/CONFIG: show")).toBe("config");

9+

expect(parseSlashCommandName("/config:show")).toBe("config");

10+

expect(parseSlashCommandName("/config@bot show")).toBe("config");

11+

expect(parseSlashCommandName("hello")).toBeUndefined();

12+

});

13+14+

it("keeps safe collaboration commands visible in groups", () => {

15+

for (const command of ["/help", "/btw side question", "/stop"]) {

16+

expect(classifyCoreCommandForGroup(command).visibility).toBe("group");

17+

}

18+

});

19+20+

it("keeps group-session controls callable but hidden from group menus", () => {

21+

for (const command of ["/new", "/reset", "/name", "/compact"]) {

22+

expect(classifyCoreCommandForGroup(command).visibility).toBe("hidden");

23+

}

24+

expect(classifyCoreCommandForGroup("/name", "safety").visibility).toBe("hidden");

25+

});

26+27+

it("marks sensitive core commands as private-only in groups", () => {

28+

for (const command of [

29+

"/config",

30+

"/bash",

31+

"/export-session",

32+

"/diagnostics",

33+

"/tts",

34+

"/steer",

35+

"/tell",

36+

"/model",

37+

"/models",

38+

"/status",

39+

"/verbose",

40+

"/v",

41+

"/config: show",

42+

"/model@bot sonnet",

43+

]) {

44+

expect(classifyCoreCommandForGroup(command, "safety").visibility).toBe("private");

45+

}

46+

});

47+48+

it("keeps omitted command level compatible with all mode", () => {

49+

for (const command of ["/config", "/bash", "/new", "/status"]) {

50+

expect(classifyCoreCommandForGroup(command).visibility).not.toBe("private");

51+

}

52+

});

53+54+

it("allows every recognized core command in all mode", () => {

55+

for (const command of ["/config", "/bash", "/new", "/name", "/status"]) {

56+

expect(classifyCoreCommandForGroup(command, "all").visibility).not.toBe("private");

57+

}

58+

});

59+60+

it("keeps urgent stop callable in strict mode", () => {

61+

expect(classifyCoreCommandForGroup("/stop", "strict").visibility).toBe("group");

62+

});

63+64+

it("limits other core commands in strict mode", () => {

65+

expect(classifyCoreCommandForGroup("/new", "strict").visibility).toBe("hidden");

66+

expect(classifyCoreCommandForGroup("/reset", "strict").visibility).toBe("hidden");

67+

expect(classifyCoreCommandForGroup("/name", "strict").visibility).toBe("private");

68+

expect(classifyCoreCommandForGroup("/status", "strict").visibility).toBe("private");

69+

expect(classifyCoreCommandForGroup("/config", "strict").visibility).toBe("private");

70+

});

71+72+

it("keeps strict mode fail-closed for unclassified slash commands", () => {

73+

expect(classifyCoreCommandForGroup("/bot-dynamic", "strict").visibility).toBe("private");

74+

expect(classifyCoreCommandForGroup("/unknown", "strict").visibility).toBe("private");

75+

});

76+77+

it("does not make plugin and unknown slash commands private in all mode", () => {

78+

expect(classifyCoreCommandForGroup("/bot-help").visibility).not.toBe("private");

79+

expect(classifyCoreCommandForGroup("/unknown").visibility).not.toBe("private");

80+

});

81+82+

it("leaves plugin and unknown slash commands to their existing dispatch path in safety mode", () => {

83+

expect(classifyCoreCommandForGroup("/bot-help", "safety").visibility).toBe("unknown");

84+

expect(classifyCoreCommandForGroup("/unknown", "safety").visibility).toBe("unknown");

85+

});

86+

});