pixelkiln 0.23.0 → 0.25.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/dist/cli.d.ts +3 -1
- package/dist/cli.js +776 -332
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +511 -120
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +247 -113
- package/dist/index.d.ts +247 -113
- package/dist/index.js +499 -108
- package/dist/index.js.map +1 -1
- package/docs/ARTIFACTS.md +10 -5
- package/docs/CLI.md +54 -1
- package/docs/MANIFEST.md +5 -2
- package/docs/PIXELLAB.md +12 -0
- package/package.json +1 -1
- package/schema/manifest.schema.json +8 -0
- package/skills/pixelkiln/SKILL.md +4 -1
package/dist/cli.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ interface Args {
|
|
|
42
42
|
tag: boolean;
|
|
43
43
|
/** gallery: allow the page to edit manifest intent (prompts, sizes, tags, new assets). */
|
|
44
44
|
edit: boolean;
|
|
45
|
+
/** fetch: re-download downloaded outputs and replace files whose object changed upstream. */
|
|
46
|
+
refresh: boolean;
|
|
45
47
|
from?: string;
|
|
46
48
|
out?: string;
|
|
47
49
|
generator?: string;
|
|
@@ -86,7 +88,7 @@ interface Args {
|
|
|
86
88
|
*/
|
|
87
89
|
explicitLock?: string;
|
|
88
90
|
}
|
|
89
|
-
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", "quality", "refine", "recipe", "workspace", "help", "--help", "-h", "--version", "-v"];
|
|
91
|
+
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", "quality", "refine", "recipe", "workspace", "help", "--help", "-h", "--version", "-v"];
|
|
90
92
|
/**
|
|
91
93
|
* Strict parsing. Unknown flags are a hard error rather than being ignored,
|
|
92
94
|
* because a silently-dropped filter is expensive here: `--styles neon` (plural,
|