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

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
P
Proofpoint News Feed
D
Docker
J
Java Code Geeks
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
腾讯CDC
罗磊的独立博客
U
Unit 42
爱范儿
爱范儿
Vercel News
Vercel News
MyScale Blog
MyScale 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
chore(ci): add session CodeQL PR quality guard · openclaw...
vincentkoc · 2026-04-30 · via Recent Commits to openclaw:main

@@ -26,12 +26,22 @@ on:

2626

- "packages/plugin-package-contract/**"

2727

- "packages/plugin-sdk/**"

2828

- "src/channels/**"

29+

- "src/auto-reply/reply/post-compaction-context.ts"

30+

- "src/auto-reply/reply/queue/**"

31+

- "src/auto-reply/reply/startup-context.ts"

32+

- "src/commands/doctor-session-*.ts"

33+

- "src/commands/session-store-targets.ts"

34+

- "src/commands/sessions*.ts"

2935

- "src/gateway/method-scopes.ts"

3036

- "src/gateway/protocol/**"

3137

- "src/gateway/server-methods/**"

3238

- "src/gateway/server-methods.ts"

3339

- "src/gateway/server-methods-list.ts"

40+

- "src/infra/diagnostic-*.ts"

41+

- "src/infra/diagnostics-timeline.ts"

3442

- "src/infra/outbound/**"

43+

- "src/infra/session-delivery-queue*.ts"

44+

- "src/logging/diagnostic*.ts"

3545

- "src/mcp/**"

3646

- "src/model-catalog/**"

3747

- "src/plugin-sdk/**"

@@ -65,6 +75,7 @@ jobs:

6575

plugin: ${{ steps.detect.outputs.plugin }}

6676

plugin_sdk_package: ${{ steps.detect.outputs.plugin_sdk_package }}

6777

provider: ${{ steps.detect.outputs.provider }}

78+

session_diagnostics: ${{ steps.detect.outputs.session_diagnostics }}

6879

steps:

6980

- name: Detect PR shard paths

7081

id: detect

@@ -82,6 +93,7 @@ jobs:

8293

plugin=false

8394

plugin_sdk_package=false

8495

provider=false

96+

session_diagnostics=false

85978698

if [[ "${EVENT_NAME}" != "pull_request" ]]; then

8799

channel=true

@@ -90,6 +102,7 @@ jobs:

90102

plugin=true

91103

plugin_sdk_package=true

92104

provider=true

105+

session_diagnostics=true

93106

else

94107

while IFS= read -r file; do

95108

case "${file}" in

@@ -100,13 +113,21 @@ jobs:

100113

plugin=true

101114

plugin_sdk_package=true

102115

provider=true

116+

session_diagnostics=true

117+

;;

118+

src/auto-reply/reply/post-compaction-context.ts|src/auto-reply/reply/queue/*|src/auto-reply/reply/startup-context.ts|src/commands/doctor-session-*.ts|src/commands/session-store-targets.ts|src/commands/sessions*.ts|src/infra/diagnostic-*.ts|src/infra/diagnostics-timeline.ts|src/infra/session-delivery-queue*.ts|src/logging/diagnostic*.ts)

119+

session_diagnostics=true

103120

;;

104121

src/channels/*)

105122

channel=true

106123

;;

107124

src/gateway/method-scopes.ts|src/gateway/protocol/*|src/gateway/server-methods/*|src/gateway/server-methods.ts|src/gateway/server-methods-list.ts)

108125

gateway=true

109126

;;

127+

src/infra/outbound/base-session-key.ts|src/infra/outbound/delivery-queue*.ts|src/infra/outbound/outbound-session.ts|src/infra/outbound/session-binding*.ts|src/infra/outbound/session-context.ts|src/infra/outbound/targets-session.ts)

128+

mcp_process=true

129+

session_diagnostics=true

130+

;;

110131

src/infra/outbound/*|src/mcp/*|src/process/*)

111132

mcp_process=true

112133

;;

@@ -138,6 +159,7 @@ jobs:

138159

echo "plugin=${plugin}"

139160

echo "plugin_sdk_package=${plugin_sdk_package}"

140161

echo "provider=${provider}"

162+

echo "session_diagnostics=${session_diagnostics}"

141163

} >> "${GITHUB_OUTPUT}"

142164143165

core-auth-secrets:

@@ -299,7 +321,8 @@ jobs:

299321300322

session-diagnostics-boundary:

301323

name: Critical Quality (session-diagnostics-boundary)

302-

if: ${{ github.event_name != 'pull_request' && (github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == 'session-diagnostics-boundary') }}

324+

needs: quality-shards

325+

if: ${{ needs.quality-shards.outputs.session_diagnostics == 'true' && (github.event_name != 'pull_request' || !github.event.pull_request.draft) && (github.event_name == 'pull_request' || github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == 'session-diagnostics-boundary') }}

303326

runs-on: blacksmith-4vcpu-ubuntu-2404

304327

timeout-minutes: 25

305328

steps: