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

# Examples

> Common Rifteo usage patterns and real-world scenarios.

## Install your first skill

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

The CLI detects your installed agents automatically and installs the skill in the right place.

***

## Install a skill for a specific agent

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

***

## Find the right skill for a task

Install `find-skills` once and it will always recommend the right skill for your task:

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

Then in your agent:

```
I need to write a pentest report for this engagement
```

***

## Set up context-mcp

```bash theme={"system"}
pip install rifteo-context-mcp
rifteo-context install
```

Then in your agent:

```
get the web-app-pentest context
list all available security contexts
```

***

## Connect a bug bounty platform

```bash theme={"system"}
rifteo-context auth hackerone
```

Then in your agent:

```
get the scope for hackerone program "security"
search hacktivity for SSRF vulnerabilities
```

***

## Keep skills up to date

```bash theme={"system"}
# See what has a newer version
rifteo-skills outdated

# Update everything
rifteo-skills update
```

***

## Check which agents are detected

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