ワンクリックで
site-to-skill
Analyze a website and auto-generate a reusable SKILL.md for competitive audits
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyze a website and auto-generate a reusable SKILL.md for competitive audits
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Get code reviews and second opinions using OpenAI Codex CLI (GPT-5.3). Use for reviewing code changes, getting alternative perspectives on implementations, or validating approaches with another AI model.
Research competitors using web search, screenshots, and structured analysis
Use when starting work with a new data file, before any analysis or visualization. Also use when encountering parsing errors, unexpected values, or when the user says "check this data" or "what's in this file".
Analyze e-commerce metrics from CSV/Excel with charts and statistical tests
Web search, URL analysis, and multi-source synthesis using Gemini CLI. Use for online research, fetching and analyzing web pages, combining web search with local files, and synthesizing information from multiple sources.
Use when the user asks to generate or edit images via the OpenAI Image API (for example: generate image, edit/inpaint/mask, background removal or replacement, transparent background, product shots, concept art, covers, or batch variants); run the bundled CLI (`scripts/image_gen.py`) and require `OPENAI_API_KEY` for live calls.
| name | site-to-skill |
| description | Analyze a website and auto-generate a reusable SKILL.md for competitive audits |
Analyze a website and produce a reusable SKILL.md file that automates weekly competitive audits.
After running this skill, the user gets a new custom skill file that:
Use Playwright to inspect the DOM:
document.querySelectorAll('[class*="price"]').forEach(el => {
console.log(el.className, el.textContent.trim());
});
Build a selector map with multiple fallbacks per data point.
Run selectors against live pages. For each:
browser_wait_forOutput a complete skill file:
---
name: audit-{domain}
description: Weekly competitive audit of {domain}
---
# Competitive Audit: {Domain}
## Pages to Monitor
## Data Extraction (per page with CSS selectors)
## Output Format (changes table, snapshots, screenshots)
## Baseline Data (JSON of previous results)
~/.claude/skills/{domain}-audit/SKILL.md.browser_wait_for for JS-heavy sites.