Project Files
Project Files
README
Give your local LLM real hands. This is an LM Studio plugin that turns any local model into a capable autonomous agent: safe file editing, hang-proof codebase search, background builds, headless browser automation, Git & GitHub workflows, OCR, charting, semantic RAG — and self-managing context so marathon sessions never die. One plugin, zero glue code, fully offline by default.
v1.9.16·130+ ready-made tools·750 tests green (45 suites)·5 locales·MIT·Node 20+
Compared against an Aug 2026 survey of ~115 LM Studio Hub plugins (~40 toolboxes, only 9 with real file tools). Legend: 🥇 unique across the entire field · ⭐ rare (≤ a handful) · 🛡️ standout safety engineering
README
Give your local LLM real hands. This is an LM Studio plugin that turns any local model into a capable autonomous agent: safe file editing, hang-proof codebase search, background builds, headless browser automation, Git & GitHub workflows, OCR, charting, semantic RAG — and self-managing context so marathon sessions never die. One plugin, zero glue code, fully offline by default.
v1.9.16·130+ ready-made tools·750 tests green (45 suites)·5 locales·MIT·Node 20+
Compared against an Aug 2026 survey of ~115 LM Studio Hub plugins (~40 toolboxes, only 9 with real file tools). Legend: 🥇 unique across the entire field · ⭐ rare (≤ a handful) · 🛡️ standout safety engineering
| Capability | What it does for you | Field position |
|---|---|---|
🧠 Self-managing context (AutoTracker + ContextGuard) | Token thresholds fire mid-tool-chain (75% / 90%), auto-summarizing and compressing the conversation before overflow — long agent sessions keep working instead of dying. Project-keyword detection in the prompt pipeline. | ⭐ No surveyed rival has any context/token management — every other "memory" tool is bare save/list/search CRUD |
🌐 Cross-project memory (switch_context, project registry) | Recall what another registered project decided last week. Recency×frequency scoring, TTL pruning, confirm-first switching (Step 0.7). | ⭐ Absent from every surveyed plugin |
🏷️ Confidence-tagged results + cluster-aware tool selection (confidenceTypes, toolPriority) | Every auto-tracked fact is labeled EXTRACTED vs INFERRED vs AMBIGUOUS — so you can separate what the agent knows from what it's guessing; and when 130+ tools compete for a turn, cluster-aware priority keeps the right ones in reach under grammar limits. | 🥇 No surveyed rival tags result confidence — and none fits this many tools without dropping them at context limits |
🧬 AST-based code refactoring (refactor_code) | Rename / move-function / extract-function / dead-import cleanup — syntax-safe AST transforms with auto-rollback on failure, not regex text hacking. | 🥇 The only AST-based refactoring across ~115 surveyed plugins |
🔍 Search that cannot hang (grep_files, find_replace_all) | ReDoS-safe, deadline-capped search returning partial results + an explicit aborted flag; dry-run multi-file replace. | 🛡️ Rivals ship unbounded grep loops — this one physically can't spin forever |
💾 Safe file editing (replace_text_in_file, line_operations) | .bak backup on every edit, pattern-anchored inserts, line-fingerprint verification, MD5 post-write integrity check. Restore any file in one call (restore_from_bak). | 🛡️ 3-layer guardrails against stale-line-number corruption — rivals offer at best rename-backup shims |
⏸️ Non-blocking background commands (run_background_command + monitor/cancel) | Kick off long builds & jobs, keep chatting, check status anytime, cancel when needed. No Docker required. | ⭐ Nearest rivals require Docker; this runs natively in the plugin host |
| 🌍 Real browser automation (Puppeteer suite) | Headless Chromium with persistent sessions and UI interaction — not a one-shot "fetch page" call. | Rival "visit-website" plugins are ⚠️ static scrapers only |
📊 Local semantic RAG, any format (rag_index_pdf/docx/xlsx, rag_query_vector, rag_web_content) | Index PDFs, Word docs and spreadsheets for vector search — plus query-relevant web extraction. One toolset replaces rivals' 2–4 separate plugins. Nothing leaves your machine. | 🛡️ Bounded chunking: no OOM on poison-length documents (verified vs a 1690-page PDF) |
🧪 Runs your test suite for you (run_tests) | Auto-detects Jest / Mocha / Vitest from package.json and executes it, results back in chat. | ⭐ No other toolbox in the field does this |
📈 Data visualization as a tool call (generate_chart) | Bar / line / pie / doughnut / scatter / radar → image file, with HTML fallback when the renderer is unavailable. | 🥇 Zero data-viz plugins existed in the entire field at survey time |
🗺️ Structured planning with live progress (create_plan, get_plan, update_plan_step) | Multi-step plans tracked through a real state machine (pending → in_progress → done, blocked-retry) with completion metrics. | ⭐ Rare — most toolboxes have no planning primitive at all |
The closest direct competitor on the Hub: same job (tools for local LLMs), very different build. Where AI Toolbox pulls ahead:
| You get here that they don't have |
|---|
| ✅ AST-level refactoring (rename, move functions, dead-import cleanup) — syntax-safe transforms with auto-rollback, not string edits |
| ✅ Real RAG: local vector index over PDF / DOCX / XLSX with page-level provenance — not just keyword search |
| ✅ Image & data viz: OCR on screenshots and captures, image metadata + comparison, chart generation |
| ✅ 130+ tools vs ~49 — backed by 750 passing tests across 45 suites |
| ✅ Crash-resilient writes + rollback on failure: a botched edit can never corrupt your file |
Our previous i18n gap is closed: we now ship 5 locales (en · de · es · zh-CN · zh-TW), each a full translation set — and anti-stub tests guard the suite so alias/fallback languages can never silently regress. We'd rather tell you than pretend it doesn't exist.
You: "Refactor
auth.ts— extract the token-refresh logic into its own module, move the helper next to it, run our test suite, and open a PR if it's green."→
refactor_code(AST extract + function move, auto-rollback armed) →run_tests(auto-detected Jest: all ✅) →gh_create_pr— one turn. Zero copy-paste. Zero hand-holding.
In-place replace · line-anchored inserts · chunked reads on huge files · diffs · directory trees — and every write is backed up first (.bak, one-call restore). Project-wide search that physically cannot hang (grep_files: deadline-capped, node_modules excluded) plus dry-run multi-file replace.
AST-driven renames, function moves & extractions with auto-rollback — the agent refactors like a developer, not like sed.
Kicks off builds and watchers in the background, keeps chatting, polls or cancels on demand. Sandboxed JS/Python for quick logic; full shell (pipes, redirects, env vars) when needed — but off by default. Your test suite runs itself: auto-detected runner, results back in chat.
Multi-engine search with automatic fallback · clean page-text extraction · a real headless browser with persistent sessions (not a one-shot scraper) · HTTP client for any GET/POST JSON call — SSRF-guarded.
Local: status, diff, add, commit, log, checkout, stash, blame. Remote: issues, PRs, comments, diffs, push — through the gh CLI you already trust.
PDFs, Word docs & spreadsheets → local semantic vector search (nothing leaves your machine). OCR on screenshots and desktop captures; image metadata & comparison. Read-only SQLite with injection-proof parameterized queries. Your agent literally sees screens.
Decisions, patterns and configs persist per project — and across projects: type-scoped, TTL-pruned, recency×frequency-scored recall, confirm-first switching (switch_context). ContextGuard keeps marathon sessions alive: auto-summarize at 75%, compress at 90% — mid-chain.
Charts rendered to image files from raw data (bar/line/pie/doughnut/scatter/radar). Live HTML/CSS/JS components generated and previewed in-browser, with data extracted back into the chat.
Prerequisites: LM Studio (latest) · Node.js 20+ · optional: gh CLI for GitHub remote operations → https://cli.github.com/
gh auth login once in a terminal to unlock GitHub remote tools# Developing instead of using? npm install && npm run build # ESM + CJS via tsup npm test # full suite: 45 suites / 750 tests green (~45 s)
| Control | What it does |
|---|---|
| 🎛️ Granular gating | Every tool family toggles independently in LM Studio's settings UI |
| 👑 God Mode | One switch enables everything (power users only — Execution is disabled by default for a reason) |
| 🔁 ContextGuard | Set token thresholds + summarization model; watch auto-compression keep long sessions alive |
| 🧮 Auto-Tracking | Background decision & task-completion tracking with confidence-tagged results |
.bak first — restore is one call (restore_from_bak)grep_files / find_replace_all: ReDoS-safe regex screening, deadline hard stops, partial results with explicit aborted flagDeclarative tool registry with closure-based dependency injection · full async + crash-resilient atomic writes (atomicWrite utility, rollback-on-failure) · dynamic context-window detection via native SDK APIs · confidence-tagged results (EXTRACTED | INFERRED | AMBIGUOUS) · cluster-aware tool priority for grammar-limit pruning.
Deep dive → ARCHITECTURE.md · Dev guide in this file below
One plugin replaces an entire shelf. Here's every family, what it covers, and its default state:
| Family | Count | What it gives your agent | Default |
|---|---|---|---|
| 📁 File System | 23 | Read/write/edit/search — path-validated, backed up, chunked reads on huge files, diffs, project trees, deadline-capped search + structured content scanning (pattern_scan) | ✅ |
| 🧬 Refactoring & Recode engine | refactor_code + rules | AST rename · move-function · extract · dead-import cleanup — plus a pluggable rule engine (dead-code hints, type inference, async modernizer) with dry-run diffs | ✅ |
| 🔍 Text Processing | 4 | Regex transforms (sed-class), structured extraction (awk-class), line surgery with fingerprint guards, instant Markdown tables | ✅ |
| 📋 Task Planning | 3 | Goal + step plans through a real state machine with live completion metrics — blocked steps retry cleanly | ✅ |
| ⚡ Execution | 5 | Sandboxed JS & Python (eval/require blocked) · full shell & native terminal (opt-in) · auto-runs your project's test suite (Jest/Mocha/Vitest detected) | mixed |
| 🧠 Context & Memory | 20 | Auto-summarization, typed memory with TTL pruning & heuristic recall, event tracking — plus cross-project: register/search/switch between projects, session index browser | ✅ |
| 📊 Vector RAG | 7 | Semantic search over your codebase and PDFs · Word docs · spreadsheets + query-relevant web extraction — local, bounded, OOM-proof | ✅ |
| 💾 Backup & Restore | 5 | Full-directory ZIP snapshots (create_backup/restore_backup), listing, cleanup — plus the per-edit .bak system underneath everything | ✅ |
| 📈 Data Visualization | 1 | generate_chart: bar / line / pie / doughnut / scatter / radar → image file with HTML fallback | ✅ |
| 🖼️ Image Processing | 4 | OCR (image_to_text) · metadata inspection (describe_image) · desktop capture (screenshot_desktop) · byte-level comparison (compare_images) | ✅ |
| 📄 Document Parsing | 1 | PDF / DOCX / TXT straight into the conversation, binary-safe | ✅ |
| 🌐 Web Research | 3 | Multi-engine search with fallback · clean page-text extraction | ✅ |
| 🌍 Browser Automation | 5 | Real headless Chromium: open pages, persistent sessions, UI interaction, preview HTML | ✗ opt-in |
| 🐙 Git & GitHub | 15 | Full local git incl. stash & blame · issues/PRs/comments/diffs/push via your gh CLI | ✗ opt-in |
| ⏳ Background Commands | 3 | Run long jobs without blocking the chat — monitor stdout/stderr, cancel anytime. No Docker required. | ✗ opt-in |
| 📡 HTTP Client | 3 | Any-method requests with retry/timeout, JSON GET/POST helpers — SSRF-guarded | ✗ opt-in |
| 🎨 UI Generation | 3 | Build & preview live HTML/CSS/JS components in-browser · extract data back out | ✗ opt-in |
| 🗃️ Database | 1 | Read-only SQLite with injection-proof parameterized queries | ✗ opt-in |
Counts are code-verified (source-of-truth audit, Sep 2026); exposed tool count is always toggle-dependent. The
utilityToolsmodule (~27 tools incl.secret_scan,json_query, safe.envediting) ships with full test coverage but is not yet registered — wiring it live is on the roadmap.
Per-tool parameters, defaults and examples → TOOLS_REFERENCE.md (audited against source). Walkthroughs: DOCUMENTATION.md · QUICK_START.md
| Version | Headline |
|---|---|
| v1.9.16 | 🔍 web_search zero-result fallback fix — dead/empty engine no longer stops the chain · rev 28: reinstall + restart live-verified same day (blocked ddg-api skipped → ddg-fetch returned results) |
| v1.9.15 | ⚡ B' ripgrep phase-1 prefilter for pattern_scan (byte-identical JS fallback guarantee) · rev 27: ripgrep promoted to runtime dependency, fixing silent fast-path loss on Hub installs — live-verified on the user machine |
| v1.9.14 | 🧠 get_memory local-file parse guard — keyless auto-context records no longer abort reads (hotfix) |
| v1.9.13 | 🔍 ripgrep-backed regex engine for grep_files (in-process WASM prefilter, transparent fallback keeps every hang guard) · executedTool ground-truth stamp on all tool results · Tier-1 dead-code removal (~90 KB) |
| v1.9.12 | 🆕 pattern_scan recursive content search (unsafe regex auto-demotes to literal; 256 KB / 10k-line hard caps) · puppeteer connected property-read fix · dead-file removal — full MD docs sync |
| v1.9.10 | 🔧 OOM-hardening suite: bounded web/RAG reads, chunking fixed-point termination, rag_web_content dedup — plugin-host heap is now safe under poison payloads |
| v1.9.9 | ⏱️ Deadline-capped grep_files (partial results + aborted flag) · AutoTracker token deltas fire thresholds inside long tool chains · live chat used ≈ N tok DELTA log |
| v1.9.8 | 🔒 Explicit project registration only · hang prevention (max_depth, line caps) · Step-0.7 keyword detection + lazy registry sync kills the "project not found" loop |
| v1.9.7 | 💾 Crash-resilient atomic writes everywhere — randomized temp filenames, rollback-on-failure, zero blocking I/O |
| v1.9.5–6 | 🧠 Graphify-inspired intelligence: confidence-tagged results, hub-exclusion clustering, cluster-aware tool priority · shell:true deprecation eliminated |
| v1.8.x | 🛡️ 3-layer line-edit guardrails · SDK v1.x token-counting accuracy (matches sidebar within <0.3%) · declarative registry refactor (~80 lines of if/else → 20-entry registry) |
@lmstudio/sdk ^1.5.0 · puppeteer ^24 · isomorphic-git ^1.38 · sharp ^0.35.3 · tesseract.js ^7 · pdf-parse / mammoth / xlsx (document pipeline) · ripgrep ^0.3.1 (WASM regex engine, lazy-loaded) · @dqbd/tiktoken (ContextGuard) · zod (runtime validation)
MIT — free to use, modify, ship. See LICENSE.
AI Toolbox is an all-in-one LM Studio plugin and AI agent toolkit for local LLMs: safe file tools, hang-proof codebase search, background builds, headless browser automation, Git & GitHub workflows, OCR, data visualization, local semantic RAG over PDF/DOCX/XLSX, cross-project memory, self-managing context windows — 130+ ready-made tool calls your model can use with zero glue code.
| Capability | What it does for you | Field position |
|---|---|---|
🧠 Self-managing context (AutoTracker + ContextGuard) | Token thresholds fire mid-tool-chain (75% / 90%), auto-summarizing and compressing the conversation before overflow — long agent sessions keep working instead of dying. Project-keyword detection in the prompt pipeline. | ⭐ No surveyed rival has any context/token management — every other "memory" tool is bare save/list/search CRUD |
🌐 Cross-project memory (switch_context, project registry) | Recall what another registered project decided last week. Recency×frequency scoring, TTL pruning, confirm-first switching (Step 0.7). | ⭐ Absent from every surveyed plugin |
🏷️ Confidence-tagged results + cluster-aware tool selection (confidenceTypes, toolPriority) | Every auto-tracked fact is labeled EXTRACTED vs INFERRED vs AMBIGUOUS — so you can separate what the agent knows from what it's guessing; and when 130+ tools compete for a turn, cluster-aware priority keeps the right ones in reach under grammar limits. | 🥇 No surveyed rival tags result confidence — and none fits this many tools without dropping them at context limits |
🧬 AST-based code refactoring (refactor_code) | Rename / move-function / extract-function / dead-import cleanup — syntax-safe AST transforms with auto-rollback on failure, not regex text hacking. | 🥇 The only AST-based refactoring across ~115 surveyed plugins |
🔍 Search that cannot hang (grep_files, find_replace_all) | ReDoS-safe, deadline-capped search returning partial results + an explicit aborted flag; dry-run multi-file replace. | 🛡️ Rivals ship unbounded grep loops — this one physically can't spin forever |
💾 Safe file editing (replace_text_in_file, line_operations) | .bak backup on every edit, pattern-anchored inserts, line-fingerprint verification, MD5 post-write integrity check. Restore any file in one call (restore_from_bak). | 🛡️ 3-layer guardrails against stale-line-number corruption — rivals offer at best rename-backup shims |
⏸️ Non-blocking background commands (run_background_command + monitor/cancel) | Kick off long builds & jobs, keep chatting, check status anytime, cancel when needed. No Docker required. | ⭐ Nearest rivals require Docker; this runs natively in the plugin host |
| 🌍 Real browser automation (Puppeteer suite) | Headless Chromium with persistent sessions and UI interaction — not a one-shot "fetch page" call. | Rival "visit-website" plugins are ⚠️ static scrapers only |
📊 Local semantic RAG, any format (rag_index_pdf/docx/xlsx, rag_query_vector, rag_web_content) | Index PDFs, Word docs and spreadsheets for vector search — plus query-relevant web extraction. One toolset replaces rivals' 2–4 separate plugins. Nothing leaves your machine. | 🛡️ Bounded chunking: no OOM on poison-length documents (verified vs a 1690-page PDF) |
🧪 Runs your test suite for you (run_tests) | Auto-detects Jest / Mocha / Vitest from package.json and executes it, results back in chat. | ⭐ No other toolbox in the field does this |
📈 Data visualization as a tool call (generate_chart) | Bar / line / pie / doughnut / scatter / radar → image file, with HTML fallback when the renderer is unavailable. | 🥇 Zero data-viz plugins existed in the entire field at survey time |
🗺️ Structured planning with live progress (create_plan, get_plan, update_plan_step) | Multi-step plans tracked through a real state machine (pending → in_progress → done, blocked-retry) with completion metrics. | ⭐ Rare — most toolboxes have no planning primitive at all |
The closest direct competitor on the Hub: same job (tools for local LLMs), very different build. Where AI Toolbox pulls ahead:
| You get here that they don't have |
|---|
| ✅ AST-level refactoring (rename, move functions, dead-import cleanup) — syntax-safe transforms with auto-rollback, not string edits |
| ✅ Real RAG: local vector index over PDF / DOCX / XLSX with page-level provenance — not just keyword search |
| ✅ Image & data viz: OCR on screenshots and captures, image metadata + comparison, chart generation |
| ✅ 130+ tools vs ~49 — backed by 750 passing tests across 45 suites |
| ✅ Crash-resilient writes + rollback on failure: a botched edit can never corrupt your file |
Our previous i18n gap is closed: we now ship 5 locales (en · de · es · zh-CN · zh-TW), each a full translation set — and anti-stub tests guard the suite so alias/fallback languages can never silently regress. We'd rather tell you than pretend it doesn't exist.
You: "Refactor
auth.ts— extract the token-refresh logic into its own module, move the helper next to it, run our test suite, and open a PR if it's green."→
refactor_code(AST extract + function move, auto-rollback armed) →run_tests(auto-detected Jest: all ✅) →gh_create_pr— one turn. Zero copy-paste. Zero hand-holding.
In-place replace · line-anchored inserts · chunked reads on huge files · diffs · directory trees — and every write is backed up first (.bak, one-call restore). Project-wide search that physically cannot hang (grep_files: deadline-capped, node_modules excluded) plus dry-run multi-file replace.
AST-driven renames, function moves & extractions with auto-rollback — the agent refactors like a developer, not like sed.
Kicks off builds and watchers in the background, keeps chatting, polls or cancels on demand. Sandboxed JS/Python for quick logic; full shell (pipes, redirects, env vars) when needed — but off by default. Your test suite runs itself: auto-detected runner, results back in chat.
Multi-engine search with automatic fallback · clean page-text extraction · a real headless browser with persistent sessions (not a one-shot scraper) · HTTP client for any GET/POST JSON call — SSRF-guarded.
Local: status, diff, add, commit, log, checkout, stash, blame. Remote: issues, PRs, comments, diffs, push — through the gh CLI you already trust.
PDFs, Word docs & spreadsheets → local semantic vector search (nothing leaves your machine). OCR on screenshots and desktop captures; image metadata & comparison. Read-only SQLite with injection-proof parameterized queries. Your agent literally sees screens.
Decisions, patterns and configs persist per project — and across projects: type-scoped, TTL-pruned, recency×frequency-scored recall, confirm-first switching (switch_context). ContextGuard keeps marathon sessions alive: auto-summarize at 75%, compress at 90% — mid-chain.
Charts rendered to image files from raw data (bar/line/pie/doughnut/scatter/radar). Live HTML/CSS/JS components generated and previewed in-browser, with data extracted back into the chat.
Prerequisites: LM Studio (latest) · Node.js 20+ · optional: gh CLI for GitHub remote operations → https://cli.github.com/
gh auth login once in a terminal to unlock GitHub remote tools# Developing instead of using? npm install && npm run build # ESM + CJS via tsup npm test # full suite: 45 suites / 750 tests green (~45 s)
| Control | What it does |
|---|---|
| 🎛️ Granular gating | Every tool family toggles independently in LM Studio's settings UI |
| 👑 God Mode | One switch enables everything (power users only — Execution is disabled by default for a reason) |
| 🔁 ContextGuard | Set token thresholds + summarization model; watch auto-compression keep long sessions alive |
| 🧮 Auto-Tracking | Background decision & task-completion tracking with confidence-tagged results |
.bak first — restore is one call (restore_from_bak)grep_files / find_replace_all: ReDoS-safe regex screening, deadline hard stops, partial results with explicit aborted flagDeclarative tool registry with closure-based dependency injection · full async + crash-resilient atomic writes (atomicWrite utility, rollback-on-failure) · dynamic context-window detection via native SDK APIs · confidence-tagged results (EXTRACTED | INFERRED | AMBIGUOUS) · cluster-aware tool priority for grammar-limit pruning.
Deep dive → ARCHITECTURE.md · Dev guide in this file below
One plugin replaces an entire shelf. Here's every family, what it covers, and its default state:
| Family | Count | What it gives your agent | Default |
|---|---|---|---|
| 📁 File System | 23 | Read/write/edit/search — path-validated, backed up, chunked reads on huge files, diffs, project trees, deadline-capped search + structured content scanning (pattern_scan) | ✅ |
| 🧬 Refactoring & Recode engine | refactor_code + rules | AST rename · move-function · extract · dead-import cleanup — plus a pluggable rule engine (dead-code hints, type inference, async modernizer) with dry-run diffs | ✅ |
| 🔍 Text Processing | 4 | Regex transforms (sed-class), structured extraction (awk-class), line surgery with fingerprint guards, instant Markdown tables | ✅ |
| 📋 Task Planning | 3 | Goal + step plans through a real state machine with live completion metrics — blocked steps retry cleanly | ✅ |
| ⚡ Execution | 5 | Sandboxed JS & Python (eval/require blocked) · full shell & native terminal (opt-in) · auto-runs your project's test suite (Jest/Mocha/Vitest detected) | mixed |
| 🧠 Context & Memory | 20 | Auto-summarization, typed memory with TTL pruning & heuristic recall, event tracking — plus cross-project: register/search/switch between projects, session index browser | ✅ |
| 📊 Vector RAG | 7 | Semantic search over your codebase and PDFs · Word docs · spreadsheets + query-relevant web extraction — local, bounded, OOM-proof | ✅ |
| 💾 Backup & Restore | 5 | Full-directory ZIP snapshots (create_backup/restore_backup), listing, cleanup — plus the per-edit .bak system underneath everything | ✅ |
| 📈 Data Visualization | 1 | generate_chart: bar / line / pie / doughnut / scatter / radar → image file with HTML fallback | ✅ |
| 🖼️ Image Processing | 4 | OCR (image_to_text) · metadata inspection (describe_image) · desktop capture (screenshot_desktop) · byte-level comparison (compare_images) | ✅ |
| 📄 Document Parsing | 1 | PDF / DOCX / TXT straight into the conversation, binary-safe | ✅ |
| 🌐 Web Research | 3 | Multi-engine search with fallback · clean page-text extraction | ✅ |
| 🌍 Browser Automation | 5 | Real headless Chromium: open pages, persistent sessions, UI interaction, preview HTML | ✗ opt-in |
| 🐙 Git & GitHub | 15 | Full local git incl. stash & blame · issues/PRs/comments/diffs/push via your gh CLI | ✗ opt-in |
| ⏳ Background Commands | 3 | Run long jobs without blocking the chat — monitor stdout/stderr, cancel anytime. No Docker required. | ✗ opt-in |
| 📡 HTTP Client | 3 | Any-method requests with retry/timeout, JSON GET/POST helpers — SSRF-guarded | ✗ opt-in |
| 🎨 UI Generation | 3 | Build & preview live HTML/CSS/JS components in-browser · extract data back out | ✗ opt-in |
| 🗃️ Database | 1 | Read-only SQLite with injection-proof parameterized queries | ✗ opt-in |
Counts are code-verified (source-of-truth audit, Sep 2026); exposed tool count is always toggle-dependent. The
utilityToolsmodule (~27 tools incl.secret_scan,json_query, safe.envediting) ships with full test coverage but is not yet registered — wiring it live is on the roadmap.
Per-tool parameters, defaults and examples → TOOLS_REFERENCE.md (audited against source). Walkthroughs: DOCUMENTATION.md · QUICK_START.md
| Version | Headline |
|---|---|
| v1.9.16 | 🔍 web_search zero-result fallback fix — dead/empty engine no longer stops the chain · rev 28: reinstall + restart live-verified same day (blocked ddg-api skipped → ddg-fetch returned results) |
| v1.9.15 | ⚡ B' ripgrep phase-1 prefilter for pattern_scan (byte-identical JS fallback guarantee) · rev 27: ripgrep promoted to runtime dependency, fixing silent fast-path loss on Hub installs — live-verified on the user machine |
| v1.9.14 | 🧠 get_memory local-file parse guard — keyless auto-context records no longer abort reads (hotfix) |
| v1.9.13 | 🔍 ripgrep-backed regex engine for grep_files (in-process WASM prefilter, transparent fallback keeps every hang guard) · executedTool ground-truth stamp on all tool results · Tier-1 dead-code removal (~90 KB) |
| v1.9.12 | 🆕 pattern_scan recursive content search (unsafe regex auto-demotes to literal; 256 KB / 10k-line hard caps) · puppeteer connected property-read fix · dead-file removal — full MD docs sync |
| v1.9.10 | 🔧 OOM-hardening suite: bounded web/RAG reads, chunking fixed-point termination, rag_web_content dedup — plugin-host heap is now safe under poison payloads |
| v1.9.9 | ⏱️ Deadline-capped grep_files (partial results + aborted flag) · AutoTracker token deltas fire thresholds inside long tool chains · live chat used ≈ N tok DELTA log |
| v1.9.8 | 🔒 Explicit project registration only · hang prevention (max_depth, line caps) · Step-0.7 keyword detection + lazy registry sync kills the "project not found" loop |
| v1.9.7 | 💾 Crash-resilient atomic writes everywhere — randomized temp filenames, rollback-on-failure, zero blocking I/O |
| v1.9.5–6 | 🧠 Graphify-inspired intelligence: confidence-tagged results, hub-exclusion clustering, cluster-aware tool priority · shell:true deprecation eliminated |
| v1.8.x | 🛡️ 3-layer line-edit guardrails · SDK v1.x token-counting accuracy (matches sidebar within <0.3%) · declarative registry refactor (~80 lines of if/else → 20-entry registry) |
@lmstudio/sdk ^1.5.0 · puppeteer ^24 · isomorphic-git ^1.38 · sharp ^0.35.3 · tesseract.js ^7 · pdf-parse / mammoth / xlsx (document pipeline) · ripgrep ^0.3.1 (WASM regex engine, lazy-loaded) · @dqbd/tiktoken (ContextGuard) · zod (runtime validation)
MIT — free to use, modify, ship. See LICENSE.
AI Toolbox is an all-in-one LM Studio plugin and AI agent toolkit for local LLMs: safe file tools, hang-proof codebase search, background builds, headless browser automation, Git & GitHub workflows, OCR, data visualization, local semantic RAG over PDF/DOCX/XLSX, cross-project memory, self-managing context windows — 130+ ready-made tool calls your model can use with zero glue code.