-
Notifications
You must be signed in to change notification settings - Fork 212
docs: add installation instructions for Gemini CLI #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -98,6 +98,47 @@ mv SKILL.md AGENTS.md | |||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| Requires any paid ChatGPT plan. | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| ### Option 3: Gemini CLI | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| 1. Clone the repo: | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| ```bash | ||||||||||||||||||||||||||||||||||||||||||||
| git clone https://github.com/noamseg/interview-coach-skill.git | ||||||||||||||||||||||||||||||||||||||||||||
| cd interview-coach-skill | ||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| Or [download it as a ZIP](https://github.com/noamseg/interview-coach-skill/archive/refs/heads/main.zip) and unzip. | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| 2. Activate the coach by renaming the skill file: | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| ```bash | ||||||||||||||||||||||||||||||||||||||||||||
| mv SKILL.md GEMINI.md | ||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| 3. Rename the settings folder to match Gemini CLI: | ||||||||||||||||||||||||||||||||||||||||||||
| ```bash | ||||||||||||||||||||||||||||||||||||||||||||
| mv .claude .gemini | ||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
| 4. In `settings.json`, update the permission keys to match Gemini CLI: | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
| 4. In `settings.json`, update the permission keys to match Gemini CLI: | |
| 4. In `.gemini/settings.json`, update the permission values in the `permissions.allow` array to match Gemini CLI: |
Copilot
AI
Mar 30, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fenced code block for step 3 isn’t separated/indented under the numbered list item, which can break list formatting in GitHub/CommonMark. Add a blank line before the fence and indent the fenced block so it’s clearly nested under item 3.
| ```bash | |
| mv .claude .gemini | |
| ``` | |
| 4. In `settings.json`, update the permission keys to match Gemini CLI: | |
| ```json | |
| { | |
| "permissions": { | |
| "allow": [ | |
| "read_file", | |
| "list_directory", | |
| "write_file", | |
| "web_fetch", | |
| "web_search" | |
| ] | |
| } | |
| } | |
| ``` | |
| ```bash | |
| mv .claude .gemini |
-
In
settings.json, update the permission keys to match Gemini CLI:{ "permissions": { "allow": [ "read_file", "list_directory", "write_file", "web_fetch", "web_search" ] } }
Copilot
AI
Mar 30, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The paragraph after the options still says “For both options”, but there are now three setup options (Claude, Codex, Gemini). Update this phrasing to “For all options” (or similar) so the README stays consistent.
| For both options, the coach will ask for your resume, target role, and timeline — then build your profile, assess your starting point, and give you a prioritized action plan. Everything saves automatically to `coaching_state.md` so you pick up where you left off next session. | |
| For all options, the coach will ask for your resume, target role, and timeline — then build your profile, assess your starting point, and give you a prioritized action plan. Everything saves automatically to `coaching_state.md` so you pick up where you left off next session. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new Gemini setup introduces
GEMINI.mdas an alternative activation filename, but later in the README “Repository Structure” still says to renameSKILL.mdtoCLAUDE.mdto activate. Consider updating that later section to reflect all supported activation filenames so the documentation doesn’t contradict itself.