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

推荐订阅源

Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Vercel News
Vercel News
Martin Fowler
Martin Fowler
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs

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
fix(doctor): separate platform-incompatible skills · open...
Alix-007 · 2026-06-16 · via Recent Commits to openclaw:main

@@ -26,6 +26,7 @@ function createMockSkill(overrides: Partial<SkillStatusEntry> = {}): SkillStatus

2626

blockedByAllowlist: false,

2727

blockedByAgentFilter: false,

2828

eligible: true,

29+

platformIncompatible: false,

2930

modelVisible: true,

3031

userInvocable: true,

3132

commandVisible: true,

@@ -65,6 +66,7 @@ describe("skills-cli", () => {

6566

description: "Capture UI screenshots",

6667

emoji: "📸",

6768

eligible: true,

69+

platformIncompatible: false,

6870

}),

6971

]);

7072

const output = formatSkillsList(report, {});

@@ -79,6 +81,7 @@ describe("skills-cli", () => {

7981

name: "disabled-skill",

8082

disabled: true,

8183

eligible: false,

84+

platformIncompatible: false,

8285

}),

8386

]);

8487

const output = formatSkillsList(report, {});

@@ -91,6 +94,7 @@ describe("skills-cli", () => {

9194

createMockSkill({

9295

name: "needs-stuff",

9396

eligible: false,

97+

platformIncompatible: false,

9498

missing: {

9599

bins: ["ffmpeg"],

96100

anyBins: ["rg", "grep"],

@@ -113,6 +117,7 @@ describe("skills-cli", () => {

113117

createMockSkill({

114118

name: "not-eligible",

115119

eligible: false,

120+

platformIncompatible: false,

116121

disabled: true,

117122

}),

118123

]);

@@ -127,6 +132,7 @@ describe("skills-cli", () => {

127132

createMockSkill({

128133

name: "agent-excluded",

129134

eligible: true,

135+

platformIncompatible: false,

130136

blockedByAgentFilter: true,

131137

}),

132138

]);

@@ -248,6 +254,7 @@ describe("skills-cli", () => {

248254

createMockSkill({

249255

name: "agent-excluded",

250256

eligible: true,

257+

platformIncompatible: false,

251258

blockedByAgentFilter: true,

252259

}),

253260

]);

@@ -268,6 +275,7 @@ describe("skills-cli", () => {

268275

createMockSkill({

269276

name: "not-ready",

270277

eligible: false,

278+

platformIncompatible: false,

271279

missing: { bins: ["go"], anyBins: [], env: [], config: [], os: [] },

272280

}),

273281

createMockSkill({ name: "disabled", eligible: false, disabled: true }),

@@ -288,6 +296,7 @@ describe("skills-cli", () => {

288296

name: "missing-emoji",

289297

emoji: "🎙\uFE0E",

290298

eligible: false,

299+

platformIncompatible: false,

291300

missing: { bins: ["ffmpeg"], anyBins: [], env: [], config: [], os: [] },

292301

}),

293302

]);

@@ -304,12 +313,14 @@ describe("skills-cli", () => {

304313

createMockSkill({

305314

name: "prompt-hidden",

306315

eligible: true,

316+

platformIncompatible: false,

307317

modelVisible: false,

308318

commandVisible: true,

309319

}),

310320

createMockSkill({

311321

name: "not-assigned",

312322

eligible: true,

323+

platformIncompatible: false,

313324

blockedByAgentFilter: true,

314325

}),

315326

]),

@@ -338,6 +349,7 @@ describe("skills-cli", () => {

338349

createMockSkill({

339350

name: "internal-hidden",

340351

eligible: true,

352+

platformIncompatible: false,

341353

modelVisible: false,

342354

commandVisible: false,

343355

userInvocable: false,

@@ -358,30 +370,35 @@ describe("skills-cli", () => {

358370

createMockSkill({

359371

name: "prompt-hidden",

360372

eligible: true,

373+

platformIncompatible: false,

361374

modelVisible: false,

362375

commandVisible: true,

363376

}),

364377

createMockSkill({

365378

name: "slash-hidden",

366379

eligible: true,

380+

platformIncompatible: false,

367381

modelVisible: true,

368382

userInvocable: false,

369383

commandVisible: false,

370384

}),

371385

createMockSkill({

372386

name: "agent-filtered",

373387

eligible: true,

388+

platformIncompatible: false,

374389

blockedByAgentFilter: true,

375390

}),

376391

createMockSkill({

377392

name: "missing-bin",

378393

eligible: false,

394+

platformIncompatible: false,

379395

missing: { bins: ["missing-tool"], anyBins: [], env: [], config: [], os: [] },

380396

}),

381397

createMockSkill({ name: "disabled", eligible: false, disabled: true }),

382398

createMockSkill({

383399

name: "blocked-bundled",

384400

eligible: false,

401+

platformIncompatible: false,

385402

blockedByAllowlist: true,

386403

}),

387404

]),