Agentdoctor cli
Skill SebastianBoehler/agent-cli-utils/skills/agentdoctor-cli
CLI utilities for AI agents - fast Go replacements for common Python tools
npx -y skills add SebastianBoehler/agent-cli-utils --skill agentdoctor-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
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-clientwhen a workflow needs SMB or CIFS access to a Windows host or share. - Use
-profile ssh-clientwhen the task depends on SSH or SCP. - Use
-profile web-fetchwhen the task depends oncurlor PowerShell HTTP support. - Use repeated
-cmdflags for custom one-off dependency checks.
Apply Good Defaults
- Keep
-strict=truefor startup and health checks so missing tools fail early. - Use
-format jsonwhen another agent step will branch on the result. - Use
-strict=falsewhen the task only needs advisory diagnostics. - Prefer
agentdoctorover 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/
- openai.yaml221 B