agentsclimarketplace

Agentdoctor cli

Skill SebastianBoehler/agent-cli-utils/skills/agentdoctor-cli

CLI utilities for AI agents - fast Go replacements for common Python tools

Install
npx -y skills add SebastianBoehler/agent-cli-utils --skill agentdoctor-cli

Assembled 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

Check host dependencies with the local `agentdoctor` CLI. Use when an agent workflow fails because a required tool such as an SMB client, SSH client, or HTTP fetch utility is missing or when a task needs a machine-readable preflight report.

SKILL.md

1.6 KB, 309 tokens by cl100k_base, as published. Nobody here has run it

AgentDoctor CLI

Use agentdoctor to diagnose missing host capabilities before a workflow starts or immediately after a dependency-related failure.

Invoke the Tool

Prefer the installed binary when it exists:

agentdoctor -profile smb-client -format text

If working inside this repository or the binary is not installed, run:

go run ./cmd/agentdoctor -- -profile smb-client -format text

Choose Profiles

  • Use -profile smb-client when a workflow needs SMB or CIFS access to a Windows host or share.
  • Use -profile ssh-client when the task depends on SSH or SCP.
  • Use -profile web-fetch when the task depends on curl or PowerShell HTTP support.
  • Use repeated -cmd flags for custom one-off dependency checks.

Apply Good Defaults

  • Keep -strict=true for startup and health checks so missing tools fail early.
  • Use -format json when another agent step will branch on the result.
  • Use -strict=false when the task only needs advisory diagnostics.
  • Prefer agentdoctor over a blind failing connection attempt when the problem may be “tool missing” rather than “credentials wrong.”

Examples

Diagnose the SMB client case:

go run ./cmd/agentdoctor -- -profile smb-client -format text

Check a custom command set:

go run ./cmd/agentdoctor -- -cmd git -cmd curl -format json

What ships with it: 1 file

221 B alongside SKILL.md

agents/

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.