Community Environments banner
PrimeIntellect-ai PrimeIntellect-ai

Community Environments

Development community

Description

Lightly-reviewed collection of community environments

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Prime Intellect Prime Intellect


PRIME-Community-Environments: Training-Ready RL Environments + Evals


Installation

**Quick Installation (Recommended)**

curl -sSL https://raw.githubusercontent.com/PrimeIntellect-ai/community-environments/main/scripts/install.sh | bash
Manual Installation
  1. Install Git LFS
sudo apt update && sudo apt install git-lfs
  1. Initialize Git LFS
git lfs install
  1. Clone the repository
git clone git@github.com:PrimeIntellect-ai/community-environments.git
cd community-environments
  1. (Optional) Pull Git LFS
git lfs pull
  1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.local/bin/env
  1. Synchronize the environment
uv sync
  1. Install pre-commit hooks
uv run pre-commit install
  1. Install and authenticate with Prime CLI
uv tool install prime
prime config set-api-key 

Creating environments

Create a new environment template

prime env init  

This will create an environment in `environments/`. Enter the project directory with

cd environments/

Then, edit your environment by implementing the `load_environment` function. To test, install the environment as a local package (editable) and then run the `vf-eval` entrypoint.

uv pip install -e .
uv run vf-eval 

Once you are done, push the environment to the registry.

prime env push 

If you bump th