pixelkiln 0.15.0 → 0.16.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/PROVIDERS.md CHANGED
@@ -26,7 +26,7 @@ them.
26
26
  |---|---|---|---|
27
27
  | PixelLab | Production; paid generation and account workflows live-tested | `PIXELLAB_API_KEY` | generations |
28
28
  | Retro Diffusion | Experimental; authenticated paid still generation, download, provenance, and recovery live-tested; advanced workflows pending | `RD_API_KEY` | USD |
29
- | ComfyUI | Experimental; local single-image generation, four-candidate queue, provenance, and cache-only recovery live-tested on Apple MPS | none; optional `COMFYUI_BASE_URL` | free |
29
+ | ComfyUI | Experimental; local generation, review, recovery, and image-to-image revision smoke live-tested on Apple MPS; inpaint/outpaint remain mock-tested | none; optional `COMFYUI_BASE_URL` | free |
30
30
  | Scenario | Experimental; BFL Flux 2 Dev authentication, CU preflight, paid single/two-output generation, review, download, and durable recovery live-tested | `SCENARIO_SDK_API_KEY` and `SCENARIO_SDK_API_SECRET` | compute-units |
31
31
  | FakeProvider | Test-only deterministic lifecycle | none | free |
32
32
 
@@ -81,9 +81,10 @@ prompt, size, batch, and optional seed inputs PixelKiln may replace.
81
81
 
82
82
  | Decision | ComfyUI through PixelKiln |
83
83
  |---|---|
84
- | Best fit today | Local composition experiments, private inputs, and teams prepared to maintain and manually validate custom graphs |
84
+ | Best fit today | Local composition experiments, private inputs, controlled revisions, and teams prepared to maintain and manually validate custom graphs |
85
85
  | PixelKiln generator | `map` stills |
86
86
  | Output | One PNG output node, with 1–16 review candidates |
87
+ | Revision input | `image-to-image`, `inpaint`, and user-authored `outpaint` graphs; hashed parent/mask uploads and source comparison are covered. The bundled img2img graph passed a three-strength live smoke but missed the requested winter treatment and lost alpha. |
87
88
  | Cost model | `0 free`; local compute and hosting are outside PixelKiln's estimate |
88
89
  | Reproducibility | Workflow content is hashed; model files, custom-node versions, and runtime settings must still be managed outside PixelKiln |
89
90
  | Account lifecycle | Read-only connectivity check; no balance, remote object listing, tagging, or purge |
@@ -95,6 +96,12 @@ the same graph and still differ because their checkpoint bytes, custom nodes,
95
96
  or sampler settings differ. Commit the workflow and record the model stack used
96
97
  to test it.
97
98
 
99
+ The revision manifest and dependency gate are provider-neutral, but ComfyUI is
100
+ the only built-in adapter that currently opts in. PixelLab, Retro Diffusion,
101
+ and Scenario reject revision assets offline. See
102
+ [Controlled asset revisions](./docs/REVISIONS.md) before using the bundled
103
+ square image-to-image graph.
104
+
98
105
  ## Where Scenario fits
99
106
 
100
107
  Scenario adds hosted third-party models and reusable project-specific models
package/README.md CHANGED
@@ -42,7 +42,7 @@ PixelKiln keeps the missing record:
42
42
  - a committed manifest defines assets, styles, generators, budgets, and output;
43
43
  - a committed lockfile maps each style/asset to paid provider work and exact
44
44
  output hashes;
45
- - planning distinguishes missing, stale, recoverable, in-flight, untracked, and
45
+ - planning distinguishes blocked, missing, stale, recoverable, in-flight, untracked, and
46
46
  manually changed files before money is spent;
47
47
  - local review keeps human judgment where it matters, choosing artwork;
48
48
  - content-addressed recovery prevents a transient URL failure from buying the
@@ -56,6 +56,7 @@ PixelKiln keeps the missing record:
56
56
  |---|---|
57
57
  | Plan and budget | Offline manifest/lock/disk diff, provider-grouped estimates, keyed mixed-provider budget ceilings, JSON/CI gate. |
58
58
  | Generate and review | Resumable submit/poll/pick/fetch pipeline with a fast local candidate sheet. |
59
+ | Controlled revisions | Hashed image-to-image/inpaint lineage, fail-closed parent approval, and source-versus-candidate review; ComfyUI is the first adapter. |
59
60
  | Existing-art onboarding | Manifest scaffolding, exact-hash account adoption, and prompt recovery. |
60
61
  | Recovery | Validated local content cache, durable provider-reference restore, account object-hash cache, and resumable jobs. |
61
62
  | Shared-account safety | Cross-project claim files or a registered workspace catalog, sibling-style exclusion, reviewed salvage, keep/discard tags, separate confirmed purge. |
@@ -342,7 +343,8 @@ console.log(plan.groups, plan.actionable.length)
342
343
  ```
343
344
 
344
345
  The package also exports audit and image-regression gates, quality-profile
345
- inspection and refinement, lock/output helpers, provider contracts, sprite packing/mounting, tile
346
+ inspection and refinement, revision-readiness checks, lock/output helpers,
347
+ provider contracts, sprite packing/mounting, tile
346
348
  exporters, managed artifact writes, and offline provenance verification. See
347
349
  [Library API](./docs/LIBRARY.md).
348
350
 
@@ -357,6 +359,7 @@ exporters, managed artifact writes, and offline provenance verification. See
357
359
  | [Set up ComfyUI](./docs/COMFYUI.md) | Experimental self-hosted server, workflow bindings, local cost semantics, and limits. |
358
360
  | [Set up Scenario](./docs/SCENARIO.md) | Experimental hosted models, two-part credentials, CU preflight, review, and durable downloads. |
359
361
  | [Versioned recipes](./docs/RECIPES.md) | Pinned workflow packs, model hashes, manifest templates, and quality contracts. |
362
+ | [Controlled revisions](./docs/REVISIONS.md) | Image-to-image/inpaint parents, masks, fail-closed readiness, provenance, and ComfyUI bindings. |
360
363
  | [CLI reference](./docs/CLI.md) | Every command, flag, JSON mode, and exit contract. |
361
364
  | [Manifest reference](./docs/MANIFEST.md) | Style/asset fields, quality profiles, and generator constraints. |
362
365
  | [Mixed-provider projects](./docs/MIXED_PROVIDERS.md) | Per-style routing, provider-keyed budgets, recovery, and account commands. |