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

# Commands

> Full reference for all rifteo-skills CLI commands and flags.

## `add`

Install a skill into all detected agents.

```bash theme={"system"}
rifteo-skills add <skill-name>
```

| Option           | Description                          |
| ---------------- | ------------------------------------ |
| `--agent <name>` | Install into a specific agent only   |
| `--global`       | Install globally across all projects |

```bash theme={"system"}
# Install for all detected agents
rifteo-skills add bugbounty-reporter

# Install into a specific agent
rifteo-skills add bugbounty-reporter --agent claude-code

# Install globally across all projects
rifteo-skills add bugbounty-reporter --global
```

***

## `remove`

Remove an installed skill.

```bash theme={"system"}
rifteo-skills remove <skill-name>
```

***

## `list`

Show all installed skills with their version and status.

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

***

## `available`

Browse all skills available to install.

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

***

## `outdated`

Check which installed skills have a newer version available.

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

***

## `update`

Update all installed skills to their latest version.

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

***

## `agents`

See which agents were detected on this machine.

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

***

## Slash commands (Claude Code)

Install any skill for Claude Code and you get five slash commands that work in every session, no skill loaded required:

| Command          | What it does                                                                                                                                 |
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| `/rifteo:triage` | 7-question pre-submission gate. Outputs GO, KILL, or DOWNGRADE with evidence                                                                 |
| `/rifteo:chain`  | Given a confirmed finding, checks the signal table for companion bugs to escalate severity                                                   |
| `/rifteo:report` | Writes a submission-ready bug bounty report: title, steps, PoC, impact, remediation                                                          |
| `/rifteo:hunt`   | Launches a structured 7-phase engagement workflow on a target                                                                                |
| `/rifteo:intel`  | Pulls CVEs, GitHub advisories, and HackerOne hacktivity for any named technology                                                             |
| `/rifteo:setup`  | Audits your Rifteo install: shows installed skills and commands, checks context-mcp config, and gives exact setup steps for anything missing |

```bash theme={"system"}
rifteo-skills add bugbounty-reporter --agent claude-code
# Install Rifteo slash commands for Claude Code? [Y/n/never]
```

***

## Supported agents

| Agent          | Flag             |
| -------------- | ---------------- |
| Claude Code    | `claude-code`    |
| Gemini CLI     | `gemini-cli`     |
| Codex          | `codex`          |
| Cursor         | `cursor`         |
| GitHub Copilot | `github-copilot` |
| Windsurf       | `windsurf`       |
| Cline          | `cline`          |
| Continue       | `continue`       |
| Aider Desk     | `aider-desk`     |
| Roo Code       | `roo`            |
| OpenHands      | `openhands`      |
| Goose          | `goose`          |
| Devin          | `devin`          |
| Augment        | `augment`        |
| Amp            | `amp`            |

Run `rifteo-skills agents` to see the full list of 50+ supported agents.
