Creates interactive HTML playgrounds - self-contained single-file explorers with controls, live preview, and prompt output. Use when user asks for a playground, explorer, or interactive tool.
Creates interactive HTML playgrounds with live previews and natural language prompts for exploring concepts visually.
/plugin marketplace add https://www.claudepluginhub.com/api/plugins/aventerica89-claude-codex/marketplace.json/plugin install aventerica89-claude-codex@cpd-aventerica89-claude-codexThis skill inherits all available tools. When active, it can use any tool Claude has access to.
A playground is a self-contained HTML file with interactive controls on one side, a live preview on the other, and a prompt output at the bottom with a copy button.
When the user asks for an interactive playground, explorer, or visual tool - especially when the input space is large, visual, or structural.
| Template | Use Case |
|---|---|
| Design Playground | Visual design (components, layouts, spacing, color, typography) |
| Data Explorer | Data/query building (SQL, APIs, pipelines, regex) |
| Concept Map | Learning/exploration (knowledge gaps, scope mapping) |
| Document Critique | Document review (approve/reject/comment workflow) |
| Diff Review | Code review (git diffs with line-by-line commenting) |
| Code Map | Architecture (component relationships, data flow) |
const state = { /* all configurable values */ };
const DEFAULTS = { ...state };
function updateAll() {
renderPreview();
updatePrompt();
}
function updatePrompt() {
const parts = [];
// Only mention non-default values
if (state.borderRadius !== DEFAULTS.borderRadius) {
parts.push(`border-radius of ${state.borderRadius}px`);
}
// Use qualitative language alongside numbers
if (state.shadowBlur > 16) parts.push('a pronounced shadow');
else if (state.shadowBlur > 0) parts.push('a subtle shadow');
prompt.textContent = `Update the card to use ${parts.join(', ')}.`;
}
Run open <filename>.html to launch in user's default browser.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.