AI Coding Agents
Install the Sophi skill so your AI coding agent — Codex, Claude Code, Cursor, Windsurf — integrates Sophi into your storefront for you, reading the live docs as it works.
Point your AI coding agent at Sophi and let it do the integration. Install the Sophi Agent Skill and tools like Codex, Claude Code, Cursor, or Windsurf can wire Sophi into your storefront for you — reading the live Sophi docs at task time (so the code is always current) and writing the product-feed, Web SDK, and Web Object integration against your codebase.
The skill points your agent at https://docs.usesophi.com/llms-full.txt (a single-file bundle of all Sophi docs) and the per-page .md endpoints. The agent reads the live content on demand instead of relying on training-data memory, then writes the integration.
Install for Claude Code
Run this one-liner in your terminal. It downloads the skill into the standard Claude Code skills directory.
mkdir -p ~/.claude/skills/sophi && curl -fsSL https://docs.usesophi.com/skill.md -o ~/.claude/skills/sophi/SKILL.mdAfter installation, Claude Code picks up the skill automatically. Ask it to "integrate Sophi" and it fetches the live docs and writes the code.
Manual download
Prefer to manage the file yourself? Download it directly:
skill.md
The raw Sophi Agent Skill file (Claude Code and any SKILL.md-aware tool).
AGENTS.md
Drop-in guide for Codex, Cursor, Windsurf, Copilot, and other AGENTS.md-aware tools.
Full LLM bundle
All Sophi docs in a single file — feed directly to any LLM.
Works with any coding agent
| Agent | Where to put it |
|---|---|
| Claude Code | ~/.claude/skills/sophi/SKILL.md (global) or <project>/.claude/skills/sophi/SKILL.md (project-local) |
| Codex | AGENTS.md at your repo root (Codex reads it automatically) |
| Cursor | .cursor/rules/sophi.md (or .cursorrules) |
| Windsurf | .windsurf/rules/sophi.md |
| Any agent | Point it at https://docs.usesophi.com/llms-full.txt, or paste the page index from https://docs.usesophi.com/llms.txt |
Per-page AI actions
Every page in these docs has Copy Markdown and Open actions in the top-right corner:
- Copy Markdown copies the raw Markdown of the page for pasting into a chat.
- Open opens the current page in ChatGPT or Claude with the full page text as context.
Any page is also readable as Markdown by appending .md to its URL:
https://docs.usesophi.com/docs/frontend-integration/sdk/installation.mdLLM-friendly endpoints
| Endpoint | Contents |
|---|---|
https://docs.usesophi.com/llms-full.txt | All Sophi docs concatenated — ideal for one-shot context injection |
https://docs.usesophi.com/llms.txt | Page index with titles and URLs — ideal for retrieval-augmented workflows |
https://docs.usesophi.com/<page>.md | Any individual page as clean Markdown |
https://docs.usesophi.com/skill.md · /AGENTS.md | The installable agent skill |