慣性聚合 関心のあるブログ、ニュース、テクノロジーを効率的に追跡
原文を読む 慣性聚合で開く

おすすめ購読元

Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 聂微东
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
美团技术团队
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
Jina AI
Jina AI
D
Docker
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure 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
docs: expand meeting notes docs · openclaw/openclaw@a7e0fa0
steipete · 2026-05-23 · via Recent Commits to openclaw:main

@@ -14,6 +14,10 @@ is read-only and is available when that plugin is installed or loaded from

1414

source. Capture, import, and summarization are owned by the `meeting_notes`

1515

agent tool and by configured auto-start sources.

161617+

Use the CLI when you want to find yesterday's notes, open the Markdown file in

18+

an editor, feed a transcript to another tool, or debug where a session landed on

19+

disk. It does not start or stop capture.

20+1721

Artifacts live under the OpenClaw state directory:

18221923

```text

@@ -25,7 +29,8 @@ $OPENCLAW_STATE_DIR/meeting-notes/YYYY-MM-DD/<session>/

2529

```

26302731

The default state directory is `~/.openclaw`; set `OPENCLAW_STATE_DIR` to use a

28-

different one. The date directory comes from the session start time.

32+

different one. The date directory comes from the session start time, and the

33+

session directory is a safe filesystem segment derived from the session id.

29343035

## Commands

3136

@@ -36,9 +41,11 @@ openclaw meeting-notes show YYYY-MM-DD/<session>

3641

openclaw meeting-notes path <session>

3742

openclaw meeting-notes path YYYY-MM-DD/<session>

3843

openclaw meeting-notes path <session> --dir

44+

openclaw meeting-notes path <session> --metadata

3945

openclaw meeting-notes path <session> --transcript

4046

openclaw meeting-notes list --json

4147

openclaw meeting-notes show <session> --json

48+

openclaw meeting-notes path <session> --json

4249

```

43504451

- `list`: list stored sessions, date-qualified selector, start time, title, and `summary.md` path.

@@ -54,5 +61,58 @@ from `list`, for example `openclaw meeting-notes show 2026-05-22/standup`.

5461

Default session ids include a timestamp and random suffix; configure fixed

5562

session ids only when they are unique within the day.

566364+

## Output

65+66+

`list` prints one session per line:

67+68+

```text

69+

2026-05-22/standup 2026-05-22T09:00:00.000Z Weekly standup /Users/alex/.openclaw/meeting-notes/2026-05-22/standup/summary.md

70+

```

71+72+

The output is tab-separated. The columns are selector, start time, title, and

73+

summary path. The selector is the safest value to pass back to `show` or `path`.

74+75+

`list --json` prints objects with:

76+77+

- `sessionId`

78+

- `selector`

79+

- `date`

80+

- `title`

81+

- `startedAt`

82+

- `stoppedAt`

83+

- `source`

84+

- `path`

85+

- `summaryPath`

86+

- `hasSummary`

87+88+

`show --json` returns the stored session metadata, selector, session directory,

89+

summary path, and summary Markdown text. `path --json` returns the selected path

90+

and whether that file exists.

91+92+

## Many meetings per day

93+94+

Meeting Notes groups sessions by date, then by session id. Ten meetings on one

95+

day become ten sibling folders:

96+97+

```text

98+

~/.openclaw/meeting-notes/2026-05-22/

99+

meeting-2026-05-22T09-00-00-000Z-a1b2c3d4/

100+

meeting-2026-05-22T10-30-00-000Z-b2c3d4e5/

101+

standup/

102+

```

103+104+

Use default generated ids for most automation. Use a fixed id such as `standup`

105+

only when the same id will not be used twice on the same date.

106+107+

## Missing summaries

108+109+

Live sessions write `summary.md` when the session stops. Imported transcripts

110+

write `summary.md` immediately after import. A session can still appear in

111+

`list` without a summary when capture is active, a provider failed during stop,

112+

or metadata was written before any utterances arrived.

113+114+

Use `path <session> --transcript` to inspect the append-only transcript, and use

115+

the `meeting_notes` tool action `summarize` to regenerate the Markdown summary.

116+57117

See [Meeting Notes](/plugins/meeting-notes) for configuration, auto-start, and

58118

source-provider details.