Skip to main content
These pages give you ready-to-install skills for Codex. Download the file that matches your workflow, save it as SKILL.md in ~/.codex/skills/<skill-name>/, and Codex will use it when the task matches.
If you only need the files, use these URLs directly: https://raw.githubusercontent.com/kumo-ai/kumo-skills-catalog/master/kumo/kumo-tuning-agent/SKILL.md https://raw.githubusercontent.com/kumo-ai/kumo-skills-catalog/master/kumo/kumo-rfm-agent/SKILL.md

Available Skills

Kumo Tuning

KumoRFM

If you want Codex to connect to your data, build a graph, validate a predictive query, train a model, and iterate on performance, use kumo-tuning-agent. If you want Codex to work with KumoRFM for instant predictions, graph inspection, or turning a natural-language request into a valid query without training a model, use kumo-rfm-agent. Some common examples:
  • “Train and tune a churn model from our Snowflake tables” -> kumo-tuning-agent
  • “Predict which users are likely to churn in the next 90 days without training” -> kumo-rfm-agent
  • “Turn this request into a valid recommendation query” -> kumo-rfm-agent
  • “Compare model metrics and improve the plan before writing predictions to S3” -> kumo-tuning-agent

Install

Codex expects the installed file to be named SKILL.md. After download, install the file like this:
mkdir -p ~/.codex/skills/<skill-name>
curl -L <skill-url> -o ~/.codex/skills/<skill-name>/SKILL.md

Before You Start

Set the Kumo environment variables before using these skills in Codex. For RFM workflows:
export KUMO_API_KEY="your-kumo-api-key"
For tuning workflows:
export KUMO_API_ENDPOINT="https://your-deployment.kumoai.cloud/api"
export KUMO_API_KEY="your-kumo-api-key"