imgx-mcp 1.4.1 → 1.6.0
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/CHANGELOG.md +47 -0
- package/README.md +510 -481
- package/dist/cli.bundle.js +49 -14
- package/dist/image-generation-skill.zip +0 -0
- package/dist/mcp.bundle.js +42 -12
- package/package.json +1 -1
- package/skills/image-generation/SKILL.md +523 -13
- package/skills/image-generation/references/providers.md +18 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.6.0 (2026-03-06)
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **`gemini-2.5-flash-image` (Nano Banana)** — re-added as the only Gemini image model with a **free tier** (10 RPM / 500 RPD, no credit card required). Max 1024×1024, 7 aspect ratios. Ideal entry point for users without paid API access
|
|
8
|
+
- **`gpt-image-1.5`** — OpenAI's latest image model. ~4x faster, 20% cheaper than gpt-image-1, improved text rendering and editing precision. Same API, drop-in replacement
|
|
9
|
+
- **`gpt-image-1-mini`** — Budget OpenAI model at $0.005–$0.036/image. Same API compatibility
|
|
10
|
+
- **`background` parameter** — `transparent`, `opaque`, or `auto` (OpenAI only). Available on `generate_image`, `edit_image`, and `edit_last` MCP tools, and as `--background` / `-b` CLI flag. Use `transparent` for icons, logos, and stickers with transparent PNG/WebP output
|
|
11
|
+
- **`quality` parameter** — `low`, `medium`, `high`, or `auto` (OpenAI only). Direct quality control that overrides the resolution-based mapping. Available on all MCP tools and as `--quality` / `-q` CLI flag
|
|
12
|
+
- **Viral style templates** — Ghibli, action figure, 3D clay, pixel art, and more in SKILL.md
|
|
13
|
+
- **Specialized use case guides** — Icon set generation, seamless patterns, technical diagrams, story sequences with character consistency
|
|
14
|
+
- **Multi-image consistency techniques** — Design token approach, character DNA template, style reference chains
|
|
15
|
+
- **Platform size guide** — Recommended aspect ratios and resolutions for social media, OGP, app stores, print, and blog platforms
|
|
16
|
+
- **Model aliases** — Nano Banana Pro, Nano Banana 2, Nano Banana, GPT Image 1.5, GPT Image Mini (+ Japanese variants) mapped in Skill for natural language model selection
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Default model changed to free tier** — `gemini-2.5-flash-image` (Nano Banana) is now the default model. Users start free (500 images/day, no credit card), and can upgrade to paid models (Nano Banana 2, Nano Banana Pro) when they need higher quality, 4K resolution, or extended aspect ratios
|
|
21
|
+
- **Gemini 3.1 Flash model added** — `gemini-3.1-flash-image-preview` (Nano Banana 2) as paid alternative. Supports 4K resolution and 14 aspect ratios
|
|
22
|
+
- **SKILL.md rewritten** — added detailed model specs (3 Gemini + 3 OpenAI), model selection guide, 9 use case templates (including transparent background), 24 editing techniques, prompt enhancement guide (Subject-Context-Style framework), and refinement patterns
|
|
23
|
+
- **providers.md rewritten** — 3-model comparison table with per-model capabilities
|
|
24
|
+
|
|
25
|
+
## 1.5.1 (2026-03-05)
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- **Re-release of v1.5.0** — v1.5.0 was unpublished during documentation review; npm does not allow re-publishing the same version. No code changes from v1.5.0.
|
|
30
|
+
- **Documentation** — Added `.imgx/` directory location explanation, `output_dir`/history relationship, and updated SKILL.md tips
|
|
31
|
+
|
|
32
|
+
## 1.5.0 (2026-03-05) [YANKED — npm does not allow re-publish]
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- **User config `projectRoot` fallback** — `findProjectRoot()` now checks `projectRoot` in user config as a final fallback when env var, MCP roots, and `.imgxrc` detection all fail
|
|
37
|
+
- **CLI `project-root` config key** — `imgx config set project-root /path/to/project` and `imgx config get project-root`
|
|
38
|
+
- 3 new tests for `projectRoot` fallback (total: 84 tests)
|
|
39
|
+
|
|
40
|
+
### Project root configuration (3 tiers)
|
|
41
|
+
|
|
42
|
+
| Method | Scope | How to set |
|
|
43
|
+
|--------|-------|------------|
|
|
44
|
+
| `IMGX_PROJECT_ROOT` env var in client config | Per-client (highest priority) | Add to `env` in `claude_desktop_config.json`, `.mcp.json`, etc. |
|
|
45
|
+
| Auto-detection (MCP roots / `.imgxrc` search) | Automatic | Works on CLI agents (Claude Code, Gemini CLI). Not available on Claude Desktop |
|
|
46
|
+
| `imgx config set project-root` | All clients on the machine | Stored in `~/.config/imgx/config.json` or `%APPDATA%\imgx\config.json` |
|
|
47
|
+
|
|
48
|
+
Detection priority: env var → MCP roots → `.imgxrc` upward search → user config `projectRoot`
|
|
49
|
+
|
|
3
50
|
## 1.4.1 (2026-03-04)
|
|
4
51
|
|
|
5
52
|
### Fixed
|