mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 13:43:40 +02:00
19 lines
696 B
TOML
19 lines
696 B
TOML
description = "Implement the next task incrementally — build, test, verify, commit"
|
|
|
|
prompt = """
|
|
Invoke the incremental-implementation skill alongside test-driven-development.
|
|
|
|
Pick the next pending task from the plan. For each task:
|
|
|
|
1. Read the task's acceptance criteria
|
|
2. Load relevant context (existing code, patterns, types)
|
|
3. Write a failing test for the expected behavior (RED)
|
|
4. Implement the minimum code to pass the test (GREEN)
|
|
5. Run the full test suite to check for regressions
|
|
6. Run the build to verify compilation
|
|
7. Commit with a descriptive message
|
|
8. Mark the task complete and move to the next one
|
|
|
|
If any step fails, follow the debugging-and-error-recovery skill.
|
|
"""
|