Generator
Skill pantheon-org/tekhne/skills/infrastructure/ansible/generator
Generates, validates, and refactors production-ready Ansible playbooks, roles, task files, and inventory configurations following current best practices. Use when the user asks to create, build, or generate Ansible automation, YAML playbooks, infrastructure as code, configuration management files, DevOps roles, or .yml files for Ansible — including requests like "create a playbook to...", "build a role for...", "generate an inventory for...", or "set up Ansible to automate...". Automatically validates all output using the devops-skills:ansible-validator skill.From its SKILL.md
npx -y skills add pantheon-org/tekhne --skill generatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
10.6 KB, ~2.5k tokens by cl100k_base, as published. Nobody here has run it
Ansible Generator
Overview
Generate production-ready Ansible resources (playbooks, roles, task files, inventory files, project configs) following current best practices, naming conventions, and security standards. All generated resources are validated using the devops-skills:ansible-validator skill before delivery.
Core Capabilities
All capabilities follow the same validation loop: generate → invoke
devops-skills:ansible-validator→ fix errors → re-validate → present output. See Validation Workflow for full details.
1. Generate Playbooks
Process:
- Clarify hosts, privileges, OS
- Read
references/best-practices.mdandreferences/module-patterns.md - Use
assets/templates/playbook/basic_playbook.ymlas structural reference - Generate following mandatory standards (see Mandatory Standards)
Example structure:
---
# Playbook: <title>
# Description: <what it does>
# Requirements: Ansible 2.10+, <OS>
# Variables:
# - <var_name>: <description> (default: <value>)
# Usage: ansible-playbook -i inventory/<env> <playbook>.yml
- name: <Verb phrase describing the play>
hosts: <group>
become: true
gather_facts: true
vars:
app_port: 8080
pre_tasks:
- name: <Setup steps>
# ...
tasks:
- name: <Verb-first task name>
ansible.builtin.<module>:
# parameters
tags: [<tag1>, <tag2>]
post_tasks:
- name: <Verification steps>
# ...
handlers:
- name: <Handler name>
ansible.builtin.service:
name: <service>
state: reloaded
2. Generate Roles
Process:
- Clarify role purpose and scope
- Copy and customize the full role structure from
assets/templates/role/:tasks/main.yml,handlers/main.yml,templates/,files/vars/main.yml,vars/Debian.yml,vars/RedHat.ymldefaults/main.yml,meta/main.yml,meta/argument_specs.yml(Ansible 2.11+),README.md
- Replace all
[PLACEHOLDERS]:[ROLE_NAME],[role_name],[PLAYBOOK_DESCRIPTION],[package_name],[service_name],[default_port] - Prefix all role variables with the role name (e.g.,
nginx_port,nginx_worker_processes) - Use
include_varsfor OS-specific variables
meta/argument_specs.yml enables automatic variable validation (Ansible 2.11+).
3. Generate Task Files
Process:
- Define the operation
- Reference
references/module-patterns.mdfor module usage - Generate with: verb-first names, FQCN modules, idempotency checks, tags
See assets/templates/ for full task file examples (e.g., database backup, user management).
4. Generate Inventory Files
Process:
- Understand infrastructure topology
- Use
assets/templates/inventory/as reference:hosts— main inventory (INI for simple; YAML for complex hierarchies)group_vars/all.yml,group_vars/[groupname].yml,host_vars/[hostname].yml
- Organize hosts into logical groups (functional, environment, geographic)
- Define variables at appropriate levels: all → group → host
Dynamic inventory (cloud): Use provider plugins configured from references/module-patterns.md:
- AWS EC2:
plugin: amazon.aws.aws_ec2 - Azure:
plugin: azure.azcollection.azure_rm
5. Generate Project Configuration Files
Use templates from assets/templates/project/:
ansible.cfg— forks, timeout, pathsrequirements.yml— collections and roles dependencies.ansible-lint— lint rules
6. Handling Custom Modules and Collections
When a user mentions a non-builtin collection (e.g., kubernetes.core, amazon.aws, community.docker):
- Search for current documentation:
"ansible [collection.name] [module] latest documentation examples" - If Context7 MCP is available: Use
mcp__context7__resolve-library-idthenmcp__context7__get-library-docs - Generate using discovered info: correct FQCN, current parameters, collection install instructions
Include installation instructions in comments:
# Requirements:
# - ansible-galaxy collection install kubernetes.core:2.4.0
# or in requirements.yml:
# collections:
# - name: kubernetes.core
# version: "2.4.0"
Mandatory Standards
All generated resources must follow these standards. See references/best-practices.md for full details and rationale.
Key rules at a glance:
| Standard | Correct | Incorrect |
|---|---|---|
| FQCN | ansible.builtin.copy | copy |
| Booleans | true/false | yes/no |
| RHEL packages | ansible.builtin.dnf | ansible.builtin.yum |
| Secrets | no_log: true | plain logging |
| File perms | '0644' configs, '0600' secrets | world-writable |
Builtin Fallback Pattern
When validation fails due to missing collections, rewrite using builtins:
# Preferred (requires community.postgresql):
# - community.postgresql.postgresql_db: {name: mydb, state: present}
# Builtin fallback:
- name: Check if database exists
ansible.builtin.command:
cmd: psql -tAc "SELECT 1 FROM pg_database WHERE datname='mydb'"
become: true
become_user: postgres
register: db_check
changed_when: false
- name: Create database
ansible.builtin.command:
cmd: psql -c "CREATE DATABASE mydb"
become: true
become_user: postgres
when: db_check.stdout != "1"
changed_when: true
Common Patterns
Multi-OS Support
- name: Install nginx (Debian/Ubuntu)
ansible.builtin.apt:
name: nginx
state: present
when: ansible_os_family == "Debian"
- name: Install nginx (RHEL 8+)
ansible.builtin.dnf:
name: nginx
state: present
when: ansible_os_family == "RedHat"
Async Long-Running Tasks
- name: Run database migration
ansible.builtin.command: /opt/app/migrate.sh
async: 3600
poll: 0
register: migration
- name: Check migration status
ansible.builtin.async_status:
jid: "{{ migration.ansible_job_id }}"
register: job_result
until: job_result.finished
retries: 360
delay: 10
Validation Workflow
Every generated resource must be validated before presenting to the user.
- Generate the Ansible file
- Invoke
devops-skills:ansible-validator - If validation fails → fix errors → re-validate
- If validation passes → present using the required output format
Skip validation only when: generating partial snippets, documentation examples, or when the user explicitly requests to skip.
Required Output Format
## Generated [Resource Type]: [Name]
**Validation Status:** ✅ All checks passed
- YAML syntax: Passed
- Ansible syntax: Passed
- Ansible lint: Passed
**Summary:**
- [What was generated and key decisions]
**Usage:**
```bash
[Exact command]
```
**Prerequisites:**
- [Required collections, system requirements]
Anti-Patterns
NEVER use gather_facts: true by default for large inventories
- WHY: Fact gathering adds 2-5 seconds per host at connection time; for playbooks targeting hundreds of hosts this significantly increases total runtime for plays that do not need facts.
- BAD: Relying on the default
gather_factsbehaviour in every play, including utility plays that never referenceansible_*variables. - GOOD: Set
gather_facts: falseglobally inansible.cfgand enable it per-play only when facts are actually needed (conditionals, templates usingansible_os_family, etc.).
NEVER store secrets in group_vars/ plaintext files
- WHY: Any plaintext password or API key committed to
group_vars/is permanently exposed in source control history, even after deletion. - BAD:
ansible_become_password: mypasswordingroup_vars/all.ymlcommitted to the repository. - GOOD: Use Ansible Vault (
ansible-vault encrypt_string) or an external secrets manager (HashiCorp Vault, AWS Secrets Manager) and reference values via lookup plugins.
NEVER use the shell or command module when a dedicated module exists
- WHY:
shellandcommandbypass idempotency guarantees, built-in error handling, and change detection that dedicated modules provide; they also resist linting and security scanning. - BAD:
ansible.builtin.shell: pip install requestsinstead of using thepipmodule. - GOOD:
ansible.builtin.pip: name: requests state: present— use the purpose-built module so Ansible can detect and report actual state changes.
NEVER write tasks without name: fields
- WHY: Unnamed tasks produce unreadable playbook output and make debugging nearly impossible when a play contains many tasks; they also fail
ansible-lintname rules. - BAD:
- apt: name=nginx state=presentwith noname:field. - GOOD: Always prefix every task with a descriptive
name:, e.g.,- name: Install nginx web server.
NEVER use ignore_errors: true as a general exception handler
- WHY:
ignore_errors: truesilently swallows all failures and lets the playbook continue in a potentially broken state, masking errors that affect downstream tasks. - BAD:
ignore_errors: trueon a package installation task where failure means the service cannot start. - GOOD: Use
failed_whenwith specific conditions to define expected failure states, or useblock/rescue/alwaysfor structured error handling with recovery logic.
References
References (read at generation start)
references/best-practices.md— directory structures, naming conventions, security, performance, common pitfallsreferences/module-patterns.md— module usage patterns, copy-paste examples for all common modules
Assets (structural templates)
assets/templates/playbook/basic_playbook.yml— playbook structure referenceassets/templates/role/*— role directory structure and variable conventionsassets/templates/inventory/*— host grouping and group_vars/host_vars patternsassets/templates/project/*—ansible.cfg,requirements.yml,.ansible-lint
Template usage: Review structure → generate following the same pattern → replace [PLACEHOLDERS] → customize for requirements → remove inapplicable sections → validate.
What ships with it: 37 files
97.3 KB alongside SKILL.md
assets/
- templates/inventory/group_vars/all.yml425 B
- templates/inventory/group_vars/databases.yml560 B
- templates/inventory/group_vars/webservers.yml414 B
- templates/inventory/hosts547 B
- templates/inventory/host_vars/web1.example.com.yml353 B
- templates/playbook/basic_playbook.yml1.4 KB
- templates/project/ansible.cfg2.3 KB
- templates/project/.ansible-lint6.1 KB
- templates/project/requirements.yml2.7 KB
- templates/role/defaults/main.yml723 B
- templates/role/handlers/main.yml383 B
- templates/role/meta/argument_specs.yml2.6 KB
- templates/role/meta/main.yml615 B
- templates/role/README.md1.6 KB
- templates/role/tasks/main.yml1.2 KB
- templates/role/templates/config.j2611 B
- templates/role/vars/Debian.yml187 B
- templates/role/vars/main.yml320 B
- templates/role/vars/RedHat.yml191 B
evals/
- instructions.json1.1 KB
- scenario-01/capability.txt74 B
- scenario-01/criteria.json727 B
- scenario-01.md3.8 KB
- scenario-01/task.md204 B
- scenario-02/capability.txt55 B
- scenario-02/criteria.json729 B
- scenario-02.md3.8 KB
- scenario-02/task.md167 B
- scenario-03/capability.txt63 B
- scenario-03/criteria.json697 B
- scenario-03.md4.0 KB
- scenario-03/task.md189 B
- scenario-04.md3.9 KB
- scenario-05.md3.6 KB
- summary.json566 B
references/
- best-practices.md18.9 KB
- module-patterns.md31.6 KB