Agentprint cli
Skill SebastianBoehler/agent-cli-utils/skills/agentprint-cli
CLI utilities for AI agents - fast Go replacements for common Python tools
npx -y skills add SebastianBoehler/agent-cli-utils --skill agentprint-cliAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage local CUPS printers with the `agentprint` CLI. Use when an agent needs to discover printers, create or repair a queue, or submit a bounded print job from a file or HTTP(S) URL with machine-readable output.
SKILL.md
1.9 KB, 392 tokens by cl100k_base, as published. Nobody here has run it
AgentPrint CLI
Use agentprint when the host already has CUPS tooling and the workflow needs structured printer discovery, queue setup, or non-interactive printing.
Invoke the Tool
Prefer the installed binary when it exists:
agentprint list
If working inside this repository or the binary is not installed, run:
go run ./cmd/agentprint -- list
Choose Commands
- Use
listto inspect configured local queues and identify the default printer. - Use
discoverto enumerate reachable IPP, IPPS, and DNS-SD printers through local CUPS tooling. - Use
ensureto create or repair a queue from-urior a-matchagainst discovered printers. - Use
printto submit a local file or HTTP(S) URL with CUPS options such as copies, duplex, media, scaling, color mode, and raw-option name=valueflags.
Apply Good Defaults
- Keep the default
-format jsonwhen another step will parse the result. - Use
-format tsvfor quick terminal inspection oflistanddiscover. - Prefer
ensure -match ... -defaulton boards where queues need to self-heal before a print job. - Reject or fix invalid combinations before running, especially
-scale-percentwith-fit-to-pageor-fill-page.
Examples
Discover reachable printers:
go run ./cmd/agentprint -- discover -format tsv
Repair a queue and set it as default:
go run ./cmd/agentprint -- ensure -printer office -match "Office Laser" -default
Print a remote PDF in monochrome:
go run ./cmd/agentprint -- print -printer office -input https://example.com/report.pdf -fit-to-page -color-mode monochrome
What ships with it: 1 file
216 B alongside SKILL.md
agents/
- openai.yaml216 B