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

推荐订阅源

GbyAI
GbyAI
Blog — PlanetScale
Blog — PlanetScale
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
I
InfoQ
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
L
LangChain Blog
F
Fortinet All Blogs
C
Check Point Blog
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
J
Java Code Geeks
月光博客
月光博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
宝玉的分享
宝玉的分享
Jina AI
Jina AI

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
lint: replace raw socket guard with codeql · openclaw/ope...
jesse-merhi · 2026-05-07 · via Recent Commits to openclaw:main

@@ -21,15 +21,20 @@ on:

2121

- plugin-sdk-package-contract

2222

- plugin-sdk-reply-runtime

2323

- provider-runtime-boundary

24+

- raw-socket-boundary

2425

- session-diagnostics-boundary

2526

pull_request:

2627

types: [opened, synchronize, reopened, ready_for_review]

2728

paths:

2829

- ".github/codeql/**"

2930

- ".github/workflows/codeql-critical-quality.yml"

31+

- "extensions/*.ts"

32+

- "extensions/**/*.ts"

3033

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

3134

- "packages/plugin-sdk/**"

3235

- "packages/memory-host-sdk/**"

36+

- "src/*.ts"

37+

- "src/**/*.ts"

3338

- "src/config/**"

3439

- "extensions/bluebubbles/src/**"

3540

- "extensions/discord/src/**"

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

159164

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

160165

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

161166

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

167+

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

162168

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

163169

steps:

164170

- name: Detect PR shard paths

@@ -182,6 +188,7 @@ jobs:

182188

plugin_sdk_package=false

183189

plugin_sdk_reply=false

184190

provider=false

191+

raw_socket=false

185192

session_diagnostics=false

186193187194

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

@@ -196,6 +203,7 @@ jobs:

196203

plugin_sdk_package=true

197204

plugin_sdk_reply=true

198205

provider=true

206+

raw_socket=true

199207

session_diagnostics=true

200208

else

201209

while IFS= read -r file; do

@@ -212,8 +220,12 @@ jobs:

212220

plugin_sdk_package=true

213221

plugin_sdk_reply=true

214222

provider=true

223+

raw_socket=true

215224

session_diagnostics=true

216225

;;

226+

src/*.ts|src/**/*.ts|extensions/*.ts|extensions/**/*.ts)

227+

raw_socket=true

228+

;;

217229

src/acp/control-plane/*|src/agents/cli-runner/*|src/agents/command/*|src/agents/pi-embedded-runner/*|src/agents/tools/*|src/agents/*completion*.ts|src/agents/*transport*.ts|src/agents/model-*.ts|src/agents/openclaw-tools*.ts|src/agents/provider-*.ts|src/agents/session*.ts|src/agents/tool-call*.ts|src/auto-reply/reply/agent-runner*.ts|src/auto-reply/reply/commands*.ts|src/auto-reply/reply/directive-handling*.ts|src/auto-reply/reply/dispatch-*.ts|src/auto-reply/reply/get-reply-run*.ts|src/auto-reply/reply/provider-dispatcher*.ts|src/auto-reply/reply/queue*.ts|src/auto-reply/reply/reply-run-registry*.ts|src/auto-reply/reply/session*.ts)

218230

agent=true

219231

;;

@@ -296,6 +308,7 @@ jobs:

296308

echo "plugin_sdk_package=${plugin_sdk_package}"

297309

echo "plugin_sdk_reply=${plugin_sdk_reply}"

298310

echo "provider=${provider}"

311+

echo "raw_socket=${raw_socket}"

299312

echo "session_diagnostics=${session_diagnostics}"

300313

} >> "${GITHUB_OUTPUT}"

301314

@@ -391,6 +404,62 @@ jobs:

391404

with:

392405

category: "/codeql-critical-quality/channel-runtime-boundary"

393406407+

raw-socket-boundary:

408+

name: Critical Quality (raw-socket-boundary)

409+

needs: quality-shards

410+

if: ${{ needs.quality-shards.outputs.raw_socket == '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 == 'raw-socket-boundary') }}

411+

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

412+

timeout-minutes: 25

413+

steps:

414+

- name: Checkout

415+

uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

416+

with:

417+

submodules: false

418+419+

- name: Initialize CodeQL

420+

uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4

421+

with:

422+

languages: javascript-typescript

423+

config-file: ./.github/codeql/codeql-raw-socket-boundary-critical-quality.yml

424+425+

- name: Analyze

426+

id: analyze

427+

uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4

428+

with:

429+

output: sarif-results

430+

category: "/codeql-critical-quality/raw-socket-boundary"

431+432+

- name: Fail on raw socket findings

433+

env:

434+

SARIF_OUTPUT: sarif-results

435+

run: |

436+

set -euo pipefail

437+

shopt -s nullglob

438+439+

files=("$SARIF_OUTPUT"/*.sarif)

440+

if [ "${#files[@]}" -eq 0 ]; then

441+

echo "No SARIF files found in $SARIF_OUTPUT" >&2

442+

exit 1

443+

fi

444+445+

findings="$(jq -s '[.[].runs[]?.results[]?] | length' "${files[@]}")"

446+

if [ "$findings" = "0" ]; then

447+

exit 0

448+

fi

449+450+

echo "Found ${findings} unclassified raw socket client callsite(s):" >&2

451+

jq -r '

452+

.runs[]?.results[]?

453+

| .locations[0].physicalLocation as $location

454+

| "- "

455+

+ ($location.artifactLocation.uri // "unknown")

456+

+ ":"

457+

+ (($location.region.startLine // 0) | tostring)

458+

+ " "

459+

+ (.message.text // .ruleId)

460+

' "${files[@]}" >&2

461+

exit 1

462+394463

agent-runtime-boundary:

395464

name: Critical Quality (agent-runtime-boundary)

396465

needs: quality-shards