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

推荐订阅源

Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
V
V2EX
博客园 - 叶小钗
雷峰网
雷峰网
小众软件
小众软件
量子位
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
Martin Fowler
Martin Fowler
G
Google Developers Blog
博客园_首页
博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享

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(gateway): fix configuration-examples to use schema-c...
vincentkoc · 2026-05-11 · via Recent Commits to openclaw:main

@@ -15,7 +15,7 @@ Examples below are aligned with the current config schema. For the exhaustive re

15151616

```json5

1717

{

18-

agent: { workspace: "~/.openclaw/workspace" },

18+

agents: { defaults: { workspace: "~/.openclaw/workspace" } },

1919

channels: { whatsapp: { allowFrom: ["+15555550123"] } },

2020

}

2121

```

@@ -26,14 +26,21 @@ Save to `~/.openclaw/openclaw.json` and you can DM the bot from that number.

26262727

```json5

2828

{

29-

identity: {

30-

name: "Clawd",

31-

theme: "helpful assistant",

32-

emoji: "🦞",

33-

},

34-

agent: {

35-

workspace: "~/.openclaw/workspace",

36-

model: { primary: "anthropic/claude-sonnet-4-6" },

29+

agents: {

30+

defaults: {

31+

workspace: "~/.openclaw/workspace",

32+

model: { primary: "anthropic/claude-sonnet-4-6" },

33+

},

34+

list: [

35+

{

36+

id: "main",

37+

identity: {

38+

name: "Clawd",

39+

theme: "helpful assistant",

40+

emoji: "🦞",

41+

},

42+

},

43+

],

3744

},

3845

channels: {

3946

whatsapp: {

@@ -83,12 +90,7 @@ Save to `~/.openclaw/openclaw.json` and you can DM the bot from that number.

8390

},

8491

},

859286-

// Identity

87-

identity: {

88-

name: "Samantha",

89-

theme: "helpful sloth",

90-

emoji: "🦥",

91-

},

93+

// Identity is per agent — set it on agents.list[].identity below.

92949395

// Logging

9496

logging: {

@@ -307,6 +309,11 @@ Save to `~/.openclaw/openclaw.json` and you can DM the bot from that number.

307309

{

308310

id: "main",

309311

default: true,

312+

identity: {

313+

name: "Samantha",

314+

theme: "helpful sloth",

315+

emoji: "🦥",

316+

},

310317

// inherits defaults.skills -> github, weather

311318

groupChat: {

312319

mentionPatterns: ["@openclaw", "openclaw"],

@@ -513,7 +520,7 @@ example `~/.agents/skills/manager -> ~/Projects/manager/skills`.

513520514521

```json5

515522

{

516-

agent: { workspace: "~/.openclaw/workspace" },

523+

agents: { defaults: { workspace: "~/.openclaw/workspace" } },

517524

channels: {

518525

whatsapp: { allowFrom: ["+15555550123"] },

519526

telegram: {

@@ -605,11 +612,13 @@ Only enable direct mutable name/email/nick matching with each channel's `dangero

605612

},

606613

},

607614

},

608-

agent: {

609-

workspace: "~/.openclaw/workspace",

610-

model: {

611-

primary: "anthropic/claude-opus-4-6",

612-

fallbacks: ["minimax/MiniMax-M2.7"],

615+

agents: {

616+

defaults: {

617+

workspace: "~/.openclaw/workspace",

618+

model: {

619+

primary: "anthropic/claude-opus-4-6",

620+

fallbacks: ["minimax/MiniMax-M2.7"],

621+

},

613622

},

614623

},

615624

}

@@ -619,13 +628,20 @@ Only enable direct mutable name/email/nick matching with each channel's `dangero

619628620629

```json5

621630

{

622-

identity: {

623-

name: "WorkBot",

624-

theme: "professional assistant",

625-

},

626-

agent: {

627-

workspace: "~/work-openclaw",

628-

elevated: { enabled: false },

631+

agents: {

632+

defaults: {

633+

workspace: "~/work-openclaw",

634+

elevatedDefault: "off",

635+

},

636+

list: [

637+

{

638+

id: "main",

639+

identity: {

640+

name: "WorkBot",

641+

theme: "professional assistant",

642+

},

643+

},

644+

],

629645

},

630646

channels: {

631647

slack: {

@@ -644,9 +660,11 @@ Only enable direct mutable name/email/nick matching with each channel's `dangero

644660645661

```json5

646662

{

647-

agent: {

648-

workspace: "~/.openclaw/workspace",

649-

model: { primary: "lmstudio/my-local-model" },

663+

agents: {

664+

defaults: {

665+

workspace: "~/.openclaw/workspace",

666+

model: { primary: "lmstudio/my-local-model" },

667+

},

650668

},

651669

models: {

652670

mode: "merge",