botholomew 0.9.4 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botholomew",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "An autonomous AI agent for knowledge work — works your task queue while you sleep.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/chat/agent.ts CHANGED
@@ -115,6 +115,8 @@ Format your responses using Markdown. Use headings, bold, italic, lists, and cod
115
115
  prompt += `
116
116
  ## External Tools (MCP)
117
117
 
118
+ Before reaching for MCP tools to **find** information, check local context first — content from Drive, Gmail, GitHub, URLs, and prior agent runs is often already ingested. Use \`search_semantic\` (semantic) or \`context_search\` (keyword) across drives, then \`context_read\` / \`context_tree\` to drill in. Only fall through to \`mcp_exec\` when the data is fresh, write-side (sending an email, creating an issue), or genuinely missing locally.
119
+
118
120
  You have access to external tools via MCP servers. Before calling any MCP tool you haven't used yet this session, you MUST fetch its schema first:
119
121
 
120
122
  1. Discover tools with \`mcp_search\` (preferred — semantic) or \`mcp_list_tools\`.
@@ -131,6 +131,8 @@ When calling complete_task, write a summary that captures your key findings, dec
131
131
  prompt += `
132
132
  ## External Tools (MCP)
133
133
 
134
+ Before reaching for MCP tools to **find** information, check local context first — content from Drive, Gmail, GitHub, URLs, and prior agent runs is often already ingested. Use \`search_semantic\` (semantic) or \`context_search\` (keyword) across drives, then \`context_read\` / \`context_tree\` to drill in. Only fall through to \`mcp_exec\` when the data is fresh, write-side (sending an email, creating an issue), or genuinely missing locally.
135
+
134
136
  You have access to external tools via MCP servers. Before calling any MCP tool you haven't used yet this session, you MUST fetch its schema first:
135
137
 
136
138
  1. Discover tools with \`mcp_search\` (preferred — semantic) or \`mcp_list_tools\`.