comfy-registry-lifecycle

comfy-registry-lifecycle is a skill for Claude Code from laurigates/claude-plugins. It costs 49 tokens per session (6,047 once invoked), scanned A, original, MIT.

A guide to the release and publishing process for ComfyUI custom-node packs, from versioned commits through GitHub releases and the Comfy Registry.

In plain words
What is it for?
It helps set up and debug release-please, publishing workflows, lockfile version mismatches, registry status problems, and generated icons or banners.
Why use it?
It helps diagnose cases where automated checks pass but the published package, version information, web files, or artwork is wrong or missing.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the comfyui-plugin plugin — 17 skills shipped together

Good fit It helps set up and debug release-please, publishing workflows, lockfile version mismatches, registry status problems, and generated icons or banners.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/laurigates/claude-plugins/comfy-registry-lifecycle
Install

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.

Any agent
npx skills add laurigates/claude-plugins --skill comfy-registry-lifecycle
Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins

Made for: Claude Code.

Or install comfyui-plugin, the plugin that ships this one along with the rest of its 17 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for comfy-registry-lifecycle

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/comfy-registry-lifecycle.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/comfy-registry-lifecycle)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/comfy-registry-lifecycle"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/comfy-registry-lifecycle.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,047 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 5 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 83
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 207
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 478
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 485
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium MCP Rug Pull · line 404
    uvx/uv tool run commands without ==version create a rug-pull risk.
    Fix: Pin the version: uvx package-name==1.2.3
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.06047
Opus 5 $0.00024 $0.03024
Sonnet 5 $0.00010 $0.01209
Haiku 4.5 $0.00005 $0.00605

Measured 4d ago against content hash e95f3156fcba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

comfy-registry-lifecycle scanned grade A with 1 finding 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 4d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/registry_banner_bg.py, scripts/registry_banner_compose.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import json, urllib.request, zipfile, io
comfyui-plugin/skills/comfy-registry-lifecycle/SKILL.md · 497 lines

How it starts

The opening of the file, as written. The whole thing — 497 lines — stays where its author put it; the contents beside it link to each section on GitHub.

comfy-registry-lifecycle

A ComfyUI custom-node pack's release flow: conventional commits → release-please bumps pyproject.toml + CHANGELOG.md → merge the release PR → the published GitHub release triggers publish.ymlComfy-Org/publish-node-action publishes to registry.comfy.org. The failures below live in this flow (or the CI that gates it) and are easy to ship without noticing, because the pipeline reports green while the registry artifact is broken.

When to Use This Skill

Use this skill when... Use instead when...
Setting up or debugging a pack's release-please -> publish.yml -> registry pipeline Writing the pack's frontend/backend code itself -> comfyui-node-authoring
A published node's frontend or artwork isn't showing up correctly Smoke-testing the pack in a running instance -> comfyui-pack-live-smoke

1. uv.lock self-version drifts — release-please has no native uv.lock support

The lockfile records the workspace package's own version in its [[package]] entry. release-please's python release-type bumps pyproject.toml but not uv.lock (googleapis/release-please#2561), so the lock's self-version silently trails pyproject.toml across releases. There is no uv/pyproject.toml setting to omit the project's own version from the lock, so the lock must be kept in sync explicitly.

Fix — a structured toml extra-files updater in release-please-config.json (the declarative equivalent of uv lock --upgrade-package, not a hand-edit):

"extra-files": [
  {
    "type": "toml",
    "path": "uv.lock",
    "jsonpath": "$.package[?(@.name.value=='<pack-name>')].version"
  }
]

<pack-name> is the directory/package name. The toml updater parses the lock and sets only the matched version value at the JSONPath — everything else stays byte-stable. Note .name.value (release-please's TOML AST wraps scalar values).

To repair an already-drifted lock once: uv lock regenerates it to match pyproject.toml (the only diff is the self-version line, plus occasional uv specifier normalization like >=1.40>=1.40.0).

Read the full file on GitHub · 497 lines

Files

What ships with it

2 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.

Changes

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.

  1. 4d ago First seen · 497 lines · 49 tokens per session scan A e95f3156fcba

Subscribe to this mod's changes

comfy-registry-lifecycle is a skill published in the GitHub repository laurigates/claude-plugins (58 stars, last pushed today), licensed MIT. It adds 49 tokens to every session and 6,047 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

gitlab-devops

GitLab DevOps operations — issues, merge requests, CI/CD pipelines, repository browsing, labels, milestones, releases, and wiki management. Use when querying GitLab project status, monitoring pipeline executions, browsing repository files, creating issues for network findings, opening merge requests for config…

automateyournetwork/netclaw · 67 tokens

seed-snapshot-release

An automated workflow for creating and tracking a snapshot release of the pull request on the current branch. A snapshot release is a temporary package build used for testing a branch before a normal release.

daangn/seed-design · 19 tokens

push-ci

Push to remote and monitor CI. Validates branch safety, executes git push WITH explicit user approval, then monitors CI run status via gh CLI. Use when: user says 'push', 'push and watch CI', 'ship it', 'push-ci'. Not for: committing (use /smart-commit), creating PRs (use /create-pr), merging (use /merge-prep).

sd0xdev/sd0x-harness · 82 tokens

release-engineering

Plan and verify software releases with versioning, changelogs, release branches, feature flags, canaries, migration gates, rollback, deployment checks, and release readiness. Use when preparing a release, shipping a risky PR, coordinating app/backend/database rollout, recovering from a bad deploy, or defining release…

majiayu000/spellbook · 69 tokens

cmux-release

Prefer the /release command. It determines the new version (minor by default), gathers commits since the last tag, updates CHANGELOG.md, runs ./scripts/bump-version.sh, commits, runs ./scripts/release-pretag-guard.sh, then tags and pushes.

manaflow-ai/cmux · 39 tokens

release-readiness-check

Verify all prerequisites are met before a release by checking PRs, CI/CD status, environment health, and blocking issues across GitHub, ArgoCD, and Jira. Use before cutting a release, deploying to production, or during release planning.

caipe-io/ai-platform-engineering · 54 tokens