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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
D
DataBreaches.Net
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Recent Announcements
Recent Announcements
Jina AI
Jina AI
G
Google Developers Blog
腾讯CDC
博客园_首页
博客园 - 【当耐特】

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: annotate secret target registries · openclaw/op...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -10,52 +10,53 @@ import {

1010

} from "openclaw/plugin-sdk/channel-secret-basic-runtime";

1111

import { getMatrixScopedEnvVarNames } from "./env-vars.js";

121213-

export const secretTargetRegistryEntries = [

14-

{

15-

id: "channels.matrix.accounts.*.accessToken",

16-

targetType: "channels.matrix.accounts.*.accessToken",

17-

configFile: "openclaw.json",

18-

pathPattern: "channels.matrix.accounts.*.accessToken",

19-

secretShape: "secret_input",

20-

expectedResolvedValue: "string",

21-

includeInPlan: true,

22-

includeInConfigure: true,

23-

includeInAudit: true,

24-

},

25-

{

26-

id: "channels.matrix.accounts.*.password",

27-

targetType: "channels.matrix.accounts.*.password",

28-

configFile: "openclaw.json",

29-

pathPattern: "channels.matrix.accounts.*.password",

30-

secretShape: "secret_input",

31-

expectedResolvedValue: "string",

32-

includeInPlan: true,

33-

includeInConfigure: true,

34-

includeInAudit: true,

35-

},

36-

{

37-

id: "channels.matrix.accessToken",

38-

targetType: "channels.matrix.accessToken",

39-

configFile: "openclaw.json",

40-

pathPattern: "channels.matrix.accessToken",

41-

secretShape: "secret_input",

42-

expectedResolvedValue: "string",

43-

includeInPlan: true,

44-

includeInConfigure: true,

45-

includeInAudit: true,

46-

},

47-

{

48-

id: "channels.matrix.password",

49-

targetType: "channels.matrix.password",

50-

configFile: "openclaw.json",

51-

pathPattern: "channels.matrix.password",

52-

secretShape: "secret_input",

53-

expectedResolvedValue: "string",

54-

includeInPlan: true,

55-

includeInConfigure: true,

56-

includeInAudit: true,

57-

},

58-

] satisfies import("openclaw/plugin-sdk/channel-secret-basic-runtime").SecretTargetRegistryEntry[];

13+

export const secretTargetRegistryEntries: import("openclaw/plugin-sdk/channel-secret-basic-runtime").SecretTargetRegistryEntry[] =

14+

[

15+

{

16+

id: "channels.matrix.accounts.*.accessToken",

17+

targetType: "channels.matrix.accounts.*.accessToken",

18+

configFile: "openclaw.json",

19+

pathPattern: "channels.matrix.accounts.*.accessToken",

20+

secretShape: "secret_input",

21+

expectedResolvedValue: "string",

22+

includeInPlan: true,

23+

includeInConfigure: true,

24+

includeInAudit: true,

25+

},

26+

{

27+

id: "channels.matrix.accounts.*.password",

28+

targetType: "channels.matrix.accounts.*.password",

29+

configFile: "openclaw.json",

30+

pathPattern: "channels.matrix.accounts.*.password",

31+

secretShape: "secret_input",

32+

expectedResolvedValue: "string",

33+

includeInPlan: true,

34+

includeInConfigure: true,

35+

includeInAudit: true,

36+

},

37+

{

38+

id: "channels.matrix.accessToken",

39+

targetType: "channels.matrix.accessToken",

40+

configFile: "openclaw.json",

41+

pathPattern: "channels.matrix.accessToken",

42+

secretShape: "secret_input",

43+

expectedResolvedValue: "string",

44+

includeInPlan: true,

45+

includeInConfigure: true,

46+

includeInAudit: true,

47+

},

48+

{

49+

id: "channels.matrix.password",

50+

targetType: "channels.matrix.password",

51+

configFile: "openclaw.json",

52+

pathPattern: "channels.matrix.password",

53+

secretShape: "secret_input",

54+

expectedResolvedValue: "string",

55+

includeInPlan: true,

56+

includeInConfigure: true,

57+

includeInAudit: true,

58+

},

59+

];

59606061

export function collectRuntimeConfigAssignments(params: {

6162

config: { channels?: Record<string, unknown> };