Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/dmmdea/offload-harness/comfyuinpx skills add dmmdea/offload-harness --skill comfyuigit clone --depth 1 https://github.com/dmmdea/offload-harnessWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00081 | $0.07236 |
| Opus 5 | $0.00041 | $0.03618 |
| Sonnet 5 | $0.00016 | $0.01447 |
| Haiku 4.5 | $0.00008 | $0.00724 |
Grade A, and why
pp-comfyui scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 569 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ComfyUI — Printing Press CLI
Prerequisites: Install the CLI
This skill drives the comfyui-pp-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
- Install via the Printing Press installer. It defaults binaries to
$HOME/.local/binon macOS/Linux and%LOCALAPPDATA%\Programs\PrintingPress\binon Windows:npx -y @mvanhorn/printing-press-library install comfyui --cli-only - Verify:
comfyui-pp-cli --version - Ensure the reported install directory is on
$PATHfor the agent/runtime that will invoke this skill.
If the npx install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.6 or newer). This installs into $GOPATH/bin (default $HOME/go/bin), so add that directory to $PATH instead:
go install github.com/mvanhorn/printing-press-library/library/ai/comfyui/cmd/comfyui-pp-cli@latest
If --version reports "command not found" after install, the runtime cannot see the binary directory on $PATH. Do not proceed with skill commands until verification succeeds.
ComfyUI keeps its render history in RAM and loses it on every restart. This CLI submits graphs, reads honest timings from the server's own execution timestamps, and keeps runs, graphs, node schemas and outputs in local SQLite so comparisons survive the restarts that tuning requires. It attaches to an in-flight render rather than starting a second one, and it answers questions the server cannot: why a model is invisible, what a loader will actually accept, and which configuration produced a given file.
When to Use This CLI
Reach for this when driving a local ComfyUI server programmatically: submitting graphs, comparing configurations, or tracing a rendered file back to what produced it. It is the right tool when a comparison must survive a server restart, when a model appears invisible to a loader, or when a duration needs to be trustworthy rather than scraped from a log. It is not an installer or a node manager — use comfy-cli for installing ComfyUI and its custom nodes.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .golangci.yml 214 B
- .goreleaser.yaml 1.3 KB
- .printing-press-patches/.gitkeep 0 B
- .printing-press-patches/0001-cross-platform-host-path-handling.patch 3.7 KB
- .printing-press-patches/0002-mcp-code-orchestration.patch 69 KB
- .printing-press-patches/0003-structured-error-envelope.patch 6.5 KB
- .printing-press-patches/0004-mcp-code-orch-gate-and-binary-budget.patch 11 KB
- .printing-press-patches/0005-verify-noop-contract-and-classifier-recarry.patch 8.5 KB
- .printing-press-patches/README.md 19 KB
- .printing-press.json 4.1 KB
- AGENTS.md 7.0 KB
- CHANGELOG.md 133 B
- CLAUDE.md 11 B
- cmd/comfyui-pp-cli/main.go 342 B
- cmd/comfyui-pp-mcp/main.go 2.3 KB
- examples/minimal-graph.json 1.1 KB
- go.mod 1.2 KB
- go.sum 7.5 KB
- internal/cache/cache.go 1.8 KB
- internal/cli/agent_context.go 7.6 KB
- internal/cli/analytics.go 5.5 KB
- internal/cli/api_discovery.go 3.7 KB
- internal/cli/channel_workflow.go 7.6 KB
- internal/cli/comfy_api_surface_test.go 16 KB
- internal/cli/comfy_deps.go 14 KB
- internal/cli/comfy_exp.go 43 KB
- internal/cli/comfy_history_ops.go 8.0 KB
- internal/cli/comfy_jobs.go 57 KB
- internal/cli/comfy_models.go 30 KB
- internal/cli/comfy_nodes_test.go 42 KB
- internal/cli/comfy_nodes.go 34 KB
- internal/cli/comfy_nodeset.go 8.5 KB
- internal/cli/comfy_provenance.go 44 KB
- internal/cli/comfy_register.go 4.6 KB
- internal/cli/comfy_replay.go 17 KB
- internal/cli/comfy_server_ops.go 14 KB
- internal/cli/comfy_slots_test.go 13 KB
- internal/cli/comfy_slots.go 33 KB
- internal/cli/comfy_stage.go 25 KB
- internal/cli/comfy_submit.go 44 KB
- internal/cli/comfy_timing.go 7.7 KB
- internal/cli/comfy_upload_mask.go 13 KB
- internal/cli/data_source.go 28 KB
- internal/cli/deliver.go 3.6 KB
- internal/cli/doctor.go 22 KB
- internal/cli/errenvelope_test.go 12 KB
- internal/cli/errenvelope.go 15 KB
- internal/cli/exitcodes.go 10 KB
- internal/cli/export.go 5.3 KB
- internal/cli/feedback.go 6.7 KB
- internal/cli/helpers.go 91 KB
- internal/cli/history_get.go 4.5 KB
- internal/cli/history_list.go 3.4 KB
- internal/cli/history.go 714 B
- internal/cli/import.go 3.7 KB
- internal/cli/learn_init_test.go 4.1 KB
- internal/cli/learn_init.go 3.0 KB
- internal/cli/learnings_candidates_test.go 16 KB
- internal/cli/learnings_candidates.go 22 KB
- internal/cli/learnings_stats_test.go 5.7 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 569 lines · 81 tokens per session scan A ccf81510bb59
pp-comfyui is a skill published in the GitHub repository dmmdea/offload-harness (2 stars, last pushed 3d ago), licensed Apache-2.0. It adds 81 tokens to every session and 7,236 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
python-repl
Interactive Python REPL automation with common helpers and best practices.
implementing-llms-litgpt
Implements and trains LLMs using Lightning AI's LitGPT with 20+ pretrained architectures (Llama, Gemma, Phi, Qwen, Mistral). Use when need clean model implementations, educational understanding of architectures, or production fine-tuning with LoRA/QLoRA. Single-file implementations, no abstraction layers.
chrome
The user's own Chrome — their real window, profile, logins and tabs, driven through the browser extension relay. Load when a task needs a signed-in session, a page they already have open, or anything the headless sandbox browser cannot see.
cua
Computer use — a headless sandbox browser for opening, reading, and interacting with public web pages. Load when the user asks to browse, search, open a page, inspect a link, or when live web content matters and no sign-in is involved.
designer_guide
Guidance for creating and editing designs using the designer tool.
row_bot_status_guide
Guidance for querying and managing Row-Bot's own configuration and logs.