publish

publish is a skill for Claude Code from myclaude-sh/myclaude-creator-engine. It costs 53 tokens per session (3,654 once invoked), scanned A, original, MIT.

A release tool that publishes a packaged product to the MyClaude marketplace using its command-line program. It checks the package, account login, and creator information before publishing.

In plain words
What is it for?
Use it after packaging a product when you want to publish it, ship it, or make it available on MyClaude.
Why use it?
It handles the checks and publishing commands needed to put a prepared product live. It also stops when the product has not been packaged or the account is not ready.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool; mentions Claude Code.

Part of the studio-engine-core plugin — 8 skills shipped together

Good fit Use it after packaging a product when you want to publish it, ship it, or make it available on MyClaude.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/myclaude-sh/myclaude-creator-engine/publish
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 myclaude-sh/myclaude-creator-engine --skill publish
Clone the repo
git clone --depth 1 https://github.com/myclaude-sh/myclaude-creator-engine

Made for: Claude Code.

Or install studio-engine-core, the plugin that ships this one along with the rest of its 8 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 publish

README.md
[![agentmods](https://agentmods.dev/badge/skills/myclaude-sh/myclaude-creator-engine/publish/github.svg)](https://agentmods.dev/skills/myclaude-sh/myclaude-creator-engine/publish)
Your own site
<a href="https://agentmods.dev/skills/myclaude-sh/myclaude-creator-engine/publish"><img src="https://agentmods.dev/badge/skills/myclaude-sh/myclaude-creator-engine/publish/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 publish

Your own site · 80×15
<a href="https://agentmods.dev/skills/myclaude-sh/myclaude-creator-engine/publish"><img src="https://agentmods.dev/badge/skills/myclaude-sh/myclaude-creator-engine/publish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,654 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.
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.00053 $0.03654
Opus 5 $0.00026 $0.01827
Sonnet 5 $0.00011 $0.00731
Haiku 4.5 $0.00005 $0.00365

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

Security

Grade A, and why

publish 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 11d 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.

.claude/skills/publish/SKILL.md · 315 lines

How it starts

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

Publisher

Publish a packaged product to the MyClaude marketplace via CLI delegation.

When to use: After /package has staged .publish/ directory.

When NOT to use: If product hasn't been packaged yet (run /package first).


Activation Protocol

  1. Shared preamble: Load references/quality/activation-preamble.md — context assembly, persona adaptation, deterministic routing rules.
  2. Identify product: $ARGUMENTS as slug → workspace/{slug}/
  3. Read .meta.yaml → verify state is "packaged"
  4. Verify .publish/ exists with vault.yaml
  5. Check CLI: which myclaude — if not found, show install instructions
  6. Check CLI auth: run myclaude whoami — if "not logged in", show: "Not authenticated. Run myclaude login first." and stop.
  7. Read creator.yaml → load author metadata. If missing — "Creator profile not found. Run /onboard first." and stop. 6b. Load proactives: Load references/engine-proactive.md — wire #1 (pipeline guidance: after publish, suggest /status to track installs), #14 (feedback loop: after publish, suggest checking install data next session), #18 (WOW moment for first publish).
  8. Load voice identity: Load references/quality/engine-voice-core.md. Load the full references/quality/engine-voice.md only when composing the publish celebration (Step 6) — that is a peak moment. Use publish celebration format: "Published to myclaude.sh — live now." + install command + distribution vector note. Brief, proud, specific. 7b. Exemplar load: Load references/quality/exemplar-outputs.md sections E8 and E9 only — the first-publish celebration and nth-publish compact. Your celebration MUST carry the same Frame + emotion calibration: full ceremony for first/significant publishes, compact ✦ line for expert nth publishes. Adapt to creator journey position.
  9. CLI contract: Load references/cli-contract.md for unified error handling. This skill has mixed severity — the most critical CLI surface in the pipeline. Severity map:
    • Blocking: validate --json (Step 3) — abort publish if validation fails or CLI unavailable
    • Blocking: publish (Step 4) — cannot proceed without CLI. Show manual alternative: myclaude.sh/publish
    • Blocking: whoami (Step 5 pre-flight) — must be authenticated before publish
    • Silent-skip: search (Step 8 competitive context) — skip without warning on failure
    • Silent-skip: profile pull (Step 9 XP reminder) — skip without warning on failure
    • All queries except publish: append 2>/dev/null, 15s timeout
    • Auth detection: use contract's auth flow pattern (whoami → check exit code + "not logged" in output)

Read the full file on GitHub · 315 lines

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. 11d ago First seen · 315 lines · 53 tokens per session scan A 258eea63ac03

Subscribe to this mod's changes

publish is a skill published in the GitHub repository myclaude-sh/myclaude-creator-engine (25 stars, last pushed 5mo ago), licensed MIT. It adds 53 tokens to every session and 3,654 once invoked, about $0.0003 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

finalize

Finalize orphaned recordings - stop processes, compress, push to orphan branch. TRIGGERS - finalize recording, stop asciinema, orphaned recording.

terrylica/cc-skills · 33 tokens

github-ops

GitHub remote operations: repo creation, metadata, releases, issue/PR management with preview-before-send, and read-only security auditing. Triggers on: push to github, ship release, gh release, audit github repo, gh issue, gh pr, merge PR, branch protection, secret scanning, SECURITY.md.

0xDarkMatter/claude-mods · 67 tokens

ci-cd-ops

CI/CD pipeline patterns with GitHub Actions, release automation, and testing strategies. Use for: github actions, workflow, CI, CD, pipeline, deploy, release, semantic release, changesets, goreleaser, matrix, cache, secrets, environment, artifact, reusable workflow, composite action.

0xDarkMatter/claude-mods · 66 tokens

release-and-changelog

Use when cutting a release, bumping a version, or writing release notes. Activate for keywords like "release", "version bump", "changelog", "release notes", "tag", "publish", "ship a release", "v1.x", "v2.x". Enforces version hygiene: SemVer respect, changelog discipline, atomic commits, tagged release. Always reflect…

duthaho/claudekit · 99 tokens

fable-release

Audit and certify repository merge and release readiness against required quality gates, clean git working trees, and verified distribution artifacts. Use when preparing a release tag, validating release checklist criteria, publishing npm/PyPI packages, or certifying a branch for merge — even if the user does not…

imMamdouhaboammar/get-fable · 113 tokens

ship

Commit, push, create PR(s), and auto-finalize — full automation pipeline. Handles uncommitted changes and recently created PRs.

dryvist/claude-code-plugins · 30 tokens