소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill python-logging-reviewer명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | python-logging-reviewer |
| description | > Use when this capability is needed. |
This skill audits a Python project's logging implementation against industry best practices, produces a prioritized improvement plan, and implements approved changes.
Read the best-practices reference file to ground your audit:
cat references/best-practices.md
Use the practices and source citations in that file as your authoritative checklist. Do not invent rules — every finding you report should trace back to a named source in the reference file.
Follow these four steps in order. Present the output of each step to the user and wait for approval before moving to the next.
Scan every Python file in the project. For each file, record:
basicConfig() called outside the entry point.except blocks. Flag bare except: pass, exception
handlers that log only the message string without exc_info=True, and duplicate
exception logging across call layers..format(), or string concatenation inside log
calls. These evaluate eagerly even when the log level is disabled.NullHandler and do not call basicConfig().Produce a markdown table summarizing all findings. Group by file, and include the line number, the issue category (from the list above), a one-line description, and a severity tag: critical, recommended, or nice-to-have.
Severity guidelines:
For each finding from Step 1, recommend a concrete fix. Every recommendation must cite
the specific best practice it's based on. Use the source abbreviations defined in
references/best-practices.md:
logging module docsFormat each recommendation as:
### [severity] File: path/to/file.py, line N
**Finding:** <what's wrong>
**Fix:** <what to do>
**Source:** [SOURCE-TAG] — <one-sentence explanation of the cited practice>
Group the recommendations into logical PR-sized batches. A good grouping:
logging.getLogger(__name__), remove root logger usage, add NullHandler to
library __init__.py files.exc_info=True or switch to
logger.exception() in all except blocks, remove bare except: pass.Not every PR group will apply to every project. Skip groups that have no findings. Add groups if the project has issues not covered above.
For each PR, list:
Present the plan and wait for user approval before implementing.
After the user approves (they may approve all PRs or select specific ones), implement the changes one PR-group at a time.
For each change:
After implementing each PR group, pause and let the user review before continuing.
These rules are non-negotiable:
logging unless the project already uses structlog, loguru,
or another library. Do not introduce a new logging library without asking.Source: areed1192/interactive-brokers-api — distributed by TomeVault.