スキル一覧に戻る
sigridjineth

ansible-interactive

by sigridjineth

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

8🍴 1📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: ansible-interactive description: Use when guiding someone through Ansible setup step-by-step. Use when starting a new Ansible project from scratch. Use when teaching Ansible through hands-on development.

Interactive Ansible Development

Overview

Interactive development builds automation incrementally with continuous validation. Each component is tested before adding the next. This catches errors early when they're easy to diagnose.

When to Use

  • Setting up Ansible for a new environment
  • Teaching someone Ansible hands-on
  • Building playbooks incrementally with validation
  • Troubleshooting connectivity before automation

Development Phases

Phase 1: Environment Analysis

Gather before writing any code:

QuestionWhy It Matters
How many servers?Affects inventory organization
IP addresses/hostnames?Required for inventory
SSH user and key location?Connection configuration
Password or key auth?Determines SSH setup
Sudo with or without password?Privilege escalation config
Server roles (web, db, app)?Inventory grouping
Operating systems?Module selection (apt vs yum)

Verify Ansible is installed: ansible --version

Phase 2: Project Setup

Create minimal structure:

mkdir ansible-project && cd ansible-project

ansible.cfg:

[defaults]
inventory = ./inventory
host_key_checking = False
stdout_callback = yaml

[privilege_escalation]
become = True
become_method = sudo

inventory:

[webservers]
web1 ansible_host=192.168.1.10 ansible_user=admin ansible_ssh_private_key_file=~/.ssh/id_rsa

[dbservers]
db1 ansible_host=192.168.1.20 ansible_user=admin ansible_ssh_private_key_file=~/.ssh/id_rsa

Phase 3: Connectivity Test

Always test before writing playbooks:

ansible all -m ping
ResultAction
SUCCESSProceed to playbooks
UNREACHABLECheck ssh -v user@host
Permission deniedVerify key path, permissions (600)
Sudo password requiredAdd --ask-become-pass or configure NOPASSWD

Phase 4: Incremental Playbook Development

Start simple, add one task at a time:

# playbook.yml - start with facts
---
- hosts: all
  tasks:
    - name: Show OS info
      ansible.builtin.debug:
        msg: "{{ ansible_distribution }} {{ ansible_distribution_version }}"

Run: ansible-playbook playbook.yml

Then add tasks one by one, testing after each:

    - name: Ensure nginx installed
      ansible.builtin.package:
        name: nginx
        state: present

Run again. Fix any errors before adding more.

Phase 5: Validation Cycle

After each change:

  1. ansible-playbook --syntax-check playbook.yml
  2. ansible-playbook --check --diff playbook.yml
  3. ansible-playbook playbook.yml
  4. Run again—verify changed=0 (idempotency)

Red Flags - Stop and Debug

  • Adding multiple untested tasks at once
  • Skipping --check before real runs
  • Ignoring "changed" on second run
  • Not testing SSH before writing playbooks

Communication Pattern

When guiding users:

  • Explain what will happen before running commands
  • After completion, summarize what was done
  • When multiple approaches exist, present options with tradeoffs
  • Acknowledge progress at milestones

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です