Back to list
sigridjineth

ansible-convert

by sigridjineth

Ansible automation skills for Claude Code: playbook development, debugging, shell conversion, and interactive workflows.

8🍴 1📅 Jan 23, 2026

SKILL.md


name: ansible-convert description: Use when converting shell scripts to Ansible playbooks. Use when migrating bash automation, manual procedures, or Dockerfiles to idempotent Ansible tasks.

Shell to Ansible Conversion

Overview

Shell scripts execute commands imperatively; Ansible declares desired state. Conversion means rethinking operations as state declarations, not translating commands line-by-line. The goal is idempotency: running twice produces identical results.

When to Use

  • Converting existing shell scripts to playbooks
  • Migrating manual server setup procedures
  • Replacing bash automation with Ansible
  • Converting Dockerfile RUN commands

Core Principle

Don't wrap shell commands in Ansible's shell module. Find the module that achieves the same end state declaratively.

# Shell: imperative
mkdir -p /opt/app
chown app:app /opt/app
# Ansible: declarative
- ansible.builtin.file:
    path: /opt/app
    state: directory
    owner: app
    group: app
    mode: '0755'

Conversion Table

Shell CommandAnsible ModuleNotes
mkdir -pansible.builtin.filestate: directory
cpansible.builtin.copyStatic files
cp with variablesansible.builtin.templateUse .j2 templates
rm -rfansible.builtin.filestate: absent
ln -sansible.builtin.filestate: link
chmod, chownInclude in file/copy/templatemode, owner, group params
apt-get installansible.builtin.aptupdate_cache: yes
yum installansible.builtin.yumOr use package for cross-platform
pip installansible.builtin.pipSpecify executable if needed
useraddansible.builtin.userHandles home, shell, groups
systemctl startansible.builtin.servicestate: started
systemctl enableansible.builtin.serviceenabled: yes
curl -Oansible.builtin.get_urlUse checksum for verification
tar -xzfansible.builtin.unarchiveremote_src: yes if already on target
echo >> fileansible.builtin.lineinfileEnsures line exists
cat > fileansible.builtin.copycontent: parameter

Control Flow Conversion

Conditionals

# Shell
if [ -f /etc/debian_version ]; then
    apt-get install nginx
fi
# Ansible
- ansible.builtin.apt:
    name: nginx
  when: ansible_os_family == "Debian"

Loops

# Shell
for user in alice bob; do
    useradd $user
done
# Ansible
- ansible.builtin.user:
    name: "{{ item }}"
  loop:
    - alice
    - bob

When Shell Module is Necessary

Use command or shell only when no module exists. Always add proper change detection:

- name: Run custom installer
  ansible.builtin.shell: /opt/app/install.sh
  args:
    creates: /opt/app/.installed  # Skip if file exists
  register: install_result
  changed_when: "'Installed' in install_result.stdout"
  failed_when: install_result.rc != 0 and 'already installed' not in install_result.stderr

Variable Extraction

Identify values to parameterize:

  • Version numbers → app_version: "1.2.3"
  • Paths → app_dir: "/opt/app"
  • Usernames → app_user: "appuser"
  • Ports → app_port: 8080

Place in defaults/main.yml for easy override.

Conversion Workflow

  1. Read entire script, identify major phases
  2. Map each command to Ansible module
  3. Extract hardcoded values as variables
  4. Order tasks for dependencies (dirs before files)
  5. Add handlers for service restarts
  6. Test with --check --diff
  7. Verify idempotency: second run shows no changes

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon