AI Coding AgentsAI Coding Agents

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.

How it works

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.md

After 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:

Works with any coding agent

AgentWhere to put it
Claude Code~/.claude/skills/sophi/SKILL.md (global) or <project>/.claude/skills/sophi/SKILL.md (project-local)
CodexAGENTS.md at your repo root (Codex reads it automatically)
Cursor.cursor/rules/sophi.md (or .cursorrules)
Windsurf.windsurf/rules/sophi.md
Any agentPoint 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.md

LLM-friendly endpoints

EndpointContents
https://docs.usesophi.com/llms-full.txtAll Sophi docs concatenated — ideal for one-shot context injection
https://docs.usesophi.com/llms.txtPage index with titles and URLs — ideal for retrieval-augmented workflows
https://docs.usesophi.com/<page>.mdAny individual page as clean Markdown
https://docs.usesophi.com/skill.md · /AGENTS.mdThe installable agent skill

On this page