Skip to content

Commit fe09674

Browse files
CSCSoftwareclaude
andcommitted
chore: Bump version to 1.13.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7f88cc1 commit fe09674

3 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to AiDex will be documented in this file.
44

5+
## [1.13.0] - 2026-03-09
6+
7+
### Added
8+
- **Screenshot optimization**: New `scale` (0.1-1.0) and `colors` (2/4/16/256) parameters for `aidex_screenshot`
9+
- Reduces file size up to 95% (e.g., 108 KB → 5 KB with `scale: 0.5, colors: 2`)
10+
- Black & white mode (`colors: 2`) ideal for text-only screenshots — saves thousands of tokens
11+
- Cross-platform post-processing: Windows (System.Drawing), macOS (sips + ImageMagick), Linux (ImageMagick)
12+
- Size reporting: shows original → optimized size and percentage saved
13+
- **LLM auto-optimization strategy**: Tool description guides AI assistants to start with aggressive settings, retry if unreadable, and remember working settings per app during the session
14+
515
## [1.12.1] - 2026-03-07
616

717
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aidex-mcp",
3-
"version": "1.12.1",
3+
"version": "1.13.0",
44
"mcpName": "io.github.CSCSoftware/aidex",
55
"description": "MCP Server for persistent code indexing. Gives AI assistants (Claude, Gemini, Copilot, Cursor) instant access to your codebase. 50x less context than grep.",
66
"main": "build/index.js",

src/commands/session.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ const SESSION_TIMEOUT_MS = 5 * 60 * 1000;
7171
// ============================================================
7272

7373
const RELEASE_HIGHLIGHTS: string[] = [
74-
'Auto-setup on install — no more manual "aidex setup" needed',
75-
'Comprehensive AI instructions for all 27 tools (decision tree, search modes, examples)',
76-
'Code refactoring: shared utilities, DB transaction fixes, SQL injection fix',
74+
'Screenshot optimization: new `scale` and `colors` parameters reduce file size up to 95%',
75+
'LLM-optimized: scale=0.5 + colors=2 turns a 100 KB screenshot into ~5 KB (black & white, half size)',
76+
'AI strategy: tool description guides assistants to start aggressive, retry if unreadable, remember per app',
7777
];
7878

7979
// ============================================================

0 commit comments

Comments
 (0)