marketplace-publish-extension

marketplace-publish-extension is a skill for Claude Code from dcc-mcp/dcc-mcp-core. It costs 88 tokens per session (1,175 once invoked), scanned A, original, MIT.

A workflow for registering or updating an extension package in a marketplace catalog, usually a marketplace.json file.

In plain words
What is it for?
Use it to publish DCC-MCP skills, bundles, or agent plugins with install URLs, checksums, version requirements, and skill locations.
Why use it?
It removes the manual work of reading package metadata, building a catalog entry, and optionally committing and pushing the catalog change.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: built for openclaw.

Good fit Use it to publish DCC-MCP skills, bundles, or agent plugins with install URLs, checksums, version requirements, and skill locations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dcc-mcp/dcc-mcp-core/marketplace-publish-extension
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 dcc-mcp/dcc-mcp-core --skill marketplace-publish-extension
Clone the repo
git clone --depth 1 https://github.com/dcc-mcp/dcc-mcp-core

Made for: Claude Code.

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 marketplace-publish-extension

README.md
[![agentmods](https://agentmods.dev/badge/skills/dcc-mcp/dcc-mcp-core/marketplace-publish-extension/github.svg)](https://agentmods.dev/skills/dcc-mcp/dcc-mcp-core/marketplace-publish-extension)
Your own site
<a href="https://agentmods.dev/skills/dcc-mcp/dcc-mcp-core/marketplace-publish-extension"><img src="https://agentmods.dev/badge/skills/dcc-mcp/dcc-mcp-core/marketplace-publish-extension/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for marketplace-publish-extension

Your own site · 80×15
<a href="https://agentmods.dev/skills/dcc-mcp/dcc-mcp-core/marketplace-publish-extension"><img src="https://agentmods.dev/badge/skills/dcc-mcp/dcc-mcp-core/marketplace-publish-extension.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,175 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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: 1 finding, 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 Agent Snooping · line 26
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00088 $0.01175
Opus 5 $0.00044 $0.00588
Sonnet 5 $0.00018 $0.00235
Haiku 4.5 $0.00009 $0.00118

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

Security

Grade A, and why

marketplace-publish-extension 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/publish.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.

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.

skills/marketplace-publish-extension/SKILL.md · 113 lines

How it starts

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

Marketplace Publish Extension

CLI-First Control Path

For marketplace and live-DCC operations, use the dcc-mcp skill and dcc-mcp-cli whenever shell access is available. Its consent-gated install and update checkupdate apply contract is the single source of truth; do not invent a package-local CLI bootstrap path.

Publish (register or update) a DCC-MCP Skill, bundle, or Agent Plugin package to a marketplace catalog (marketplace.json).

Prefer the CLI for local and CI publishing:

dcc-mcp-cli marketplace pack ./my-extension --out dist/
dcc-mcp-cli marketplace publish ./my-extension \
  --catalog ./marketplace.json \
  --install-url https://github.com/<owner>/<repo>/releases/download/v0.1.0/my-extension.zip \
  --sha256 sha256:<digest> \
  --min-core-version 0.19.0 \
  --skill-root skill/my-extension

Tools

marketplace_publish_extension__publish

Scan an extension directory, build a CatalogEntry, and upsert it into the target marketplace.json (local file or remote URL-backed file). When the catalog source is a local git repository the tool can optionally commit and push the change.

Prerequisites

  • dcc-mcp-core installed
  • Write access to the target marketplace catalog path
  • Git (if using commit+push mode)

Release Gate — Python 3.7

  • Verify py37 wheels exist and py37 CI is green before publishing.
  • py37-lite fallback wheels do NOT satisfy the release gate. Native py37 builds are an LTS requirement with no automatic calendar expiry.
  • Confirm requires-python = ">=3.7" in pyproject.toml is unchanged.
  • Removing native py37 requires an accepted superseding ADR, a major release, and at least 180 days of notice.

Workflow

  1. Point the tool at a local Skill directory containing SKILL.md, or an Agent Plugin directory containing root plugin.json and skills/*/SKILL.md.
  2. The CLI reads Skill frontmatter or Agent Plugin manifest metadata.
  3. Additional CLI-supplied fields (install url, ref, skill roots, tags, maintainer, icon, and showcase) are merged in. Use a repository-relative 16:9 PNG, JPEG, WebP, AVIF, or animated GIF path; the marketplace resolves it at the pinned 40-character Git revision.
  4. A CatalogEntry is built and upserted into the target marketplace.json. New catalogs use the v1 skills layout and preserve v1-only fields when an existing entry is updated.
  5. If the catalog source is a git repo and --commit is passed, the updated marketplace.json is committed and pushed.

Read the full file on GitHub · 113 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. 12d ago First seen · 113 lines · 88 tokens per session scan A 21ece640c987

Subscribe to this mod's changes

marketplace-publish-extension is a skill published in the GitHub repository dcc-mcp/dcc-mcp-core (44 stars, last pushed yesterday), licensed MIT. It adds 88 tokens to every session and 1,175 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-30.

Related

Other skills, from other repositories

artclaw-tool-creator

A guided tool for creating custom tools in the ArtClaw system, which connects an AI assistant with digital-content applications. It can package an existing skill, generate a script, or combine tools, then preview and save the result.

IvanYangYangXi/artclaw_bridge · 41 tokens

sd-node-ops

A Substance Designer guide for creating, connecting, and configuring nodes in material graphs, which are step-by-step networks that produce textures.

IvanYangYangXi/artclaw_bridge · 67 tokens

houdini-simulation

A Houdini guide for building smoke, fire, rigid-body, fluid, and cloth simulations. It covers the usual node steps for setting up, solving, processing, and caching these effects.

IvanYangYangXi/artclaw_bridge · 75 tokens

blender-context

A read-only Blender context inspector, where Blender is software for creating and rendering 3D scenes. It reports the current selection, scene contents, file, viewport camera, and collection hierarchy.

IvanYangYangXi/artclaw_bridge · 77 tokens

blender-viewport-capture

A Blender viewport capture tool, where the viewport is the window showing a 3D scene while you work. It saves an OpenGL or rendered preview screenshot for visual inspection.

IvanYangYangXi/artclaw_bridge · 85 tokens

comfyui-img2img

An image-to-image workflow for ComfyUI, a visual tool for running AI image-generation pipelines. It creates a new image from an existing one, including style changes, enhancement, and local redraws.

IvanYangYangXi/artclaw_bridge · 64 tokens