← Back to Skills Marketplace
odrobnik

Printer

by Oliver Drobnik · GitHub ↗ · v1.2.2
cross-platform ✓ Security Clean
783
Downloads
0
Stars
3
Active Installs
9
Versions
Install in OpenClaw
/install cups-printer
Description
Print images and PDFs to any CUPS printer. PPD-aware: reads paper sizes, margins, resolution, and duplex at runtime. Use when the user wants to print files (...
README (SKILL.md)

Printer

Print images and PDF files to any CUPS printer. All settings (paper size, margins, resolution, duplex) are read from the printer's PPD file at runtime.

Entry point: {baseDir}/scripts/print.py

Setup

See SETUP.md for prerequisites and platform notes.

Commands

List Printers

python3 {baseDir}/scripts/print.py list
python3 {baseDir}/scripts/print.py list --json

Shows available printers with status and which is the system default.

Print a File

python3 {baseDir}/scripts/print.py print /path/to/file.pdf
python3 {baseDir}/scripts/print.py print /path/to/image.png
python3 {baseDir}/scripts/print.py print /path/to/file.pdf --printer "Custom_Printer"
python3 {baseDir}/scripts/print.py print /path/to/file.pdf -o InputSlot=tray-2
python3 {baseDir}/scripts/print.py print /path/to/file.pdf -o cupsPrintQuality=High -o sides=one-sided
python3 {baseDir}/scripts/print.py print /path/to/file.pdf --json
  • PDFs: Sent directly to the printer with correct media/duplex settings
  • Images (PNG, JPG, GIF, BMP, TIFF, WebP): Converted to PDF at the printer's native DPI, centered within the printable area, then printed
  • -o KEY=VALUE: Pass any CUPS option (repeatable). Use options to discover available settings (tray, quality, media type, duplex, color mode).
  • Symlinks are followed but the resolved path must be inside the workspace or /tmp

Printer Info

python3 {baseDir}/scripts/print.py info
python3 {baseDir}/scripts/print.py info --printer "Custom_Printer"
python3 {baseDir}/scripts/print.py info --json

Shows manufacturer, model, resolution, color support, default paper, duplex mode, input trays, and all paper sizes with margins.

Printer Options

python3 {baseDir}/scripts/print.py options
python3 {baseDir}/scripts/print.py options --printer "Custom_Printer"
python3 {baseDir}/scripts/print.py options --json

Shows all CUPS options with current values and available choices.

Notes

  • Uses the system default printer unless --printer is specified
  • All commands support --json for machine-readable output
  • Image conversion respects the printer's imageable area (margins) from the PPD
  • Only printable file types accepted: PDF, PNG, JPG, GIF, BMP, TIFF, WebP

Tips

Tray / Media Selection

Some PPDs have empty InputSlot command strings, so -o InputSlot=tray-2 alone may not work. Use the combined media keyword instead:

# Print to a specific tray with media type
python3 {baseDir}/scripts/print.py print envelope.pdf -o media=A6,tray-2,envelope

# Format: -o media=SIZE,TRAY,TYPE
# SIZE: A4, A5, A6, EnvDL, EnvC5, Letter, etc.
# TRAY: tray-1, tray-2, auto
# TYPE: stationery, envelope, cardstock, labels, etc.

This passes tray selection via IPP directly, bypassing the PPD.

Usage Guidance
This skill appears to do what it says: it reads local CUPS PPDs, converts images with Pillow, and calls lp/lpstat/lpoptions. Before installing: 1) Confirm you run it on a machine with CUPS and trust the system printers (jobs go to local/network printers). 2) Be careful with the OPENCLAW_WORKSPACE env var — if set to a sensitive directory it will allow printing files from there; prefer leaving it unset or pointing to a dedicated workspace. 3) The script creates temporary PDF files (delete=False) — you may want to review or clean /tmp after use. 4) Review the included script if you need to be extra cautious; there are no network calls or secret exfiltration patterns visible. Overall the skill is coherent and proportional to its stated purpose.
Capability Analysis
Type: OpenClaw Skill Name: cups-printer Version: 1.2.2 The skill bundle is benign. The `scripts/print.py` file implements robust input validation and path sanitization, specifically `_validate_file_path` to prevent path traversal and `_validate_printer_name` to prevent shell injection when interacting with CUPS commands (`lp`, `lpstat`, `lpoptions`). The `SKILL.md` documentation clearly outlines the skill's purpose and usage without any evidence of prompt injection attempts or instructions for malicious behavior. There are no signs of data exfiltration, persistence mechanisms, or unauthorized network activity.
Capability Assessment
Purpose & Capability
Name/description ask for CUPS printing. Required binaries (python3, lp, lpstat, lpoptions) and dependency (Pillow) are exactly what a CUPS-aware printing tool needs. The pyproject dependency and script are proportional to the task.
Instruction Scope
SKILL.md tells the agent to run the included script which lists printers, queries PPDs, converts images to PDFs and invokes lp to submit jobs. The script's filesystem and command usage are limited to paths and tools relevant to printing (PPD files, workspace/tmp, and lp).
Install Mechanism
No install spec — instruction-only with a bundled script. No downloads or archive extraction. This minimizes install-time risk.
Credentials
No credentials requested. The script honors an optional OPENCLAW_WORKSPACE env var to allow printing only from workspace paths; this is reasonable but means the agent will trust that environment variable when allowing files. No other env vars are accessed.
Persistence & Privilege
always is false and the skill does not request system-wide changes or other skills' credentials. The script writes temporary PDF files when converting images (uses tempfile with delete=False), which is normal for this functionality.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install cups-printer
  3. After installation, invoke the skill by name or use /cups-printer
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.2.2
Smart duplex: auto-detect document orientation (portrait→long-edge, landscape→short-edge) for correct book-style binding. Fixes upside-down backs on portrait duplex prints.
v1.2.1
Replace uv run with python3 in all SKILL.md examples
v1.2.0
Structured resolution in JSON output (x_dpi/y_dpi), added tray/media selection tips to SKILL.md
v1.1.1
Add -o option passthrough for tray/quality/duplex. Rewrite README with practical examples.
v1.1.0
Smarter symlink handling: allow within workspace/tmp, block outside. Extension validated on resolved path.
v1.0.3
Best practices compliance: line buffering, status prefixes, YAML block style, full ignore files, README docs section
v1.0.2
Block symlink-based information disclosure (e.g. ln -s ~/.ssh/id_rsa secrets.pdf)
v1.0.1
Security hardening: file path validation, printer name validation, path traversal prevention
v1.0.0
Initial release: PPD-aware CUPS printing with JSON output
Metadata
Slug cups-printer
Version 1.2.2
License
All-time Installs 3
Active Installs 3
Total Versions 9
Frequently Asked Questions

What is Printer?

Print images and PDFs to any CUPS printer. PPD-aware: reads paper sizes, margins, resolution, and duplex at runtime. Use when the user wants to print files (... It is an AI Agent Skill for Claude Code / OpenClaw, with 783 downloads so far.

How do I install Printer?

Run "/install cups-printer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Printer free?

Yes, Printer is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Printer support?

Printer is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Printer?

It is built and maintained by Oliver Drobnik (@odrobnik); the current version is v1.2.2.

💬 Comments