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

# Configuration

> Environment variables and agent config options for rifteo-context-mcp.

## Skills CLI

No configuration file required. The CLI auto-detects installed agents on your machine.

To target a specific agent:

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

To install globally instead of project-level:

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

***

## Context MCP server

### Environment variables

| Variable               | Description                                        | Default             |
| ---------------------- | -------------------------------------------------- | ------------------- |
| `RIFTEO_CONTEXTS_PATH` | Path to a local contexts repo clone                | GitHub API (remote) |
| `RIFTEO_LOG_LEVEL`     | Log verbosity: `DEBUG`, `INFO`, `WARNING`, `ERROR` | `INFO`              |
| `RIFTEO_LOG_FILE`      | Path to write logs to a file                       | stderr only         |

### Use a local contexts clone

Point the server at a local clone instead of fetching from GitHub:

```bash theme={"system"}
RIFTEO_CONTEXTS_PATH=/path/to/contexts rifteo-context-mcp
```

Or set it in your agent's MCP config:

```json theme={"system"}
{
 "command": "rifteo-context-mcp",
 "args": [],
 "env": {
  "RIFTEO_CONTEXTS_PATH": "/path/to/contexts"
 }
}
```

### Bug bounty credentials

Credentials are stored in `~/.rifteo/credentials.json` and managed via the CLI:

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

See [Commands](/usage/commands) for the full reference.
