Add gemini-cli role

This commit is contained in:
Kenneth Benzie 2025-08-18 22:30:22 +01:00
parent d41ea98da0
commit ee3ea63383

View File

@ -0,0 +1,14 @@
---
- name: install homebrew package
when: ansible_os_family == 'Darwin'
homebrew:
state: latest
name: gemini-cli
- name: install npm package
when: ansible_os_family != 'Darwin'
become: true
community.general.npm:
name: '@google/gemini-cli'
state: latest
global: true