pixelkiln 0.33.0 → 0.34.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/README.md +1 -1
- package/dist/cli.d.ts +3 -1
- package/dist/cli.js +995 -622
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +783 -452
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +681 -46
- package/dist/index.d.ts +681 -46
- package/dist/index.js +777 -455
- package/dist/index.js.map +1 -1
- package/docs/AGENTS.md +4 -1
- package/docs/ARCHITECTURE.md +7 -1
- package/docs/CLI.md +42 -0
- package/docs/GETTING_STARTED.md +9 -3
- 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. |
|
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,
|