pixelkiln 0.16.0 → 0.18.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 +4 -4
- package/dist/cli.d.ts +16 -1
- package/dist/cli.js +329 -62
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +283 -55
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +200 -9
- package/dist/index.d.ts +200 -9
- package/dist/index.js +281 -55
- package/dist/index.js.map +1 -1
- package/docs/AGENTS.md +4 -2
- package/docs/ARCHITECTURE.md +19 -5
- package/docs/CLI.md +26 -3
- package/docs/COMFYUI.md +75 -7
- package/docs/GETTING_STARTED.md +8 -1
- package/docs/LIBRARY.md +24 -2
- package/docs/MANIFEST.md +47 -8
- package/docs/QUALITY.md +13 -8
- package/docs/RECOVERY.md +17 -0
- package/package.json +1 -1
- package/schema/manifest.schema.json +21 -0
- package/schema/recipe.schema.json +4 -0
- package/skills/pixelkiln/SKILL.md +6 -3
- package/skills/pixelkiln/references/comfyui.md +15 -1
- package/skills/pixelkiln/references/quality.md +9 -2
package/README.md
CHANGED
|
@@ -55,10 +55,10 @@ PixelKiln keeps the missing record:
|
|
|
55
55
|
| Workflow | What PixelKiln provides |
|
|
56
56
|
|---|---|
|
|
57
57
|
| Plan and budget | Offline manifest/lock/disk diff, provider-grouped estimates, keyed mixed-provider budget ceilings, JSON/CI gate. |
|
|
58
|
-
| Generate and review | Resumable submit/poll/pick/fetch pipeline
|
|
59
|
-
| Controlled
|
|
58
|
+
| Generate and review | Resumable submit/poll/pick/fetch pipeline, exact next-step hints, and a fast local candidate sheet. |
|
|
59
|
+
| Controlled inputs | Hashed image-to-image/inpaint lineage, fail-closed parent approval, source-versus-candidate review, and content-addressed per-asset ComfyUI bindings. |
|
|
60
60
|
| Existing-art onboarding | Manifest scaffolding, exact-hash account adoption, and prompt recovery. |
|
|
61
|
-
| Recovery |
|
|
61
|
+
| Recovery | Safe stale-output replacement, validated caches, durable references, and resumable paid jobs. |
|
|
62
62
|
| Shared-account safety | Cross-project claim files or a registered workspace catalog, sibling-style exclusion, reviewed salvage, keep/discard tags, separate confirmed purge. |
|
|
63
63
|
| Quality control | Manifest-native grid recovery, closed palettes, named approval, regression baselines, and fail-closed packaging. |
|
|
64
64
|
| Sprite packaging | Deterministic RGBA packing, stable-cell mounting, explicit external input lists, structural output roles. |
|
|
@@ -356,7 +356,7 @@ exporters, managed artifact writes, and offline provenance verification. See
|
|
|
356
356
|
| [Getting started](./docs/GETTING_STARTED.md) | First project, existing-art onboarding, everyday workflow, and what to commit. |
|
|
357
357
|
| [Set up PixelLab](./docs/PIXELLAB.md) | Production-provider credentials, manifest, generators, and account workflows. |
|
|
358
358
|
| [Set up Retro Diffusion](./docs/RETRO_DIFFUSION.md) | Experimental-provider credentials, styles, formats, cost checks, and limits. |
|
|
359
|
-
| [Set up ComfyUI](./docs/COMFYUI.md) |
|
|
359
|
+
| [Set up ComfyUI](./docs/COMFYUI.md) | Self-hosted workflows, per-asset input uploads, local cost semantics, and quality limits. |
|
|
360
360
|
| [Set up Scenario](./docs/SCENARIO.md) | Experimental hosted models, two-part credentials, CU preflight, review, and durable downloads. |
|
|
361
361
|
| [Versioned recipes](./docs/RECIPES.md) | Pinned workflow packs, model hashes, manifest templates, and quality contracts. |
|
|
362
362
|
| [Controlled revisions](./docs/REVISIONS.md) | Image-to-image/inpaint parents, masks, fail-closed readiness, provenance, and ComfyUI bindings. |
|
package/dist/cli.d.ts
CHANGED
|
@@ -4,8 +4,23 @@ import { z } from 'zod';
|
|
|
4
4
|
declare const GridConfidenceSchema: z.ZodEnum<["low", "medium", "high"]>;
|
|
5
5
|
type GridConfidence = z.infer<typeof GridConfidenceSchema>;
|
|
6
6
|
|
|
7
|
+
interface ReviewReadyInfo {
|
|
8
|
+
url: string;
|
|
9
|
+
keys: string[];
|
|
10
|
+
}
|
|
11
|
+
|
|
7
12
|
type TilesetFormat = "generic" | "tiled" | "godot";
|
|
8
13
|
|
|
14
|
+
interface CliWritable {
|
|
15
|
+
isTTY?: boolean;
|
|
16
|
+
write(chunk: string): unknown;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Interactive readiness is progress, not command output. Keep it on stdout in
|
|
20
|
+
* a terminal, but use stderr when stdout is piped so consumers such as `tail`
|
|
21
|
+
* cannot hold the only copy of the live URL until the server exits.
|
|
22
|
+
*/
|
|
23
|
+
declare function announceReviewReady(info: ReviewReadyInfo, stdout?: CliWritable, stderr?: CliWritable): void;
|
|
9
24
|
interface Args {
|
|
10
25
|
command: string;
|
|
11
26
|
manifest: string;
|
|
@@ -76,4 +91,4 @@ declare const COMMANDS: readonly ["init", "plan", "doctor", "gen", "submit", "po
|
|
|
76
91
|
*/
|
|
77
92
|
declare function parseArgs(argv: string[]): Args;
|
|
78
93
|
|
|
79
|
-
export { COMMANDS, parseArgs };
|
|
94
|
+
export { COMMANDS, announceReviewReady, parseArgs };
|