@goodandready/dsh-image-gen 0.10.16 → 0.10.17
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/README.md +8 -0
- package/README.ru.md +8 -0
- package/lib/index.js +12 -1360
- package/lib/register-tools.js +22 -0
- package/lib/tools/editing.js +325 -0
- package/lib/tools/frontend.js +258 -0
- package/lib/tools/generation.js +575 -0
- package/lib/tools/inspect.js +117 -0
- package/lib/tools/processing.js +324 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,6 +31,14 @@
|
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
34
|
+
## 🚀 Updates v0.10.17: Modular Tool Lifecycle (#216, #217)
|
|
35
|
+
* **Tool modules extracted from `apply()`**: host lifecycle in `lib/index.js` is now a thin cordis entry (~650 lines). Tool definitions live in `lib/tools/{generation,processing,editing,inspect,frontend}.js` behind `lib/register-tools.js`.
|
|
36
|
+
* **Per-tool labeled `ctx.effect`**: each of the 15 tools registers in its own effect (`dsh-image-gen: tool <name>`) for clean unload/reload disposal.
|
|
37
|
+
* **Project meta**: `AGENTS.md` and `index.md` document architecture, constraints, and the test matrix (internal workflow files — not shipped in the npm package).
|
|
38
|
+
* **Design contract**: `docs/design/DESIGN.md` no longer advertises the removed HistoryGallery UI (#203).
|
|
39
|
+
* **Regression lock**: `test/lifecycle-structure.test.mjs` asserts modular layout, labeled effects, and meta files. Suite: **132 unit tests**.
|
|
40
|
+
|
|
41
|
+
|
|
34
42
|
## ⚡ Overview
|
|
35
43
|
|
|
36
44
|
**`@goodandready/dsh-image-gen`** is a premier graphic generation and visual processing suite for DeepSeek Harness. It equips autonomous agents with an extensible set of tools for image generation, transformation, background removal, upscaling, vectorization, multi-reference blending, and quality inspection across 8 generative backends.
|
package/README.ru.md
CHANGED
|
@@ -24,6 +24,14 @@
|
|
|
24
24
|
</div>
|
|
25
25
|
|
|
26
26
|
---
|
|
27
|
+
## 🚀 Обновления v0.10.17: модульный жизненный цикл тулов (#216, #217)
|
|
28
|
+
* **Тулы вынесены из `apply()`**: host `lib/index.js` — тонкая cordis-точка входа. Определения тулов — в `lib/tools/*` через `lib/register-tools.js`.
|
|
29
|
+
* **Свой labeled `ctx.effect` на каждый tool** (`dsh-image-gen: tool <name>`) для корректной выгрузки.
|
|
30
|
+
* **Meta-файлы проекта**: `AGENTS.md` и `index.md` (не попадают в npm-пакет).
|
|
31
|
+
* **DESIGN.md** больше не упоминает удалённую HistoryGallery (#203).
|
|
32
|
+
* **Тесты**: `lifecycle-structure` + полный suite — **132 unit tests**.
|
|
33
|
+
|
|
34
|
+
|
|
27
35
|
|
|
28
36
|
## ⚡ Обзор возможностей
|
|
29
37
|
|