prompt-artifact

Publishes saved prompts as claude.ai artifacts with verbatim copy support.

Updated Jun 8, 2026
One-click install
npx skills add https://github.com/shawn-sandy/agentics-kit --skill prompt-artifact-shawn-sandy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: prompt-artifact
Source: https://github.com/shawn-sandy/agentics-kit/tree/main/kit/plugins/artifact-tools/skills/prompt-artifact
Command: npx skills add https://github.com/shawn-sandy/agentics-kit --skill prompt-artifact-shawn-sandy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Sharing saved prompts with others requires a stable, public page where the prompt text can be copied exactly as written, without escaping, re-indentation, or smart-quote corruption, and without the shared link going stale. ## Core Features & Use Cases - Single or Library Publishing: Publish one saved prompt by default, or the entire filterable prompt library with the --library flag, both republishing to a single stable URL. - Verbatim Copy Guarantee: Builds a page centered on a copy button that returns the raw prompt text exactly, with a six-value escaping table to prevent corrupted pastes. - Security Gate: Runs a blocking security-scrub over every prompt body before publishing, halting on any leaked secrets, endpoints, or payloads. - Use Case: After saving a reusable code-review prompt with /plan-agent:prompt, publish it as a claude.ai artifact and share the URL with teammates, who can copy the prompt verbatim into their own sessions. ## Quick Start Ask the assistant to publish a saved prompt as a claude.ai artifact, optionally adding --library to publish the whole prompt library.

Frequently Asked Questions about prompt-artifact

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I publish a saved prompt as a claude.ai artifact?▼

Invoke the skill after saving a prompt with /plan-agent:prompt. It resolves the prompts directory, scrubs the prompt for secrets, builds a self-contained page with a verbatim copy button, and publishes it to a stable URL.

How do I publish my entire prompt library at once?▼

Pass the --library flag anywhere in the arguments. The skill switches to library mode, publishes every saved prompt as a filterable gallery on one page, and records the single shared URL for future republishing.

Does the copied prompt text stay exactly as written?▼

Yes, the page is built around a copy button that returns the raw prompt verbatim, with no HTML entities, re-indentation, or smart quotes. A six-value escaping table in the page-building reference prevents paste corruption.

What happens if a prompt contains secrets or API endpoints?▼

A blocking security-scrub gate scans every prompt body before publishing. A BLOCKED result stops the publish entirely with the masked findings reported, and in library mode one finding halts the whole gallery.

Why does republishing not create a new URL?▼

Both single and library modes record the artifact URL after the first publish and republish to that same URL on subsequent runs. This keeps shared links stable instead of minting a new page each session.