
developing-ansible-playbooks
by brlin-tw
This project provides personally preferred operating system customizations, for convenience after re-installing the system.
SKILL.md
name: developing-ansible-playbooks description: Provide guidelines on how to develop Ansible playbooks that are compliant with project standards. Should be used when generating, modifying, or reviewing Ansible playbooks, roles, or collections.
The developing-ansible-playbooks skill
This skill provides guidelines on how to develop Ansible playbooks that are compliant with project standards. Should be used when generating, modifying, or reviewing Ansible playbooks, roles, or collections.
Rule of thumb
If the Ansible playbook, role, or collection being developed has existing examples in the project repository, always refer to those examples and mimic their style and structure to ensure consistency.
If there are no existing examples in the project repository, refer to the following guidelines:
Task structure
The following structure should be followed for each task in the Ansible playbook:
- The
whenkey should be placed at the start of the task, right after thenamekey. - The module name should always be the last key of the task.
- The fully qualified collection name (FQCN) form should always be used.
- If the
becomekey is used, it should be placed right after thewhenkey. - The
becomekey is mandatory for tasks that require elevated privileges. - Ansible fact references should use the
ansible_factsprefix (e.g.,ansible_facts['os_family']instead ofansible_os_family). - Use
loopinstead ofwith_itemsfor iterating over lists. - When loops are used, customize the loop variable name using
loop_controlfor better readability. - Always use
trueandfalsefor boolean values.
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon
