with one click
implement
Make tests pass. Invoke after /write-tests produces failing tests.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Make tests pass. Invoke after /write-tests produces failing tests.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | implement |
| description | Make tests pass. Invoke after /write-tests produces failing tests. |
| context | fork |
| agent | implementer |
Make failing tests pass with minimal code.
/implement
The implementer will automatically find failing tests from the most recent /write-tests run.
/write-tests has created failing tests/write-tests first)/simplify instead)/write-testsThe implementer agent will produce:
## Implementation Complete
### Tests Passed
- `test_client_reset_returns_observation` ✓
- `test_client_step_advances_state` ✓
- `test_client_handles_invalid_action` ✓
### Changes Made
| File | Change |
|------|--------|
| `src/openenv/core/client.py` | Added `reset()` method |
| `src/openenv/core/client.py` | Added `step()` method |
| `src/openenv/core/client.py` | Added input validation |
### Verification
PYTHONPATH=src:envs uv run pytest tests/test_client.py -v All 3 tests passed
### Next Steps
- Mark todo as complete
- Consider `/simplify` if change was large
- Move to next pending todo
/simplify's job)/write-tests's job)Before returning, verify:
The implementer is a "code machine" - it takes test specifications and produces the minimal code to satisfy them. This keeps implementations focused and prevents scope creep.
Think of it as TDD's second phase: Red → Green → Refactor. You are "Green" - make tests pass, nothing more.
Generate OpenEnv environments from a concrete use case (for example, "generate an env for the library textarena"). Use when asked to design or implement a new environment under envs/ by researching a target library/API, selecting matching OpenEnv examples, asking key implementation questions, and building models/client/server/openenv.yaml. Do not use for model training or evaluation tasks.
Release workflow for deploying OpenEnv environments to Hugging Face Spaces and keeping canonical references in sync.
Hugging Face Hub CLI (`hf`) for downloading, uploading, and managing repositories, models, datasets, and Spaces on the Hugging Face Hub. Replaces now deprecated `huggingface-cli` command.
OpenEnv CLI (`openenv`) for scaffolding, validating, building, and pushing OpenEnv environments.
Deploy an OpenEnv environment to Hugging Face Spaces. Use when asked to deploy, push to Hugging Face, or update a space.
Monitor a PR's CI checks and Greptile code review after submission. Polls CI status, auto-fixes failures via ralph-loop, waits for Greptile review, addresses comments, and iterates until green.