role-builder
Installation
SKILL.md
Role Builder
Quick Start
Create well-structured Ansible roles with proper organization, reusability, and idempotency.
Instructions
Step 1: Initialize role structure
# Create role using ansible-galaxy
ansible-galaxy init my_role
# Or create manually
mkdir -p roles/my_role/{tasks,handlers,templates,files,vars,defaults,meta}