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

# Herodotus Full Stack AI Skill

> One skill to understand the entire Herodotus stack — pick the right products, compose cross-product workflows, and get started fast.

**AI Skills — Start Here**

<div style={{ marginBottom: "14px", display: "flex", gap: "10px", flexWrap: "wrap" }}>
  <button
    style={{
  background: "linear-gradient(90deg, #0C68F3 0%, #5B8CFF 100%)",
  color: "#FFFFFF",
  border: "none",
  borderRadius: "10px",
  padding: "10px 14px",
  fontWeight: 600,
  cursor: "pointer"
}}
    onClick={async () => {
  const text = await fetch("https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/herodotus/SKILL.md").then((r) => r.text());
  await navigator.clipboard.writeText(text);
}}
  >
    Copy Full Skill
  </button>

  <button
    style={{
  background: "#0F172A",
  color: "#FFFFFF",
  border: "1px solid #334155",
  borderRadius: "10px",
  padding: "10px 14px",
  fontWeight: 600,
  cursor: "pointer"
}}
    onClick={async () => {
  const text = await fetch("https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/herodotus/SKILL.md").then((r) => r.text());
  const blob = new Blob([text], { type: "text/markdown;charset=utf-8" });
  const url = URL.createObjectURL(blob);
  const a = document.createElement("a");
  a.href = url;
  a.download = "herodotus-ai-skill-full-stack-v1.md";
  a.click();
  URL.revokeObjectURL(url);
}}
  >
    Download Skill
  </button>
</div>

This is the **recommended starting skill** for any Herodotus integration. It covers the full product stack, helps your AI assistant pick the right products for your use case, and routes to the detailed per-product skills when you need implementation specifics.

Use this skill when you're:

* New to Herodotus and not sure which product you need
* Building a workflow that spans multiple Herodotus products
* Want your AI assistant to have full context on the stack

<Tabs>
  <Tab title="Claude Code">
    Global:

    ```bash theme={null}
    curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --claude
    ```

    Or project-local:

    ```bash theme={null}
    curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash -s -- --claude --project
    ```

    Or inside Claude Code:

    ```bash theme={null}
    /plugin marketplace add HerodotusDev/ai-skills
    /plugin install herodotus-skills@herodotus
    ```

    Or via the Claude CLI:

    ```bash theme={null}
    claude plugin marketplace add HerodotusDev/ai-skills
    claude plugin install herodotus-skills@herodotus
    ```

    Then use: `/herodotus-skills:herodotus`
  </Tab>

  <Tab title="Cursor">
    ```bash theme={null}
    mkdir -p .cursor/skills/herodotus
    curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/herodotus/SKILL.md \
      -o .cursor/skills/herodotus/SKILL.md
    ```

    The installer also places sub-skills under `.cursor/skills/herodotus/<skill>/`.
  </Tab>

  <Tab title="Codex">
    **Global:**

    ```bash theme={null}
    mkdir -p ~/.codex/skills/herodotus
    curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/herodotus/SKILL.md \
      -o ~/.codex/skills/herodotus/SKILL.md
    ```

    **Or project-local:**

    ```bash theme={null}
    mkdir -p .codex/skills/herodotus
    curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/herodotus/SKILL.md \
      -o .codex/skills/herodotus/SKILL.md
    ```
  </Tab>

  <Tab title="Antigravity">
    ```bash theme={null}
    mkdir -p .agent/skills/herodotus
    curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/plugins/herodotus-skills/skills/herodotus/SKILL.md \
      -o .agent/skills/herodotus/SKILL.md
    ```
  </Tab>

  <Tab title="Install All">
    ```bash theme={null}
    curl -fsSL https://raw.githubusercontent.com/HerodotusDev/ai-skills/main/install.sh | bash
    ```
  </Tab>
</Tabs>
