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

推荐订阅源

雷峰网
雷峰网
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
U
Unit 42
罗磊的独立博客
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏
F
Fortinet All Blogs
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
博客园 - 【当耐特】
H
Help Net Security
The GitHub Blog
The GitHub 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
fix(ci): repair main checks · openclaw/openclaw@260e8e2
steipete · 2026-05-30 · via Recent Commits to openclaw:main

@@ -556,7 +556,7 @@ public struct MessageActionParams: Codable, Sendable {

556556

sessionkey: String?,

557557

sessionid: String?,

558558

inboundturnkind: String? = nil,

559-

agentid: String?,

559+

agentid: String? = nil,

560560

toolcontext: [String: AnyCodable]?,

561561

idempotencykey: String)

562562

{

@@ -617,7 +617,7 @@ public struct SendParams: Codable, Sendable {

617617

gifplayback: Bool?,

618618

channel: String?,

619619

accountid: String?,

620-

agentid: String?,

620+

agentid: String? = nil,

621621

replytoid: String?,

622622

threadid: String?,

623623

forcedocument: Bool?,

@@ -765,7 +765,7 @@ public struct AgentParams: Codable, Sendable {

765765766766

public init(

767767

message: String,

768-

agentid: String?,

768+

agentid: String? = nil,

769769

provider: String?,

770770

model: String?,

771771

to: String?,

@@ -893,7 +893,7 @@ public struct AgentIdentityParams: Codable, Sendable {

893893

public let sessionkey: String?

894894895895

public init(

896-

agentid: String?,

896+

agentid: String? = nil,

897897

sessionkey: String?)

898898

{

899899

self.agentid = agentid

@@ -1617,7 +1617,7 @@ public struct SessionsListParams: Codable, Sendable {

16171617

includelastmessage: Bool?,

16181618

label: String?,

16191619

spawnedby: String?,

1620-

agentid: String?,

1620+

agentid: String? = nil,

16211621

search: String?)

16221622

{

16231623

self.limit = limit

@@ -1741,7 +1741,7 @@ public struct SessionsResolveParams: Codable, Sendable {

17411741

key: String?,

17421742

sessionid: String?,

17431743

label: String?,

1744-

agentid: String?,

1744+

agentid: String? = nil,

17451745

spawnedby: String?,

17461746

includeglobal: Bool?,

17471747

includeunknown: Bool?)

@@ -2066,7 +2066,7 @@ public struct SessionsCreateParams: Codable, Sendable {

2066206620672067

public init(

20682068

key: String?,

2069-

agentid: String?,

2069+

agentid: String? = nil,

20702070

label: String?,

20712071

model: String?,

20722072

parentsessionkey: String?,

@@ -2511,7 +2511,7 @@ public struct TaskSummary: Codable, Sendable {

25112511

runtime: String?,

25122512

status: AnyCodable,

25132513

title: String?,

2514-

agentid: String?,

2514+

agentid: String? = nil,

25152515

sessionkey: String?,

25162516

childsessionkey: String?,

25172517

ownerkey: String?,

@@ -2585,7 +2585,7 @@ public struct TasksListParams: Codable, Sendable {

2585258525862586

public init(

25872587

status: AnyCodable?,

2588-

agentid: String?,

2588+

agentid: String? = nil,

25892589

sessionkey: String?,

25902590

limit: Int?,

25912591

cursor: String?)

@@ -4775,7 +4775,7 @@ public struct CommandsListParams: Codable, Sendable {

47754775

public let includeargs: Bool?

4776477647774777

public init(

4778-

agentid: String?,

4778+

agentid: String? = nil,

47794779

provider: String?,

47804780

scope: AnyCodable?,

47814781

includeargs: Bool?)

@@ -4812,7 +4812,7 @@ public struct SkillsStatusParams: Codable, Sendable {

48124812

public let agentid: String?

4813481348144814

public init(

4815-

agentid: String?)

4815+

agentid: String? = nil)

48164816

{

48174817

self.agentid = agentid

48184818

}

@@ -4827,7 +4827,7 @@ public struct ToolsCatalogParams: Codable, Sendable {

48274827

public let includeplugins: Bool?

4828482848294829

public init(

4830-

agentid: String?,

4830+

agentid: String? = nil,

48314831

includeplugins: Bool?)

48324832

{

48334833

self.agentid = agentid

@@ -4961,7 +4961,7 @@ public struct ToolsEffectiveParams: Codable, Sendable {

49614961

public let sessionkey: String

4962496249634963

public init(

4964-

agentid: String?,

4964+

agentid: String? = nil,

49654965

sessionkey: String)

49664966

{

49674967

self.agentid = agentid

@@ -5106,7 +5106,7 @@ public struct ToolsInvokeParams: Codable, Sendable {

51065106

name: String,

51075107

args: [String: AnyCodable]?,

51085108

sessionkey: String?,

5109-

agentid: String?,

5109+

agentid: String? = nil,

51105110

confirm: Bool?,

51115111

idempotencykey: String?)

51125112

{

@@ -5280,7 +5280,7 @@ public struct SkillsSecurityVerdictsParams: Codable, Sendable {

52805280

public let agentid: String?

5281528152825282

public init(

5283-

agentid: String?)

5283+

agentid: String? = nil)

52845284

{

52855285

self.agentid = agentid

52865286

}

@@ -5313,7 +5313,7 @@ public struct SkillsSkillCardParams: Codable, Sendable {

53135313

public let skillkey: String

5314531453155315

public init(

5316-

agentid: String?,

5316+

agentid: String? = nil,

53175317

skillkey: String)

53185318

{

53195319

self.agentid = agentid

@@ -5450,7 +5450,7 @@ public struct CronJob: Codable, Sendable {

5450545054515451

public init(

54525452

id: String,

5453-

agentid: String?,

5453+

agentid: String? = nil,

54545454

sessionkey: String?,

54555455

name: String,

54565456

description: String?,

@@ -5526,7 +5526,7 @@ public struct CronListParams: Codable, Sendable {

55265526

lastrunstatus: AnyCodable?,

55275527

sortby: AnyCodable?,

55285528

sortdir: AnyCodable?,

5529-

agentid: String?)

5529+

agentid: String? = nil)

55305530

{

55315531

self.includedisabled = includedisabled

55325532

self.limit = limit

@@ -5572,7 +5572,7 @@ public struct CronAddParams: Codable, Sendable {

5572557255735573

public init(

55745574

name: String,

5575-

agentid: AnyCodable?,

5575+

agentid: AnyCodable? = nil,

55765576

sessionkey: AnyCodable?,

55775577

description: String?,

55785578

enabled: Bool?,

@@ -5960,7 +5960,7 @@ public struct ExecApprovalRequestParams: Codable, Sendable {

59605960

ask: AnyCodable?,

59615961

warningtext: AnyCodable?,

59625962

commandspans: [[String: AnyCodable]]?,

5963-

agentid: AnyCodable?,

5963+

agentid: AnyCodable? = nil,

59645964

resolvedpath: AnyCodable?,

59655965

sessionkey: AnyCodable?,

59665966

turnsourcechannel: AnyCodable?,

@@ -6067,7 +6067,7 @@ public struct PluginApprovalRequestParams: Codable, Sendable {

60676067

toolname: String?,

60686068

toolcallid: String?,

60696069

alloweddecisions: [String]?,

6070-

agentid: String?,

6070+

agentid: String? = nil,

60716071

sessionkey: String?,

60726072

turnsourcechannel: String?,

60736073

turnsourceto: String?,