pixelkiln 0.35.0 → 0.37.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/CONTRIBUTING.md +7 -0
- package/README.md +1 -1
- package/dist/cli.js +800 -589
- package/dist/cli.js.map +1 -1
- package/dist/client/gallery.js +42 -5
- package/dist/index.cjs +551 -323
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +616 -71
- package/dist/index.d.ts +616 -71
- package/dist/index.js +538 -320
- package/dist/index.js.map +1 -1
- package/docs/ARCHITECTURE.md +8 -1
- package/docs/CLI.md +62 -2
- package/docs/LIBRARY.md +32 -0
- package/docs/MANIFEST.md +50 -2
- package/docs/QUALITY.md +16 -0
- package/docs/RECIPES.md +6 -2
- package/package.json +3 -1
- package/recipes/comfyui/pixel-art-xl-environment/1.0.0/pixelkiln.recipe.json +1 -1
- package/recipes/comfyui/pixel-art-xl-img2img/1.0.0/pixelkiln.recipe.json +1 -1
- package/schema/manifest.schema.json +8 -0
- package/schema/recipe.schema.json +4 -0
package/CONTRIBUTING.md
CHANGED
|
@@ -19,8 +19,15 @@ npm run test:security
|
|
|
19
19
|
npm test
|
|
20
20
|
npm run build
|
|
21
21
|
npm run test:package
|
|
22
|
+
npm run test:gallery
|
|
22
23
|
```
|
|
23
24
|
|
|
25
|
+
`test:gallery` serves a gallery over `FakeProvider` and drives it in headless
|
|
26
|
+
Chrome: the Generate and Regenerate buttons, the busy badge while a job runs,
|
|
27
|
+
the previous generation kept and restored for free, and zero console errors.
|
|
28
|
+
It needs a Chrome or Chromium binary (`CHROME=/path/to/chrome` when it is not
|
|
29
|
+
in a usual place) and skips without one outside CI.
|
|
30
|
+
|
|
24
31
|
The Next.js marketing/documentation site is isolated in `website/`:
|
|
25
32
|
|
|
26
33
|
```bash
|
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ provenance and no long-lived npm token.
|
|
|
57
57
|
| Existing-art onboarding | Manifest scaffolding, exact-hash account adoption, and prompt recovery. |
|
|
58
58
|
| Recovery | Safe stale-output replacement, validated caches, durable references, resumable paid jobs, and per-asset generation history with free restores. |
|
|
59
59
|
| Shared-account safety | Cross-project claim files or a registered workspace catalog, sibling-style exclusion, reviewed salvage, keep/discard tags, separate confirmed purge. |
|
|
60
|
-
| Quality control |
|
|
60
|
+
| Quality control | Palette snapping on download, native grid recovery, named approval, regression baselines, and fail-closed packaging. |
|
|
61
61
|
| Sprite packaging | Deterministic RGBA packing, stable-cell mounting, explicit external input lists, structural output roles. |
|
|
62
62
|
| Engine export | Lossless generic tile contract, Tiled Wang sets, and Godot 4 terrain sets. |
|
|
63
63
|
| Artifact integrity | Portable source/output hashes, canonical fingerprints, manual-edit protection, transactional promotion, crash journal recovery. |
|