원클릭으로
debugging-guide
How to debug issues in workstream. Use when investigating bugs or unexpected behavior.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
How to debug issues in workstream. Use when investigating bugs or unexpected behavior.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Definition of done checklist for workstream PRs. Use when preparing a PR for review.
How to set up a local development environment for workstream. Use when onboarding or resetting your dev environment.
How to run end-to-end tests for workstream. Use when verifying the full dashboard flow.
How to run unit tests for workstream. Use when writing, modifying, or verifying tests before submitting a PR.
| name | debugging-guide |
| description | How to debug issues in workstream. Use when investigating bugs or unexpected behavior. |
Drop into a debugger at a specific point:
import pdb; pdb.set_trace() # or: breakpoint()
Run pytest with output visible:
pytest -s -v tests/test_config.py
Debug a specific test:
pytest --pdb tests/test_config.py::test_name
Workstream uses Python's logging module. Enable debug logging:
import logging
logging.basicConfig(level=logging.DEBUG)
Check the logger name pattern: dashboard.<module> (e.g., dashboard.readiness.scanner).
.env varslsof -ti tcp:8080)GITHUB_PAT is set in .env