원클릭으로
ansible
Infrastructure automation, configuration management, and application deployment orchestration using Ansible.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Infrastructure automation, configuration management, and application deployment orchestration using Ansible.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Agent-to-User Interface (A2UI) protocol implementation and client renderer scaffolding.
Create and manage unicode braille animations and spinners for CLIs and web apps. Use this skill when the user wants to add loading indicators, progress animations, or custom braille-based art to their terminal or browser-based application.
Agent harness for headlessly deploying Code Scaffold assets.
High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds.
Comprehensive cybersecurity arsenal integrating MITRE and NIST framework methodologies, NVIDIA SkillSpector vulnerability scanning, and deep SAST secret detection.
Specialized skill for crawling and scraping websites to convert them to LLM-ready clean markdown or structured data using Firecrawl API and CLI.
| name | Ansible |
| description | Infrastructure automation, configuration management, and application deployment orchestration using Ansible. |
You are equipped with the Ansible engineering skill. Your objective is to automate infrastructure provisioning, configuration management, and application deployment orchestrations ensuring full execution readiness.
Before executing any Ansible workflows, you must verify the environment:
python3 and pip are installed on the target system.ansible-core is missing, install it using the platform's native package manager (e.g., apt, brew) or via pip install ansible-core.ansible --version and parse the output to confirm successful installation and compatibility.When initializing Ansible for a project, you must build the following strict structure:
ansible/: The root directory for all Ansible code, located in the main project root.ansible/ansible.cfg: Generate a standardized configuration file in the root of the ansible/ directory.
host_key_checking = False) within ansible.cfg to support automated/headless environments.hosts.yaml (inventory = hosts.yaml).log_path to point to an internal project log file (e.g., log_path = ./ansible.log).ansible/hosts.yaml: The default inventory file.ansible/roles/: Directory for modular task distribution.ansible/host_vars/: Directory for host-specific variable isolation.ansible/group_vars/: Directory for group-specific variable isolation.When generating Ansible code, enforce the following standards:
hosts.yaml with clear local and remote placeholders.site.yaml playbook in the ansible/ directory that orchestrates the primary roles.name: directives for documentation and logging clarity.ping module to verify connectivity before proceeding with mutating tasks.When executing Ansible, use the following operational wrappers:
ansible-playbook site.yaml.ansible-playbook --syntax-check command. Always fix syntax errors before proceeding.--check parameter for dry-run executions to preview changes without modifying the target system.When encountering errors or unreachable hosts:
-v, -vv, or -vvv to your commands for deep debugging.ansible.log file (configured in ansible.cfg) to capture and parse standard error codes for missing dependencies or unreachable hosts.