pixelkiln 0.33.0 → 0.34.1
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 +4 -4
- package/dist/cli.d.ts +3 -1
- package/dist/cli.js +1114 -720
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +1103 -743
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +769 -77
- package/dist/index.d.ts +769 -77
- package/dist/index.js +830 -483
- package/dist/index.js.map +1 -1
- package/docs/AGENTS.md +4 -1
- package/docs/ARCHITECTURE.md +13 -1
- package/docs/CLI.md +43 -1
- package/docs/GETTING_STARTED.md +11 -5
- package/docs/LIBRARY.md +15 -0
- package/docs/MANIFEST.md +1 -0
- package/docs/RECOVERY.md +7 -0
- package/package.json +1 -1
- package/schema/manifest.schema.json +5 -0
- package/skills/pixelkiln/SKILL.md +4 -0
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ provenance and no long-lived npm token.
|
|
|
55
55
|
| Hand edits | Touch-ups in your own editor or a pinned in-browser Pixelorama, kept beside the generated art with the generation still the record; frame and tile sets member by member. |
|
|
56
56
|
| Controlled inputs | Hashed image-to-image/inpaint lineage, fail-closed parent approval, source-versus-candidate review, and content-addressed per-asset ComfyUI bindings. |
|
|
57
57
|
| Existing-art onboarding | Manifest scaffolding, exact-hash account adoption, and prompt recovery. |
|
|
58
|
-
| Recovery | Safe stale-output replacement, validated caches, durable references,
|
|
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
60
|
| Quality control | Manifest-native grid recovery, closed palettes, 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. |
|
|
@@ -65,8 +65,8 @@ provenance and no long-lived npm token.
|
|
|
65
65
|
|
|
66
66
|
### Local human review
|
|
67
67
|
|
|
68
|
-
`pixelkiln pick` opens a local candidate sheet
|
|
69
|
-
small sprites
|
|
68
|
+
`pixelkiln pick` opens a local candidate sheet with native aspect ratios and
|
|
69
|
+
crisp small sprites. No model chooses artwork for you.
|
|
70
70
|
|
|
71
71
|

|
|
72
72
|
|
|
@@ -84,7 +84,7 @@ reviews from the page under that ceiling.
|
|
|
84
84
|
Hand edits live beside the art, not in place of the record. [`pixelkiln edit`](docs/CLI.md#edit)
|
|
85
85
|
opens a copy in your own editor; with `--edit` the gallery does the same, or opens
|
|
86
86
|
it in a pinned, hash-verified [Pixelorama](docs/CLI.md#tools) build right in the page
|
|
87
|
-
and saves it back
|
|
87
|
+
and saves it back with its layers kept, one file per member for frame and tile sets.
|
|
88
88
|
|
|
89
89
|

|
|
90
90
|
|
package/dist/cli.d.ts
CHANGED
|
@@ -72,6 +72,8 @@ interface Args {
|
|
|
72
72
|
note?: string;
|
|
73
73
|
/** ComfyUI `models` directory used for offline recipe model verification. */
|
|
74
74
|
modelRoot?: string;
|
|
75
|
+
/** restore: a previous generation to bring back — 1-based, newest first, or an output hash prefix. */
|
|
76
|
+
generation?: string;
|
|
75
77
|
/** Subcommand for `quality`, `recipe`, `refine`, or `workspace`. */
|
|
76
78
|
subcommand?: string;
|
|
77
79
|
/** Path to a workspace catalog. Defaults to `pixelkiln.workspace.json` in cwd. */
|
|
@@ -90,7 +92,7 @@ interface Args {
|
|
|
90
92
|
*/
|
|
91
93
|
explicitLock?: string;
|
|
92
94
|
}
|
|
93
|
-
declare const COMMANDS: readonly ["init", "plan", "doctor", "gen", "submit", "poll", "pick", "fetch", "restore", "adopt", "accept", "salvage", "purge", "prune", "audit", "cache", "pack", "mount", "export", "tag", "balance", "status", "gallery", "edit", "tools", "quality", "refine", "recipe", "workspace", "help", "--help", "-h", "--version", "-v"];
|
|
95
|
+
declare const COMMANDS: readonly ["init", "plan", "doctor", "gen", "submit", "poll", "pick", "fetch", "restore", "adopt", "accept", "salvage", "purge", "prune", "audit", "cache", "pack", "mount", "export", "tag", "balance", "status", "gallery", "edit", "tools", "history", "quality", "refine", "recipe", "workspace", "help", "--help", "-h", "--version", "-v"];
|
|
94
96
|
/**
|
|
95
97
|
* Strict parsing. Unknown flags are a hard error rather than being ignored,
|
|
96
98
|
* because a silently-dropped filter is expensive here: `--styles neon` (plural,
|