AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Python Output Styler

skill-tsilva-claudeskillz-python-output-styler · by tsilva

|

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-tsilva-claudeskillz-python-output-styler

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-tsilva-claudeskillz-python-output-styler)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Python Output Styler? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Python Output Styling

Style all user-facing Python script output using the bundled style.py module.

Workflow

  1. Read [references/style.py](references/style.py) to understand available functions
  2. If style.py doesn't exist alongside the target script, copy from [references/style.py](references/style.py) into the same directory
  3. Import functions in the target script: from style import header, success, error, info, section
  4. Replace raw print() statements with styled output function calls
  5. Replace input() prompts with styled_input, confirm, or choose as appropriate
  6. Wrap long-running iterables with progress for animated feedback
  7. Wrap long-running functions with spin for animated spinner feedback
  8. Verify script still works when Rich is not installed (graceful degradation to plain print)

Dependency

Rich is the preferred rendering backend. Install via:

uv run --with rich script.py

When Rich is unavailable, all functions fall back to plain print() output automatically.

Color Palette

| Name | Hex | Rich Markup | Use | |---------|-----------|--------------------|------------------------------| | Brand | #AF87FF | [bold #AF87FF] | Headers, emphasis | | Success | #87D787 | [#87D787] | Checkmarks, completion | | Error | #FF5F5F | [#FF5F5F] | Errors, failures | | Warning | #FFD75F | [#FFD75F] | Warnings, caution | | Info | #87CEEB | [#87CEEB] | Info messages, tips | | Muted | #808080 | [#808080] | Paths, secondary text |

Output Functions

| Function | Symbol | Color | Purpose | |----------|--------|-------|---------| | header(title, subtitle="") | box | Brand | Bordered header panel | | section(text) | ━━ | Brand | Horizontal rule divider | | success(text) | | Success | Completed actions | | error(text) | | Error | Error messages | | warn(text) | | Warning | Warnings | | info(text) | | Info | Informational | | step(text) | | Muted | Action log (suppressed when quiet) | | note(text) | — | Muted | "Note:" prefixed | | banner(text) | box | Success | Completion banner | | error_block(*lines) | | Error | Multi-line error box | | list_item(label, value) | | Brand+Muted | Key-value display | | dim(text) | — | Muted | De-emphasized text (suppressed when quiet) |

Utility Functions

| Function | Purpose | |----------|---------| | table(headers, *rows) | Formatted table with headers. headers is a list of strings, each row is a list of strings | | pretty(obj) | Rich inspect for any Python object (falls back to pprint) |

Progress Functions

| Function | Returns | Purpose | |----------|---------|---------| | progress(iterable, label="") | Wrapped iterable | Rich progress bar wrapping any iterable | | spin(title, func, *args, **kwargs) | Function result | Animated spinner wrapping a function call |

Interactive Functions

| Function | Returns | Purpose | |----------|---------|---------| | confirm(prompt, default=True) | bool | y/n prompt | | choose(header, *options) | str | Numbered selection menu | | styled_input(prompt, password=False) | str | Styled text input (avoids shadowing built-in input) |

Pattern Mapping

| Old Pattern | New Pattern | |-------------|-------------| | print("Title") + print("=====") | header("Title", "Subtitle") | | print("✓ done") | success("done") | | print("Error: ...") | error("...") | | print("Warning: ...") | warn("...") | | print(" - Label: value") | list_item("Label", "value") | | input("Continue? (y/n) ") | confirm("Continue?") | | print("Section...") between blocks | section("Section") | | print("Note: ...") | note("...") | | Multi-line error block | error_block("line1", "line2") | | Numbered menu with input() | choose("Pick one:", "A", "B", "C") | | input("Name: ") | styled_input("Name:") | | getpass.getpass("Password: ") | styled_input("Password:", password=True) | | for item in items: ... (slow) | for item in progress(items, "Processing"): ... | | Long function call with no feedback | result = spin("Installing...", install_pkg, "name") | | pprint(obj) | pretty(obj) |

Environment Variables

| Variable | Default | Effect | |----------|---------|--------| | NO_COLOR | unset | Disables all color output when set to any value | | STYLE_VERBOSE | 1 | 0=quiet (suppresses step/dim), 1=default, 2=verbose |

Rules

  • ALWAYS import from style.py — never use Rich directly in scripts
  • NEVER hard-code ANSI codes in scripts — use style.py functions exclusively
  • Use styled_input instead of input for styled prompts to avoid shadowing the built-in
  • confirm returns a bool — use directly in if confirm("Continue?"): ...
  • spin returns the wrapped function's return value — use: result = spin("Building...", build_fn)
  • choose returns the selected option string — use: choice = choose("Pick:", "A", "B")
  • progress wraps an iterable — use: for item in progress(items, "Processing"): ...
  • Do NOT wrap instant operations with spin — only use for functions that take noticeable time
  • Preserve all existing logic — only change output formatting, never behavior
  • Scripts must work identically when Rich is not installed (plain print fallback)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.