focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:aeo — Answer Engine Optimization workflow. Audit content for E-E-A-T + structure signals that drive LLM citation (ChatGPT, Perplexity, Claude, Gemini, Mistral). Optimize content in 3 modes (conservative/balanced/aggressive). Track which LLMs cite which pages via local
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-aeoContext preview
What this command does when you run it.
/cs:aeo — Answer Engine Optimization workflow. Audit content for E-E-A-T + structure signals that drive LLM citation (ChatGPT, Perplexity, Claude, Gemini, Mistral). Optimize content in 3 modes (conservative/balanced/aggressive). Track which LLMs cite which pages via local
name: "cs-aeo" description: "/cs:aeo — Answer Engine Optimization workflow. Audit content for E-E-A-T + structure signals that drive LLM citation (ChatGPT, Perplexity, Claude, Gemini, Mistral). Optimize content in 3 modes (conservative/balanced/aggressive). Track which LLMs cite which pages via local ledger. Industry-aware thresholds (8 industries with YMYL calibration). Distinct from SEO — refuses to optimize one at expense of the other."
**Command:** `/cs:aeo [action] [args]`
The `cs-aeo` command is the **entry point for AEO workflows**: audit → optimize → publish → track citations.
These share a foundation (E-E-A-T) but optimize for different conversion events:
They can run on the same content. The cs-aeo agent will surface this and recommend running both for high-leverage pages.
/cs:aeo audit --input post.md --industry saas /cs:aeo audit --url https://example.com/blog/post --industry healthcare /cs:aeo audit --sample
Returns composite 0-100 with per-dimension breakdown (E-E-A-T + Structure) and top 5 fixes in priority order.
/cs:aeo optimize --input post.md --mode balanced --output post-aeo.md /cs:aeo optimize --input post.md --mode aggressive --industry finance
Three modes:
/cs:aeo track --url https://example.com/post --llm perplexity --query "what is AEO" --date 2026-05-17
Maintains a local ledger at `~/.aeo-data/citations.json`. No telemetry.
/cs:aeo report --url https://example.com/post
Returns total citations, LLM coverage, velocity, top queries, verdict (EARLY / EMERGING / STRONG).
/cs:aeo export --output citations.csv
For reporting to clients / stakeholders.
| Q | Asks | When | |---|---|---| | Q1 | What action — audit / optimize / track / report? | Always | | Q2 | Industry (saas / healthcare / finance / legal / ecommerce / b2b / media / education) | Always (calibrates thresholds) | | Q3 | For `optimize`: mode (conservative / balanced / aggressive)? | Only when action=optimize |
Most invocations exit intake after Q2.
# Phase 1: Audit python3 marketing-skill/skills/aeo/scripts/aeo_audit.py --input <file> --industry <industry> # → composite score 0-100 + top fixes # Phase 2: Optimize (if audit < industry threshold) python3 marketing-skill/skills/aeo/scripts/aeo_optimizer.py \ --input <file> --mode <mode> --industry <industry> --output <file>-aeo.md # → optimized variant + changelog # Phase 3: Publish (manual step — review the optimized variant, then deploy) # Phase 4: Track (over 4-12 weeks) python3 marketing-skill/skills/aeo/scripts/citation_tracker.py \ --action add --url <url> --llm <llm> --query <query> --date <YYYY-MM-DD> # → ledger updated # Phase 5: Report (monthly) python3 marketing-skill/skills/aeo/scripts/citation_tracker.py \ --action report --url <url> # → per-URL citation report
The auditor calibrates per-industry. YMYL ("Your Money or Your Life") topics use stricter thresholds:
| Industry | Min Composite | Why | |---|---|---| | Healthcare | 85 | Direct health implications | | Finance | 85 | Real financial decisions | | Legal | 85 | Legal jeopardy if misapplied | | Education | 75 | Learning outcomes | | SaaS, B2B, Media | 70 | Business decisions, moderate stakes | | E-commerce | 65 | Product reviews, lower individual risk |
Content for YMYL topics scoring below threshold is unlikely to be cited regardless of other signals — the cs-aeo agent will flag this and refuse aggressive optimization until the foundational dimensions improve.
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Stage, commit, and push the current branch following git governance rules.
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform…