Skip to content

Commit c409fe0

Browse files
author
linyuan.yang
committed
修改 doc
1 parent 70d80e6 commit c409fe0

9 files changed

Lines changed: 18 additions & 16 deletions

File tree

packages/docs-site/guide/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- **Memory** — Per-agent automatic long-term memory: a background MemoryLLM extracts durable knowledge after each conversation idles; the agent reads it back via `search_memory` / `read_memory`, with consolidate/reconcile maintenance
1313
- **Agenda** — Conversation-driven reminders, schedules, and routines with absolute / interval / cron triggers; optionally synced from the conversation after every turn and delivered to any session or channel
1414
- **Heartbeat** — Configurable periodic self-activation lets agents run scheduled prompts proactively across any channel
15-
- **MCP tools** — Standard MCP protocol (stdio/SSE), connect to any MCP tool ecosystem; per-agent and global servers with auto-restart
15+
- **MCP tools** — Standard MCP protocol (stdio/HTTP/SSE), connect to any MCP tool ecosystem; per-agent and global servers with auto-restart
1616
- **Multiple channels** — Web UI, CLI, Lark/Feishu, Slack, WeCom, WeChat, DingTalk, QQ (official bot), OneBot (QQ), XiaoAI, REST API, WebSocket
1717
- **Built-in tools** — Shell execution, file system, archive operations, media file read, Python/PowerShell inline execution, web fetch/download, sleep, session search, and cross-channel messaging
1818
- **Built-in MCP presets** — Playwright, Markitdown, and Exa can be enabled from the MCP tool list alongside custom MCP servers

packages/docs-site/guide/heartbeat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Heartbeat lets an agent wake itself up on a fixed interval and run a prompt with
1212
| Track reminders, routines, or one-off tasks from conversation content | [Agenda](./agenda) |
1313
| Run on cron (e.g. weekdays at 9am) with item state and fire history | [Agenda](./agenda) |
1414

15-
Heartbeat is a fixed-interval loop attached to an agent + target. Agenda is the stateful scheduler for reminders, routines, and cron-style triggers.
15+
Heartbeat is a fixed-interval loop attached to an agent + target. Agenda is the stateful system for reminders, routines, and cron-style triggers.
1616

1717
## Configuration
1818

packages/docs-site/guide/mcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ Once attached to an agent, MCP tools are advertised to the model on every turn.
2727
## Tips
2828

2929
- For local commands that need a Node toolchain, use the `npx -y` form to avoid pre-install hassle
30-
- Use SSE transport when the MCP server is remote or shared across multiple sbot instances
30+
- Use HTTP or SSE transport when the MCP server is remote or shared across multiple sbot instances
3131
- Sensitive secrets in env vars are masked in logs

packages/docs-site/guide/tools.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ These tools are available as built-in providers without installing external pack
2020

2121
## Archive
2222

23-
- Compress and extract archive files (zip, tar, gz, etc.)
24-
- List archive contents
25-
- Read files directly from within archives
23+
- Create and extract ZIP archives
24+
- List ZIP contents
25+
- Read files directly from within ZIP archives
2626

2727
## Web
2828

packages/docs-site/zh/guide/agenda.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Agenda 是 sbot 的有状态提醒 / 日程系统。每个日程**条目**(待
2525
| 字段 | 说明 |
2626
|-------|-------------|
2727
| 名称 | 该 Profile 的显示名称 |
28+
| 启用 | 暂停该 Profile,而不删除配置 |
2829
| Sync 模型 | 可选。每轮对话后从对话自动同步日程的模型(留空则关闭同步) |
2930
| Sync 提示词 | 可选。控制同步行为的提示词文件(缺省为 `agenda/sync/default.txt`|
3031

packages/docs-site/zh/guide/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- **记忆(Memory)** —— Agent 级自动长期记忆:会话空闲后由后台 MemoryLLM 提炼持久知识,主 Agent 通过 `search_memory` / `read_memory` 召回,并有 consolidate / reconcile 维护任务
1313
- **日程(Agenda)** —— 由对话驱动的提醒、日程与周期任务,支持 absolute / interval / cron 触发器;可每轮对话后从对话自动同步,并投递到任意会话或渠道
1414
- **心跳唤醒** —— 可配置的周期性自激活,让 Agent 在任意渠道主动执行预定提示词
15-
- **MCP 工具** —— 标准 MCP 协议(stdio / SSE),接入任意 MCP 工具生态;支持 Agent 级与全局服务器,故障自动重启
15+
- **MCP 工具** —— 标准 MCP 协议(stdio / HTTP / SSE),接入任意 MCP 工具生态;支持 Agent 级与全局服务器,故障自动重启
1616
- **多渠道** —— Web UI、CLI、飞书 / Lark、Slack、企业微信、微信、钉钉、QQ(官方机器人)、OneBot(QQ)、小爱、REST API、WebSocket
1717
- **内置工具** —— Shell 执行、文件系统、归档操作、媒体文件读取、Python / PowerShell 内联执行、Web 抓取 / 下载、等待、会话搜索、跨渠道发消息
1818
- **内置 MCP 预设** —— Playwright、Markitdown、Exa 可在 MCP 工具列表中与自定义 MCP 服务器一起启用

packages/docs-site/zh/guide/mcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
## 提示
2828

2929
- 对于需要 Node 工具链的本地命令,使用 `npx -y` 形式可免去预安装麻烦
30-
- 当 MCP 服务器是远程的或被多个 sbot 实例共享时,使用 SSE 传输
30+
- 当 MCP 服务器是远程的或被多个 sbot 实例共享时,使用 HTTP 或 SSE 传输
3131
- 环境变量中的敏感凭据在日志中会被脱敏

packages/docs-site/zh/guide/memory.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,19 @@ Memory 是 Agent 的自动长期记忆。后台 **MemoryLLM** 会在每次对话
2424
| 字段 | 说明 |
2525
|-------|-------------|
2626
| 名称 | 该 Profile 的显示名称 |
27+
| 启用 | 暂停该 Profile,而不删除配置 |
2728
| Writer 模型 | 用于提取记忆的 MemoryLLM(推荐有推理能力的模型) |
28-
| Writer 系统提示词 | 控制 **提取什么** |
29-
| 读取路径模板 | 召回的记忆如何回填进提示词 |
29+
| Writer 提示词 | 控制 **提取什么** |
30+
| Read 提示词 | 召回的记忆如何回填进提示词 |
3031

31-
随后在 Agent → **Memory** 区块开启 Memory 并选择 Profile。在 Memory Profiles 页面还可以 **立即运行(Run Now)** 强制提取**Consolidate****Reconcile**,以及 **查看记忆**
32+
随后在 Agent → **Memory** 区块开启 Memory 并选择 Profile。在 Memory Profiles 页面可以 **查看记忆**、检查 pending / failed 后台任务**Run Extract** 唤醒排队中的抽取任务**Consolidate** 排队整理,以及 **Reconcile** 重新扫描文件与索引
3233

3334
## Memory vs Notes vs Wiki
3435

3536
| | 写入方 | 写入时机 |
3637
|---|-------------|---------------|
3738
| [Memory](./memory) | 后台 MemoryLLM | 对话空闲后自动写入 |
38-
| [Notes](./note) | 当前 Agent | 对话中通过工具调用按需写入 |
39-
| [Wiki](./wiki) | 主要由人工 + Agent | 人工编纂;Agent 也可创建 / 编辑 |
39+
| [Notes](./note) | 人 / 运维者 | 手动写入,随后自动注入或通过 `note_search` 召回 |
40+
| [Wiki](./wiki) | 人 / Wiki 数据源插件 | 编纂后的页面供 Agent 搜索 / 读取 |
4041

4142
三者中 Memory 最"省心、自动"。

packages/docs-site/zh/guide/tools.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121
## 归档工具
2222

23-
- 压缩与解压归档文件(zip、tar、gz 等)
24-
- 列举归档内容
25-
- 直接读取归档内部文件
23+
- 创建与解压 ZIP 文件
24+
- 列举 ZIP 内容
25+
- 直接读取 ZIP 内部文件
2626

2727
## Web 工具
2828

0 commit comments

Comments
 (0)