Claude Code Plugins

Community-maintained marketplace

Feedback

Python logging made (stupidly) simple. Focuses on a single, global logger with progressive disclosure to deep source understanding.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

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

Feature Pattern Description
Sinks logger.add(sys.stderr, format="{time} {level} {message}") Configure where logs go.
Levels logger.debug("Debug msg"), logger.warning("Warn msg") Standard logging levels.
Exceptions @logger.catch Decorator to capture and log exceptions with full stack traces.
Parsing logger.parse(file) Extract structured data from log files.

Progressive Disclosure (The Iceberg)

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