Agent skill
ansible
Run Ansible playbooks and manage AWX/Tower via API. Automate infrastructure configuration.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/ansible-thinkfleetai-thinkfleet-engine
Metadata
Additional technical details for this skill
- thinkfleet
-
{ "emoji": "\ud83c\udd70\ufe0f", "requires": { "env": [ "AWX_URL", "AWX_TOKEN" ] } }
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?