charted-green
Installation
SKILL.md
Context
- designDocPath: $ARGUMENTS[0]
- testFilePath: $ARGUMENTS[1]
Goal
Using the design doc at ${designDocPath} as the single source of truth, progressively activate the tests in ${testFilePath}.
Steps
- Categorize each test in
${testFilePath}as:
- Implemented tests: tests that contain actual test code (not just empty or comments)
- Empty tests: tests that are empty or only contain comments - TOTALLY IGNORE THESE
- For each implemented test, convert
it.todo(...)intoit(...), but do it strictly one test at a time, then update the implementation just enough for that specific test to turn green — NOTHING MORE.
DO NOT IMPLEMENT ANYTHING THAT IS NOT DIRECTLY RELATED TO THE CURRENT TEST.