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

# Quickstart

> Install a skill and run your first security methodology in under 2 minutes.

## Prerequisites

* Node.js 18 or higher
* Git
* An AI agent installed (Claude Code, Gemini CLI, Cursor, or any [supported agent](/usage/commands))

## Install the CLI

Install globally via npm:

```bash theme={"system"}
npm install -g @rifteo/skills
```

## Add your first skill

```bash theme={"system"}
rifteo-skills add bugbounty-reporter
```

The CLI detects your installed agents automatically and puts the skill in the right place. No account. No configuration.

Not sure which skill to use? Install `find-skills` first it reads your task description and loads the right skill automatically:

```bash theme={"system"}
rifteo-skills add find-skills
```

## Verify the installation

```bash theme={"system"}
rifteo-skills list
```

## Activate a skill

After installing, activate it inside your agent:

| Agent             | How to activate                                                            |
| ----------------- | -------------------------------------------------------------------------- |
| Claude Code       | Type `/skills` and select from the list                                    |
| Cursor / Windsurf | Type `/skill-name` in chat                                                 |
| Gemini CLI        | Type `@skill-name` to invoke                                               |
| Other agents      | Skills are loaded automatically from the skills directory on session start |

Then describe your task in plain language:

```
I found that /api/orders/{id} returns order data without checking
if the authenticated user owns that order. Any integer ID works.
```

The agent produces a complete, triage-ready report. First try.

## Claude Code slash commands

When installing for Claude Code, the CLI offers to add six slash commands that work in every session — no skill loaded required:

| Command          | What it does                                                               |
| ---------------- | -------------------------------------------------------------------------- |
| `/rifteo:triage` | 7-question pre-submission gate — GO, KILL, or DOWNGRADE with evidence      |
| `/rifteo:chain`  | Given a confirmed finding, checks for companion bugs to escalate severity  |
| `/rifteo:report` | Writes a submission-ready bug bounty report                                |
| `/rifteo:hunt`   | Launches a 7-phase structured engagement workflow                          |
| `/rifteo:intel`  | Pulls CVEs, GitHub advisories, and HackerOne hacktivity for any technology |
| `/rifteo:setup`  | Audits your install and gives exact fix steps for anything missing         |

Accept the prompt when it appears, or install slash commands manually:

```bash theme={"system"}
rifteo-skills add bugbounty-reporter --agent claude-code
```

## Next steps

<CardGroup cols={2}>
  <Card title="All skills" icon="puzzle-piece" href="/skills/overview">
    Browse the full skill library
  </Card>

  <Card title="CLI commands" icon="terminal" href="/usage/commands">
    Explore all available commands and flags
  </Card>
</CardGroup>
