1.9k★by mrgoodb
ansible – OpenClaw Skill
ansible is an OpenClaw Skills integration for writing workflows. Run Ansible playbooks and manage AWX/Tower via API. Automate infrastructure configuration.
1.9k stars8.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | ansible |
| description | Run Ansible playbooks and manage AWX/Tower via API. Automate infrastructure configuration. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/ansible |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/ansible |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
267 BSKILL.md
938 BSKILL.md
name: ansible description: Run Ansible playbooks and manage AWX/Tower via API. Automate infrastructure configuration. metadata: {"clawdbot":{"emoji":"🅰️","requires":{"env":["AWX_URL","AWX_TOKEN"]}}}
Ansible / AWX
Infrastructure automation.
Environment
export AWX_URL="https://awx.example.com"
export AWX_TOKEN="xxxxxxxxxx"
List Job Templates
curl "$AWX_URL/api/v2/job_templates/" -H "Authorization: Bearer $AWX_TOKEN"
Launch Job
curl -X POST "$AWX_URL/api/v2/job_templates/{id}/launch/" \
-H "Authorization: Bearer $AWX_TOKEN" \
-H "Content-Type: application/json" \
-d '{"extra_vars": {"host": "webserver"}}'
Get Job Status
curl "$AWX_URL/api/v2/jobs/{jobId}/" -H "Authorization: Bearer $AWX_TOKEN"
Run Ansible CLI
ansible-playbook -i inventory.yml playbook.yml
ansible all -m ping -i inventory.yml
Links
- Docs: https://docs.ansible.com
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install ansible?
Run openclaw add @mrgoodb/ansible in your terminal. This installs ansible into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/ansible. Review commits and README documentation before installing.
