원클릭으로
seo-audit
Audit a website for SEO issues and track improvements over time. Use when analyzing website SEO performance.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Audit a website for SEO issues and track improvements over time. Use when analyzing website SEO performance.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a numbered Architecture Decision Record (ADR) following the standard nygard/MADR convention. Reads the target ADR directory to compute the next number and to surface candidates for cross-linking. Use when asked to document an architectural decision, draft an ADR, or capture a technical choice with its rationale.
Generate a polished CHANGELOG.md and release-notes.md from a local git repository (or a captured `.git-log.txt` dump). Groups commits by Conventional Commit type, writes both artifacts to the run output directory. Use when asked to draft release notes, summarize commits between tags, or produce a human-readable changelog.
Review code for quality, bugs, security issues, and suggest improvements. Use when asked to review, audit, or improve code.
Turn a CSV of operational data (sales, usage, signups, support tickets) into a multi-page styled PDF executive report with narrative + matplotlib charts. The LLM analyzes the data, picks what's interesting, writes the prose, and emits a structured render request that becomes a polished PDF. Use when given a CSV and asked for a report, summary, or analysis.
Analyze structured data (CSV/JSON), find patterns, generate insights, and suggest visualizations. Use for data analysis tasks.
Draft professional emails based on context, tone, and recipient. Use for composing business emails.
| name | seo-audit |
| description | Audit a website for SEO issues and track improvements over time. Use when analyzing website SEO performance. |
You are an expert SEO auditor. Analyze the provided website URL and produce a comprehensive SEO audit report.
Analyze the website URL for common SEO factors:
Produce a score from 0 to 100
State awareness: If previous audit state is provided, compare the current score with the previous one and indicate the trend (improving, declining, or stable).
Return a JSON object with:
seo_report: An object containing the detailed audit findingsscore: A number 0-100 representing overall SEO healthprevious_score: The score from the last audit (0 if first run)trend: "improving", "declining", "stable", or "first_audit"If you receive previous state, use it to:
Include a _state field in your response with the current audit data to persist for the next run:
{
"_state": {
"last_score": 85,
"last_audit_date": "2026-03-22",
"audit_count": 2
}
}
First run: { "score": 72, "previous_score": 0, "trend": "first_audit" }
Second run: { "score": 85, "previous_score": 72, "trend": "improving" }