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

推荐订阅源

J
Java Code Geeks
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
宝玉的分享
宝玉的分享
V
V2EX
S
SegmentFault 最新的问题
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
L
LangChain Blog
D
Docker
腾讯CDC

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(plugins): add external package readmes · openclaw/op...
steipete · 2026-05-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,33 @@

1+

# @openclaw/acpx

2+
3+

Official ACP runtime backend for OpenClaw.

4+
5+

ACPx lets OpenClaw run external coding harnesses through the Agent Client Protocol while OpenClaw still owns sessions, channels, delivery, permissions, and Gateway state.

6+
7+

## Install

8+
9+

```bash

10+

openclaw plugins install @openclaw/acpx

11+

```

12+
13+

Restart the Gateway after installing or updating the plugin.

14+
15+

## What it provides

16+
17+

- ACP-backed agent runtime sessions.

18+

- Plugin-owned session and transport management.

19+

- MCP bridge helpers for OpenClaw tools and plugin tools.

20+

- Static runtime assets used by the ACP process bridge.

21+
22+

## Configure

23+
24+

Use the ACP docs for harness-specific setup, permission modes, and model/runtime selection:

25+
26+

- https://docs.openclaw.ai/tools/acp-agents-setup

27+

- https://docs.openclaw.ai/tools/acp-agents

28+
29+

## Package

30+
31+

- Plugin id: `acpx`

32+

- Package: `@openclaw/acpx`

33+

- Minimum OpenClaw host: `2026.4.25`

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,36 @@

1+

# @openclaw/brave-plugin

2+
3+

Official Brave Search provider plugin for OpenClaw.

4+
5+

This plugin registers Brave as a `web_search` provider. It supports normal Brave web search and Brave LLM Context API mode.

6+
7+

## Install

8+
9+

```bash

10+

openclaw plugins install @openclaw/brave-plugin

11+

```

12+
13+

Restart the Gateway after installing or updating the plugin.

14+
15+

## Configure

16+
17+

Store a Brave Search API key in plugin config or expose `BRAVE_API_KEY` to the Gateway:

18+
19+

```bash

20+

openclaw config set plugins.entries.brave.enabled true

21+

openclaw config set tools.web.search.provider brave

22+

```

23+
24+

Provider-specific options live under `plugins.entries.brave.config.webSearch.*`.

25+
26+

## Docs

27+
28+

Full setup, config examples, search modes, and tool parameters:

29+
30+

- https://docs.openclaw.ai/tools/brave-search

31+
32+

## Package

33+
34+

- Plugin id: `brave`

35+

- Package: `@openclaw/brave-plugin`

36+

- Minimum OpenClaw host: `2026.4.10`

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,14 @@

11

# GitHub Copilot agent runtime (OpenClaw plugin)

22
3-

Bundled OpenClaw plugin that registers a `copilot` agent harness backed

4-

by `@github/copilot-sdk` and the GitHub Copilot CLI.

3+

External OpenClaw plugin that registers a `copilot` agent harness backed by `@github/copilot-sdk` and the GitHub Copilot CLI.

4+
5+

## Install

6+
7+

```bash

8+

openclaw plugins install @openclaw/copilot

9+

```

10+
11+

Restart the Gateway after installing or updating the plugin.

512
613

The harness claims the canonical subscription `github-copilot` provider and

714

is opt-in only — selection requires explicit `agentRuntime.id: "copilot"`

@@ -13,3 +20,9 @@ configuration, doctor probes, transcript mirroring, compaction, side

1320

questions, replay, and the supported-surface contract.

1421

See [qa/copilot-capabilities.md](../../qa/copilot-capabilities.md)

1522

for the SDK capability inventory the harness is pinned to.

23+
24+

## Package

25+
26+

- Plugin id: `copilot`

27+

- Package: `@openclaw/copilot`

28+

- Minimum OpenClaw host: `2026.5.28`

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,27 @@

1+

# @openclaw/diagnostics-otel

2+
3+

Official OpenTelemetry diagnostics exporter for OpenClaw.

4+
5+

This plugin exports OpenClaw Gateway traces, metrics, and logs to an OTLP collector for observability stacks such as Grafana, Datadog, Honeycomb, New Relic, Tempo, and compatible collectors.

6+
7+

## Install

8+
9+

```bash

10+

openclaw plugins install @openclaw/diagnostics-otel

11+

```

12+
13+

Restart the Gateway after installing or updating the plugin.

14+
15+

## Configure

16+
17+

Enable the plugin and set the OTLP endpoint in `plugins.entries.diagnostics-otel.config`.

18+
19+

The full config surface, metric names, span names, and collector examples live in the docs:

20+
21+

- https://docs.openclaw.ai/gateway/opentelemetry

22+
23+

## Package

24+
25+

- Plugin id: `diagnostics-otel`

26+

- Package: `@openclaw/diagnostics-otel`

27+

- Minimum OpenClaw host: `2026.4.25`

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,27 @@

1+

# @openclaw/diagnostics-prometheus

2+
3+

Official Prometheus diagnostics exporter for OpenClaw.

4+
5+

This plugin exposes OpenClaw Gateway runtime metrics in Prometheus text format for Prometheus, Grafana, VictoriaMetrics, and compatible scrapers.

6+
7+

## Install

8+
9+

```bash

10+

openclaw plugins install @openclaw/diagnostics-prometheus

11+

```

12+
13+

Restart the Gateway after installing or updating the plugin.

14+
15+

## Configure

16+
17+

Enable the plugin and set the scrape endpoint options in `plugins.entries.diagnostics-prometheus.config`.

18+
19+

The full config surface, metric names, and scrape examples live in the docs:

20+
21+

- https://docs.openclaw.ai/gateway/prometheus

22+
23+

## Package

24+
25+

- Plugin id: `diagnostics-prometheus`

26+

- Package: `@openclaw/diagnostics-prometheus`

27+

- Minimum OpenClaw host: `2026.4.25`

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,28 @@

1+

# @openclaw/diffs-language-pack

2+
3+

Official extended syntax highlighting pack for the OpenClaw Diffs plugin.

4+
5+

The base `@openclaw/diffs` plugin ships a curated language set. Install this package when you want the full Shiki language catalog available in rendered diff viewers and diff image/PDF output.

6+
7+

## Install

8+
9+

```bash

10+

openclaw plugins install @openclaw/diffs-language-pack

11+

```

12+
13+

Restart the Gateway after installing or updating the plugin.

14+
15+

## Use with Diffs

16+
17+

Install `@openclaw/diffs` first, then install this language pack. The language pack contributes static viewer assets; it does not register a separate agent tool.

18+
19+

## Docs

20+
21+

- https://docs.openclaw.ai/tools/diffs

22+

- https://docs.openclaw.ai/plugins/reference/diffs-language-pack

23+
24+

## Package

25+
26+

- Plugin id: `diffs-language-pack`

27+

- Package: `@openclaw/diffs-language-pack`

28+

- Minimum OpenClaw host: `2026.5.27`

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,14 @@

22
33

Read-only diff viewer plugin for **OpenClaw** agents.

44
5+

## Install

6+
7+

```bash

8+

openclaw plugins install @openclaw/diffs

9+

```

10+
11+

Restart the Gateway after installing or updating the plugin.

12+
513

It gives agents one tool, `diffs`, that can:

614
715

- render a gateway-hosted diff viewer for canvas use

@@ -118,6 +126,16 @@ Set plugin-wide defaults in `~/.openclaw/openclaw.json`:

118126
119127

Explicit tool parameters still win over these defaults.

120128
129+

## Docs

130+
131+

- https://docs.openclaw.ai/tools/diffs

132+
133+

## Package

134+
135+

- Plugin id: `diffs`

136+

- Package: `@openclaw/diffs`

137+

- Minimum OpenClaw host: `2026.4.30`

138+
121139

Security options:

122140
123141

- `security.allowRemoteViewer` (default `false`): allows non-loopback access to `/plugins/diffs/view/...` token URLs

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,26 @@

1+

# @openclaw/google-meet

2+
3+

Official Google Meet participant plugin for OpenClaw.

4+
5+

This plugin registers the `google_meet` tool so agents can join Google Meet calls through supported Chrome or Twilio transports.

6+
7+

## Install

8+
9+

```bash

10+

openclaw plugins install @openclaw/google-meet

11+

```

12+
13+

Restart the Gateway after installing or updating the plugin.

14+
15+

## Configure

16+
17+

Enable the plugin and follow the Google Meet docs for browser profile, transport, and call-join setup:

18+
19+

- https://docs.openclaw.ai/plugins/google-meet

20+
21+

## Package

22+
23+

- Plugin id: `google-meet`

24+

- Tool: `google_meet`

25+

- Package: `@openclaw/google-meet`

26+

- Minimum OpenClaw host: `2026.4.20`

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,14 @@

22
33

Adds the `lobster` agent tool as an **optional** plugin tool.

44
5+

## Install

6+
7+

```bash

8+

openclaw plugins install @openclaw/lobster

9+

```

10+
11+

Restart the Gateway after installing or updating the plugin.

12+
513

## What this is

614
715

- Lobster is a standalone workflow shell (typed JSON-first pipelines + approvals/resume).

@@ -72,3 +80,14 @@ Notes:

7280

- Runs Lobster in process via the published `@clawdbot/lobster/core` runtime.

7381

- Does not manage OAuth/tokens.

7482

- Uses timeouts, stdout caps, and strict JSON envelope parsing.

83+
84+

## Docs

85+
86+

- https://docs.openclaw.ai/tools/lobster

87+
88+

## Package

89+
90+

- Plugin id: `lobster`

91+

- Tool: `lobster`

92+

- Package: `@openclaw/lobster`

93+

- Minimum OpenClaw host: `2026.4.25`

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,32 @@

1+

# @openclaw/memory-lancedb

2+
3+

Official LanceDB-backed long-term memory plugin for OpenClaw.

4+
5+

This plugin adds persistent memory tools backed by LanceDB, vector search, auto-recall, and auto-capture.

6+
7+

## Install

8+
9+

```bash

10+

openclaw plugins install @openclaw/memory-lancedb

11+

```

12+
13+

Restart the Gateway after installing or updating the plugin.

14+
15+

## What it provides

16+
17+

- `memory_store`

18+

- `memory_recall`

19+

- `memory_forget`

20+

- LanceDB vector storage and hybrid memory retrieval.

21+
22+

## Configure

23+
24+

Use the memory plugin docs for embedding provider setup, storage paths, indexing, and recall behavior:

25+
26+

- https://docs.openclaw.ai/plugins/memory-lancedb

27+
28+

## Package

29+
30+

- Plugin id: `memory-lancedb`

31+

- Package: `@openclaw/memory-lancedb`

32+

- Minimum OpenClaw host: `2026.4.10`