원클릭으로
test-fixing
Systematically identify and fix all failing tests using smart grouping strategies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Systematically identify and fix all failing tests using smart grouping strategies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Diagnose where a customer sits on the awareness ladder and calibrate message strategy, language register, and persuasion route accordingly.
Diagnose what a brand's visual, verbal, and behavioral identity signals subconsciously to its target audience and prescribe alignment changes to close the perception gap.
This skill ensures all code follows security best practices and identifies potential vulnerabilities.
Apply evidence-based psychological mechanisms to produce copy that creates desire, overcomes resistance, and drives the target behavior across ads, landing pages, product descriptions, and sales pages.
Diagnose the target customer's desires, fears, identity, worldview, and emotional drivers so downstream skills can target real psychology instead of demographics alone.
Guide for building reliable, fault-tolerant Go applications with DBOS durable workflows.
| name | test-fixing |
| description | Systematically identify and fix all failing tests using smart grouping strategies. |
| risk | unknown |
| source | community |
| date_added | 2026-02-27 |
Systematically identify and fix all failing tests using smart grouping strategies.
Run make test to identify all failing tests.
Analyze output for:
Group similar failures by:
Prioritize groups by:
For each group (starting with highest impact):
Identify root cause
git diffImplement fix
Verify fix
uv run pytest tests/path/to/test_file.py -v
uv run pytest -k "pattern" -v
Move to next group
Infrastructure first:
Then API changes:
Finally, logic issues:
After all groups fixed:
make testgit diff to understand recent changesUser: "The tests are failing after my refactor"
make test → 15 failures identified