원클릭으로
verify
Quick verification workflow — run lint and typecheck on the codebase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Quick verification workflow — run lint and typecheck on the codebase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guides collaborative requirements discovery before implementation. Creates task directory, seeds PRD, asks high-value questions one at a time, researches technical choices, and converges on MVP scope. Use when requirements are unclear, there are multiple valid approaches, or the user describes a new feature or complex task.
Use when editing data/algorithms/*.yaml, data/categories.yaml, or algorithm templates in this repository
| name | verify |
| description | Quick verification workflow — run lint and typecheck on the codebase |
Run quick verification (lint + typecheck) on the codebase:
ruff check awesome_bioinfo/ tests/ && mypy awesome_bioinfo/ --ignore-missing-imports
This is a quick check without running the full test suite. Use for rapid iteration.