artifact-organizer-share

artifact-organizer-share is a skill for Codex from keepYaoung/artifact-organizer. It costs 83 tokens per session (888 once invoked), scanned A, original, MIT.

A skill for publishing an existing Artifact Organizer HTML file so other people can open it through a public web link.

In plain words
What is it for?
Use it when someone asks to share, publish, deploy, or send an Artifact Organizer page. It needs the Vercel command-line tool, a prior login, and an HTML file to publish.
Why use it?
It removes the manual steps of finding the latest rendered file and deploying it. It only applies to Artifact Organizer outputs, not arbitrary websites.

Skill for Codex

Written for Codex: reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions Codex; mentions OpenCode.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./.claude/skills/artifact-organizer ~/.claude/skills/artifact-organizer \.

Good fit Use it when someone asks to share, publish, deploy, or send an Artifact Organizer page. It needs the Vercel command-line tool, a prior login, and an HTML file to publish.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/keepYaoung/artifact-organizer
agentmods
npx agentmods add skills/keepyaoung/artifact-organizer/artifact-organizer-share

Made for: Codex.

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 artifact-organizer-share

README.md
[![agentmods](https://agentmods.dev/badge/skills/keepyaoung/artifact-organizer/artifact-organizer-share/github.svg)](https://agentmods.dev/skills/keepyaoung/artifact-organizer/artifact-organizer-share)
Your own site
<a href="https://agentmods.dev/skills/keepyaoung/artifact-organizer/artifact-organizer-share"><img src="https://agentmods.dev/badge/skills/keepyaoung/artifact-organizer/artifact-organizer-share/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 artifact-organizer-share

Your own site · 80×15
<a href="https://agentmods.dev/skills/keepyaoung/artifact-organizer/artifact-organizer-share"><img src="https://agentmods.dev/badge/skills/keepyaoung/artifact-organizer/artifact-organizer-share.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 888 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.00083 $0.00888
Opus 5 $0.00042 $0.00444
Sonnet 5 $0.00017 $0.00178
Haiku 4.5 $0.00008 $0.00089

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

Security

Grade A, and why

artifact-organizer-share 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.

skills/artifact-organizer-share/SKILL.md · 80 lines

How it starts

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

Artifact Organizer — Share mode

Deploys an existing .html file (typically from ~/.artifact-organizer/out/) to Vercel and returns a public URL. Thin wrapper over the artifact-organizer skill's scripts/share.sh.

When to use

  • User just rendered a Artifact Organizer page and says "share this", "send me a link", "can I send this to someone".
  • User explicitly asks to deploy an HTML file.
  • User wants a public URL for an existing output.

Do not use for: generating new pages (use hyperscribe or hyperscribe-slides), deploying arbitrary sites (this only handles Artifact Organizer outputs).

Preconditions

  1. vercel CLI must be on PATH. If missing, the script exits 127 and tells the user: npm i -g vercel && vercel login.
  2. An .html file must exist at the path you pass.
  3. User should have run vercel login at least once (interactive — don't try to do it yourself).

Resolve the HTML path

  1. Explicit path given — use it (verify it exists).
  2. "last" / "just now" / no path — find the most recent output:
    HTML=$(ls -1t ~/.artifact-organizer/out/*.html 2>/dev/null | head -1)
    
    If nothing exists, ask the user to render one first with hyperscribe / hyperscribe-slides / hyperscribe-diff.

Deploy

# Locate the share script (installed alongside the hyperscribe skill).
SHARE=$(for p in \
  ./.claude/skills/artifact-organizer ~/.claude/skills/artifact-organizer \
  ./.codex/skills/artifact-organizer ~/.codex/skills/artifact-organizer \
  ./.cursor/skills/artifact-organizer ~/.cursor/skills/artifact-organizer \
  ./.opencode/skills/artifact-organizer ~/.opencode/skills/artifact-organizer \
  ~/.claude/plugins/cache/artifact-organizer-marketplace/*/plugins/artifact-organizer
do [ -f "$p/scripts/share.sh" ] && { echo "$p/scripts/share.sh"; break; }; done)

if [ -z "$SHARE" ]; then
  echo "artifact-organizer share script not found. Install with: npx skills add keepYaoung/artifact-organizer" >&2
  exit 1
fi

bash "$SHARE" "$HTML"

Read the full file on GitHub · 80 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 · 80 lines · 83 tokens per session scan A 4e591a1e1b6e

Subscribe to this mod's changes

artifact-organizer-share is a skill published in the GitHub repository keepYaoung/artifact-organizer (2 stars, last pushed 2mo ago), licensed MIT. It adds 83 tokens to every session and 888 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.

Related

Other skills, from other repositories

alibaba-maestro

Alibaba Cloud Maestro routing skill. Classify the user's Alibaba Cloud task, select the narrowest specialist agent or the right team of specialists from the catalog, and dispatch them — single specialist for focused tasks, parallel team (max 4) for multi-domain tasks. Never auto-dispatch live-guard agents.…

VincentChuWaiChow/vanguard-frontier-agentic · 100 tokens

mdma-integration

Integrate MDMA into an application and build features with it — wire up parsing, the runtime store, React rendering, LLM streaming, custom components, prompts, and CI validation. Use this skill when the user asks to add MDMA to an app, build a chat that streams MDMA, author or maintain a custom prompt, validate MDMA…

MobileReality/mdma · 111 tokens

contabo-live-instance-lifecycle-guard

Live-guard skill for Contabo VPS and VDS lifecycle operations including instance creation with product selection and region, reinstallation with image and Cloud-Init userData, and cancellation. Requires mandatory contract period acknowledgment (1, 3, 6, or 12 months), billing impact confirmation, and a rollback plan…

VincentChuWaiChow/vanguard-frontier-agentic · 91 tokens

contabo-live-storage-operations-guard

Live-guard skill for Contabo Object Storage (S3-compatible) bucket operations including inventory audit, access policy review, retention policy enforcement, and deletion workflows. Hard-stops any bucket deletion requested without verified backup evidence and a documented rollback plan. Use when the user needs to…

VincentChuWaiChow/vanguard-frontier-agentic · 78 tokens

all-deploy

Deploys any web app, API, or agent to the internet with a strict pre-deploy audit and a preview → health-check → prod flow. Detects Next, Vite, Astro, Remix, Nuxt, SvelteKit, FastAPI, Flask, Express, MCP server, Claude Agent SDK script, Python worker, Dockerized, and static projects; routes to Vercel, Railway…

Hainrixz/all-deploy · 263 tokens

databricks-identity-network-security

Use this skill to review Databricks identity and network security design for proper admin separation, SCIM/federation configuration, credential hygiene, and network boundary enforcement: admin roles, service-principal posture, OAuth vs PAT, token lifecycle, IP access lists, serverless network policies, secret scopes…

VincentChuWaiChow/vanguard-frontier-agentic · 85 tokens