Back to list
optivent

loguru

by optivent

Zero-hallucination Claude skill generation pipeline with CodeWiki, Context7, AST, and Bubblewrap integration

0🍴 0📅 Jan 8, 2026

SKILL.md


name: loguru description: Python logging made (stupidly) simple. Focuses on a single, global logger with progressive disclosure to deep source understanding. version: 1.0.0

Loguru: Simplified Python Logging

Loguru replaces the standard logging module with a more powerful, easier-to-use API. This skill provides the "Surface Layer" (Tier 1) for rapid onboarding.

Quick Start

from loguru import logger

# Add a sink (Tier 1: Basic Usage)
logger.add("file.log", rotation="500 MB")

# Log something
logger.info("That is it, beautiful and simple logging!")

Core Patterns

FeaturePatternDescription
Sinkslogger.add(sys.stderr, format="{time} {level} {message}")Configure where logs go.
Levelslogger.debug("Debug msg"), logger.warning("Warn msg")Standard logging levels.
Exceptions@logger.catchDecorator to capture and log exceptions with full stack traces.
Parsinglogger.parse(file)Extract structured data from log files.

Progressive Disclosure (The Iceberg)

For deeper understanding, "dive" into the following references:

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon