> ## Documentation Index
> Fetch the complete documentation index at: https://beta.docs.replo.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Skills

> Installable skills that teach external AI agents how to work on Replo projects.

These skills make any AI agent with the Replo connector as capable on a Replo project as the agent inside Replo. Install the whole set with one command:

```bash theme={null}
npx skills add replohq/skills
```

That works with Claude Code, Cursor, Codex, OpenClaw, opencode, and other clients that support [Agent Skills](https://agentskills.io). Add `--list` to choose a subset, and run `npx skills update` later to pick up changes. Claude and ChatGPT users who connect Replo through the official directory already have them.

Two ways an external agent works on a Replo project, and every skill says which it uses:

1. **Edit the site's code directly.** Every Replo site is a Next.js repo — resolve it with `list_projects` → `list_sites`, mint a key with `create_api_key`, clone per the [Git docs](/git/get-started), and edit with a local dev server. Publish with `publish_site` when the user asks.
2. **Ask a Replo session.** Anything that needs Replo's in-workspace tools — brand extraction, template library installs, integration reads — is one `start_agent_session` prompt away.

Each skill links to its source. They are written for an agent to read, not a
person, so install them rather than following them by hand.

| Skill                                                                                                         | What it covers                                                                |
| ------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| [Apply a Brand to a Site](https://github.com/replohq/skills/blob/main/skills/apply-branding/SKILL.md)         | Restyle a site's colors, fonts, and logo from its design tokens.              |
| [Build Pages](https://github.com/replohq/skills/blob/main/skills/building-replo-pages/SKILL.md)               | Create and edit pages backed by real store data, not hardcoded values.        |
| [Connect a Custom Domain](https://github.com/replohq/skills/blob/main/skills/custom-domains/SKILL.md)         | Point your own domain at a Replo site, with the DNS records it needs.         |
| [Okendo Reviews](https://github.com/replohq/skills/blob/main/skills/okendo/SKILL.md)                          | Render Okendo reviews and star ratings on a page.                             |
| [Display Products](https://github.com/replohq/skills/blob/main/skills/product-display/SKILL.md)               | Load and display product data with the right architecture.                    |
| [Publish a Site](https://github.com/replohq/skills/blob/main/skills/publish/SKILL.md)                         | Take a site live, and diagnose a failed build or deploy.                      |
| [Query Analytics](https://github.com/replohq/skills/blob/main/skills/querying-analytics/SKILL.md)             | Query a project's traffic, conversion, and revenue data with SQL.             |
| [Rebuy Recommendations](https://github.com/replohq/skills/blob/main/skills/rebuy/SKILL.md)                    | Show Rebuy product recommendations on a page.                                 |
| [Create a Brand Kit](https://github.com/replohq/skills/blob/main/skills/replo-branding/SKILL.md)              | Extract a brand from a website or Figma file, then keep it updated.           |
| [Fix Safari & Mobile Rendering](https://github.com/replohq/skills/blob/main/skills/safari-rendering/SKILL.md) | Fix a page that renders correctly in preview but breaks on Safari or mobile.  |
| [Shopify Data & Cart](https://github.com/replohq/skills/blob/main/skills/shopify/SKILL.md)                    | Load a store's catalog, metafields, and cart from Shopify.                    |
| [Site Metadata & SEO](https://github.com/replohq/skills/blob/main/skills/site-metadata-conventions/SKILL.md)  | Set a site's title, description, social preview image, and search visibility. |
| [Smile.io Loyalty](https://github.com/replohq/skills/blob/main/skills/smile-io-integration/SKILL.md)          | Build loyalty and rewards pages backed by Smile.io.                           |
| [Statsig Experiments](https://github.com/replohq/skills/blob/main/skills/statsig/SKILL.md)                    | Run an A/B experiment on a page with Statsig.                                 |
| [Tracking Scripts & Consent](https://github.com/replohq/skills/blob/main/skills/tracking-scripts/SKILL.md)    | Add analytics and marketing pixels so they respect cookie consent.            |
