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

推荐订阅源

雷峰网
雷峰网
B
Blog
博客园_首页
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
C
Check Point Blog
Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
小众软件
小众软件

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
docs: audit and fix 4 pages (sentence-case headings + Rel...
vincentkoc · 2026-05-06 · via Recent Commits to openclaw:main

@@ -21,7 +21,7 @@ resources.

2121

register providers, channels, tools, hooks, or trusted runtimes.

2222

</Note>

232324-

## What Ships Today

24+

## What ships today

25252626

`@openclaw/sdk` ships with:

2727

@@ -54,7 +54,7 @@ The SDK also exports the core types used by those surfaces:

5454

`EnvironmentSelection`, `WorkspaceSelection`, `ApprovalMode`, and related

5555

result types.

565657-

## Connect To A Gateway

57+

## Connect to a Gateway

58585959

Create a client with an explicit Gateway URL, or inject a custom transport for

6060

tests and embedded app runtimes.

@@ -89,7 +89,7 @@ const oc = new OpenClaw({

8989

});

9090

```

919192-

## Run An Agent

92+

## Run an agent

93939494

Use `oc.agents.get(id)` when the app wants an agent handle, then call

9595

`agent.run()`.

@@ -124,7 +124,7 @@ while the run is still active returns `status: "accepted"` instead of pretending

124124

the run itself timed out. Runtime timeouts, aborted runs, and cancelled runs are

125125

normalized into `timed_out` or `cancelled`.

126126127-

## Create And Reuse Sessions

127+

## Create and reuse sessions

128128129129

Use sessions when the app wants durable transcript state.

130130

@@ -147,7 +147,7 @@ await session.patch({ label: "renamed-session" });

147147

await session.compact({ maxLines: 200 });

148148

```

149149150-

## Stream Events

150+

## Stream events

151151152152

The SDK normalizes raw Gateway events into a stable `OpenClawEvent` envelope:

153153

@@ -208,7 +208,7 @@ for await (const event of run.events()) {

208208

For app-wide streams, use `oc.events()`. For raw Gateway frames, use

209209

`oc.rawEvents()`.

210210211-

## Models, Tools, Artifacts, And Approvals

211+

## Models, tools, artifacts, and approvals

212212213213

Model helpers map to current Gateway methods:

214214

@@ -261,7 +261,7 @@ const { environments } = await oc.environments.list();

261261

await oc.environments.status(environments[0].id);

262262

```

263263264-

## Explicitly Unsupported Today

264+

## Explicitly unsupported today

265265266266

The SDK includes names for the product model we want, but it does not silently

267267

pretend Gateway RPCs exist. These calls currently throw explicit unsupported

@@ -282,7 +282,7 @@ the `agent` RPC. If callers pass them, the SDK throws before submitting the run

282282

so work does not accidentally execute with default workspace, runtime,

283283

environment, or approval behavior.

284284285-

## App SDK Versus Plugin SDK

285+

## App SDK vs Plugin SDK

286286287287

Use the App SDK when code lives outside OpenClaw:

288288

@@ -304,7 +304,7 @@ Use the Plugin SDK when code runs inside OpenClaw:

304304

App SDK code should import from `@openclaw/sdk`. Plugin code should import from

305305

documented `openclaw/plugin-sdk/*` subpaths. Do not mix the two contracts.

306306307-

## Related Docs

307+

## Related

308308309309

- [OpenClaw App SDK API design](/reference/openclaw-sdk-api-design)

310310

- [Gateway RPC reference](/reference/rpc)