publish

publish is a skill for Claude Code, Codex from Aetheria-Labs1/storefront-skills. It costs 28 tokens per session (491 once invoked), scanned A, original, MIT.

A storefront publishing workflow for checking a page, making a draft preview, and releasing it live. A storefront page is a web page used to present or sell products or services.

In plain words
What is it for?
Use it to validate a generated page, create a preview, publish an approved draft, take a page offline, or duplicate it for an A/B test, where two versions are compared.
Why use it?
It reduces the risk of publishing a page that has not been checked on desktop and mobile. Live release requires the user's explicit approval.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the lexsis-storefront-skills plugin — 11 skills, 2 agents shipped together

Good fit Use it to validate a generated page, create a preview, publish an approved draft, take a page offline, or duplicate it for an A/B test, where two versions are compared.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aetheria-labs1/storefront-skills/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 Aetheria-Labs1/storefront-skills --skill publish
Clone the repo
git clone --depth 1 https://github.com/Aetheria-Labs1/storefront-skills

Made for: Claude Code, Codex.

Or install lexsis-storefront-skills, the plugin that ships this one along with the rest of its 11 skills, 2 agents.

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/aetheria-labs1/storefront-skills/publish/github.svg)](https://agentmods.dev/skills/aetheria-labs1/storefront-skills/publish)
Your own site
<a href="https://agentmods.dev/skills/aetheria-labs1/storefront-skills/publish"><img src="https://agentmods.dev/badge/skills/aetheria-labs1/storefront-skills/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/aetheria-labs1/storefront-skills/publish"><img src="https://agentmods.dev/badge/skills/aetheria-labs1/storefront-skills/publish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 491 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 pass 7 Sept 2026
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.00028 $0.00491
Opus 5 $0.00014 $0.00246
Sonnet 5 $0.00006 $0.00098
Haiku 4.5 $0.00003 $0.00049

Measured today against content hash 3a2fd82baa5a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 today.

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/publish/SKILL.md · 58 lines

How it starts

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

Publish a Page

Publishing is a separate, explicit action. Do not rebuild the page here.

Read references/workflow-intent.md. Intent inference may distinguish a draft request from a live-release request, but it never substitutes for explicit approval naming the page and version. A request to preview, create, finish, review, or make a page production-ready is not publication approval.

Use lexsis_pages.edit_context, lexsis_pages.integrity, lexsis_pages.source, lexsis_workspace.get, and lexsis_live_ops.publish. Resolve unfamiliar argument schemas with exact router/action discovery. Do not use a prose query for these known actions. An empty discovery result is not a publishing outage; the actual context, entitlement, or publish call determines availability. A local QA report cannot authorize or substitute for a successful live publish.

Gate

  1. Read the page's operation record and hosted QA evidence under references/source-artifact-workflow.md.
  2. Confirm the saved store/theme binding still exists.
  3. Confirm reviewed source, bundle and section hashes match the persisted draft and recorded baseline.
  4. Read lexsis_pages action edit_context.
  5. Confirm the remote version equals remote.lastKnownVersion.
  6. Confirm responsive, approved-versus-current hosted visual review, commerce, copy, claims, assets, and integrity checks passed against that same version and reviewed bundle.
  7. Re-read integrity and source/bundle evidence through MCP. Missing or stale evidence blocks release; no local file or validator substitutes for it.
  8. Confirm the store has the required entitlement.
  9. Ask for explicit approval naming the page and version.

Only then call:

lexsis_live_ops({ action: "publish", args: { page_id } })

Do not treat draft creation or a preview request as publishing approval.

Other Lifecycle Actions

Use lexsis_live_ops for unpublish or rollback only when the user explicitly requests that action and the target page/version is clear.

Read the full file on GitHub · 58 lines

Files

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.

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. today Changed · +1 lines 3a2fd82baa5a
  2. 4d ago Changed · +5 lines ef3a0392044e
  3. 7d ago Changed · +12 lines ceb29c270a9a
  4. 8d ago Changed · -35 lines · +7 tokens per session 784688ccd082
  5. 12d ago First seen · 75 lines · 21 tokens per session scan A b1a9d18c9fff

Subscribe to this mod's changes

publish is a skill published in the GitHub repository Aetheria-Labs1/storefront-skills (8 stars, last pushed today), licensed MIT. It adds 28 tokens to every session and 491 once invoked, about $0.0001 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.