skills$openclaw/ansible
mrgoodb1.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

nameansible
descriptionRun Ansible playbooks and manage AWX/Tower via API. Automate infrastructure configuration. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/ansible
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/ansible
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains ansible in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
267 B
SKILL.md
938 B
SKILL.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"
ansible-playbook -i inventory.yml playbook.yml
ansible all -m ping -i inventory.yml
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.