search_conversations
Quickly locate past conversations by searching with keywords, file patterns, time ranges, or tags. Helps AI assistants retrieve relevant context and maintain project continuity efficiently.
Instructions
搜索历史对话记录
支持: • 关键词搜索 • 文件名模式搜索 • 时间范围筛选 • 标签过滤
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| days | No | 最近N天 | |
| filePattern | No | 文件名模式搜索 | |
| keywords | No | 关键词搜索 | |
| limit | No | 结果数量限制 | |
| project | No | 项目过滤(默认当前) | |
| tags | No | 标签过滤 | 
Input Schema (JSON Schema)
{
  "properties": {
    "days": {
      "description": "最近N天",
      "type": "number"
    },
    "filePattern": {
      "description": "文件名模式搜索",
      "type": "string"
    },
    "keywords": {
      "description": "关键词搜索",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "limit": {
      "default": 10,
      "description": "结果数量限制",
      "type": "number"
    },
    "project": {
      "description": "项目过滤(默认当前)",
      "type": "string"
    },
    "tags": {
      "description": "标签过滤",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}