Windows Printing
ReviewAudited by ClawScan on May 10, 2026.
Overview
The printing workflow is mostly user-confirmed and purpose-aligned, but the skill tells the agent to run PowerShell helper scripts that are not included in the package.
Review this skill carefully before installing. Its intended workflow is reasonable for local Windows printing, but the actual PowerShell scripts it depends on are absent, so the behavior cannot be verified from the provided package.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
The skill may fail at runtime, or users may end up relying on helper code that was not included in this review.
SKILL.md instructs execution of helper scripts under a scripts directory, but the provided manifest contains only SKILL.md and references/options.md and says there are no code files. The printing logic therefore is missing from the reviewed package.
powershell -ExecutionPolicy Bypass -File "<skill-dir>\scripts\print_file.ps1"
Do not install until the referenced PowerShell scripts are included, reviewed, and the Windows/PowerShell requirements are declared.
A printer could be left in a different mode, such as grayscale, duplex, or a different paper size, after a job.
The skill discloses that printing may alter the current printer configuration and that restoring the original settings can fail. This is purpose-aligned but can affect later print jobs.
`Set-PrintConfiguration` 会修改打印机当前配置;脚本会尽量恢复原配置,但如果关联程序长期占用或驱动异常,恢复可能失败
Confirm print settings before use and check the printer configuration afterward, especially for shared printers.
The agent would be allowed to execute local PowerShell commands for printing-related tasks.
The skill uses PowerShell with ExecutionPolicy Bypass to run local helper scripts. Local command execution is expected for a Windows printing skill, but the bypass flag is still a meaningful execution capability.
powershell -ExecutionPolicy Bypass -File "<skill-dir>\scripts\list_printers.ps1"
Only use this skill from a trusted package that includes the scripts, and prefer reviewed scripts that do not require ExecutionPolicy Bypass unless clearly justified.
