Skip to main content

Skills CLI

No configuration file required. The CLI auto-detects installed agents on your machine. To target a specific agent:
rifteo-skills add finding-writer --agent claude-code
rifteo-skills add finding-writer --agent gemini-cli
To install globally instead of project-level:
rifteo-skills add finding-writer --global

Context MCP server

Environment variables

VariableDescriptionDefault
RIFTEO_CONTEXTS_PATHPath to a local contexts repo cloneGitHub API (remote)
RIFTEO_LOG_LEVELLog verbosity: DEBUG, INFO, WARNING, ERRORINFO
RIFTEO_LOG_FILEPath to write logs to a filestderr only

Use a local contexts clone

Point the server at a local clone instead of fetching from GitHub:
RIFTEO_CONTEXTS_PATH=/path/to/contexts rifteo-context-mcp
Or set it in your agent’s MCP config:
{
 "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:
rifteo-context auth hackerone
rifteo-context auth --list
rifteo-context auth --remove hackerone
See Commands for the full reference.