get_block_changes
Retrieve content blocks added or modified within a given time range to build change lists or indexes. Returns current block snapshots without before/after diffs.
Instructions
查询指定时间范围内新增或修改的内容块。
适用场景:
只需要变更清单/索引, 不关心逐块前后差异。
需要快速筛选近期新增或更新的块。
与 get_block_diffs 的区别:
本函数不做历史快照对比, 不返回 before/after。
返回的是当前块的字段快照(例如 content/markdown)。
注意事项:
deleted 当前恒为空;删除块需要结合历史快照比对才能识别。
include_markdown=true 会显著增大返回体量,建议配合 limit 使用。
Args: start_time: 起始时间,格式为 'YYYYMMDDHHMMSS'。 end_time: 结束时间,格式为 'YYYYMMDDHHMMSS',可选。 limit: 最大返回条目数,默认为 200。 include_markdown: 是否返回 markdown 字段,默认 false。
Returns: Dict[str, Any]: 包含新增与修改块列表以及历史快照可用性信息。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| end_time | No | ||
| start_time | Yes | ||
| include_markdown | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |