Skip to content

Commit 76f1400

Browse files
committed
Update latest.mdx
1 parent 75fbf94 commit 76f1400

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

content/docs/latest.mdx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,31 @@ The **Analytics** extension now includes multi-user management and per-user anal
162162

163163
See the [Analytics docs](/docs/features/analytics#user-analytics) for the full walkthrough.
164164

165+
## August 18, 2026
166+
167+
### Core Agent Tools: `fetch_url` & `grep_search`
168+
169+
The built-in `core_tools` extension now includes two new zero-dependency core tools designed to empower AI assistants and coding agents with web reading and fast codebase navigation:
170+
171+
#### `fetch_url`
172+
173+
A lightweight, dependency-free tool that fetches content from HTTP/HTTPS URLs and converts HTML pages into clean, token-efficient Markdown:
174+
175+
- **HTML to Markdown Conversion**: Automatically strips boilerplate elements (`<script>`, `<style>`, `<head>`, `<svg>`, `<noscript>`, `<iframe>`, `<nav>`, `<footer>`, `<aside>`).
176+
- **Semantic Formatting**: Accurately formats headings, paragraphs, lists, bold/italic markers, code blocks, blockquotes, tables, and hyperlinks (resolving relative URLs to absolute links).
177+
- **Token Efficiency**: Reduces raw HTML token overhead by up to 90%+, preserving context window space for LLMs.
178+
- **Non-HTML Support**: Returns raw text for JSON, plain text, and API responses.
179+
- **Length Truncation**: Enforces a configurable `max_length` (default: 20,000 characters) with truncation notices to avoid context window overflow.
180+
181+
#### `grep_search`
182+
183+
A fast text and regular expression search tool across workspace directories and files:
184+
185+
- **Regex & Literal Search**: Search for exact text or regex patterns across files.
186+
- **Automated Directory Pruning**: Automatically ignores non-source and virtual environment directories (`.git`, `.venv`, `node_modules`, `__pycache__`, `dist`, `build`, `bin`, `obj`, etc.) and skips binary files.
187+
- **File Pattern Filtering**: Filter search targets with glob patterns like `*.py`, `*.ts`, or `*.cs`.
188+
- **Structured Output**: Returns matching relative file paths, 1-indexed line numbers, and line contents, capped at configurable match limits (default: 50).
189+
165190
## August 3, 2026
166191

167192
### Profile Manager

0 commit comments

Comments
 (0)