ansible

CLI

Agentless automation for configuration management and deployments.

Automate server configuration and application deployments over SSH

3 curated recipes · not yet executed by the harness#automation#configuration#deployment#infrastructure

Recipes

Curated from documentation and usage. Percentages are estimates, not measurements.

Ping all hosts

~96% est.
ansible all -i inventory.ini -m ping

Run a playbook

~94% est.
ansible-playbook deploy.yml -i inventory.ini
Common failures (1)
  • UNREACHABLECheck SSH connectivity and inventory file host definitions

Run ad-hoc command on hosts

~95% est.
ansible all -i inventory.ini -a 'uptime'

Install

pippip install ansible
Homebrewbrew install ansible

Agent notes

When to use
Configuring multiple servers, deploying apps, automating ops tasks
Quick examples
  • ansible-playbook deploy.yml -i inventory.ini
  • ansible all -i hosts -m ping

Use from an agent

curl -s https://clihub.com/api/tools/ansible | jq '.agentHints.provenRecipes[] | {task, command, verified}'

Or call get_tool with slug ansible on the MCP server at https://clihub.com/mcp.

Homepage ↗Repository ↗GPL-3.00 views