
Implement
- 2 installs
- 2.5k repo stars
- Updated August 5, 2026
- huggingface/openenv
implement skill documents Make tests pass.
About
implement skill documents Make tests pass. Invoke after /write-tests produces failing tests.. name: implement description: Make tests pass. Invoke after /write-tests produces failing tests. Covers installation, configuration, and when-to-use guidance from the upstream SKILL.md workflow.
- Make tests pass.
- Platform-specific setup patterns for implement.
- Evidence-backed steps from upstream SKILL.md.
- When-to-use criteria for implement versus alternatives.
Implement by the numbers
- 2 all-time installs (skills.sh)
- Ranked #1,759 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
implement capabilities & compatibility
- Capabilities
- implement quick start · implement when to use guidance · implement integration patterns
- Use cases
- research
What implement says it does
Make failing tests pass with minimal code.
The implementer will automatically find failing tests from the most recent `/write-tests` run.
npx skills add https://github.com/huggingface/openenv --skill implementAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 2.5k |
| Last updated | August 5, 2026 |
| Repository | huggingface/openenv ↗ |
How do I use implement correctly?
Make tests pass. Invoke after /write-tests produces failing tests.
Who is it for?
Teams implementing implement workflows from the catalog.
Skip if: Skip when requirements clearly match a different specialized stack.
When should I use this skill?
User asks about implement, make tests pass. invoke after /write-tests produces failing tests..
What you get
Working implement setup with validated configuration and next steps.
Files
/implement
Make failing tests pass with minimal code.
Usage
/implementThe implementer will automatically find failing tests from the most recent /write-tests run.
When to Use
- After
/write-testshas created failing tests - When you have specific tests that need implementation
- Never before tests exist
When NOT to Use
- No failing tests exist (run
/write-testsfirst) - You want to add features not covered by tests
- You want to refactor (use
/simplifyinstead)
What It Does
1. Finds the failing tests from /write-tests 2. Reads tests to understand requirements 3. Writes the minimum code to make tests pass 4. Runs tests after each change 5. Stops when ALL tests pass
Output
The 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 |
### VerificationPYTHONPATH=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 todoRules
1. Read the failing tests first to understand exactly what's needed 2. Write the MINIMUM code needed to pass tests 3. Run tests after each change to verify progress 4. Do NOT add extra features not covered by tests 5. Do NOT refactor existing code (that's /simplify's job) 6. Stop when all tests pass
Anti-patterns (NEVER do these)
- Adding features not covered by tests
- Refactoring existing code
- Writing additional tests (that's
/write-tests's job) - Over-engineering solutions
- Adding comments or documentation beyond what's necessary
- "Improving" code that already works
Completion Criteria
Before returning, verify: 1. ALL tests pass 2. No new test failures introduced 3. Implementation is minimal and focused
Philosophy
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.
Related skills
FAQ
What does implement do?
implement skill documents Make tests pass.
When should I use implement?
User asks about implement, make tests pass. invoke after /write-tests produces failing tests..
Is this skill safe to install?
Review the Security Audits panel on this page before installing in production.