Run Ansible playbooks and manage AWX/Tower via API. Automate infrastructure configuration.
Scanned 2/10/2026
Install via CLI
openskills install openclaw/skills---
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
```bash
export AWX_URL="https://awx.example.com"
export AWX_TOKEN="xxxxxxxxxx"
```
## List Job Templates
```bash
curl "$AWX_URL/api/v2/job_templates/" -H "Authorization: Bearer $AWX_TOKEN"
```
## Launch Job
```bash
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
```bash
curl "$AWX_URL/api/v2/jobs/{jobId}/" -H "Authorization: Bearer $AWX_TOKEN"
```
## Run Ansible CLI
```bash
ansible-playbook -i inventory.yml playbook.yml
ansible all -m ping -i inventory.yml
```
## Links
- Docs: https://docs.ansible.com
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.