A collection of AI coding skills shared across the ScaleCommerce team. These skills give AI coding assistants (Claude Code, Cursor, Copilot, and others) specialized knowledge and workflows that we've refined through real project work — so the AI gets it right the first time instead of guessing.
Skills are installed via npx skills and work across 40+ AI coding agents.
# Install all ScaleCommerce skills
npx skills add scalecommerce/skills
# Install globally (available in all projects)
npx skills add scalecommerce/skills -g
# Install a specific skill only
npx skills add scalecommerce/skills -s landing-page-guide# Check for updates
npx skills check
# Pull latest versions
npx skills updateBuild high-converting landing pages with proven conversion psychology and layout patterns. Based on testing 300+ pages, this skill guides the AI through the full workflow — from strategy (customer awareness stages, message match, psychology principles) to code (Nuxt4 + NuxtUI) to deployment. Includes mobile optimization, A/B testing priorities, page speed checklists, and AI-generated visuals via OpenRouter.
Use it when: Creating landing pages, squeeze pages, lead gen pages, optimizing conversion rates, writing landing page copy, or A/B testing page elements.
Anthropic's official frontend-design skill — guides the AI to create distinctive, production-grade interfaces that avoid generic "AI slop" aesthetics. Forces bold aesthetic choices (typography, color, motion, spatial composition) before writing code, so every project gets a unique visual identity instead of the same Inter-font-purple-gradient template.
Use it when: Building any web UI — components, pages, dashboards, landing pages, or styling/beautifying existing interfaces.
Origin: anthropics/skills (277k+ installs). Included here so the team gets it automatically.
Thorough, opinionated code review that finds real problems — not formatting nits. Runs automated scans (duplicate detection, inconsistency checks, complexity analysis, security patterns, documentation drift) then does a manual architecture and quality review. Produces a prioritized report grouped by severity: critical issues, architecture concerns, documentation drift, code quality, and what's actually done well.
Use it when: Reviewing a codebase, auditing code quality, finding duplicates, checking for anti-patterns, hunting tech debt, or any "take a look at my code and tell me what's wrong" request.
Works with: All languages and frameworks.
Generate and edit images using the OpenRouter API with the Nano Banana model (Gemini 3.1 Flash Image). Includes a Python CLI (scripts/nb.py) that handles the full flow — prompt enrichment, API calls, base64 decoding, and file output — in a single command. Supports text-to-image generation, image editing (background removal, style transfer, element changes), batch variations, aspect ratios, and resolution control.
Use it when: You need AI-generated images — product mockups, hero visuals, illustrations, image editing, or any "make me a picture of..." / "edit this image..." request.
Requires: OPENROUTER_API_KEY environment variable.
Add a new skill by creating a folder under skills/ with a SKILL.md file:
skills/
├── code-review/
│ ├── SKILL.md
│ └── scripts/ # Automated analysis tools
├── frontend-design/
│ └── SKILL.md
├── landing-page-guide/
│ └── SKILL.md
├── nano-banana/
│ ├── SKILL.md
│ └── scripts/ # CLI wrapper (nb.py)
└── your-new-skill/
└── SKILL.md
See the Skills documentation for the SKILL.md format.