Conversation
Introduce ask-gemini skill that wraps the Gemini CLI in non-interactive mode with built-in web-search instruction, defaulting to gemini-3.1-pro-preview. Supports --gemini-model and --gemini-timeout flags. Add tool metadata tagging (tool: codex / tool: gemini) to both ask-codex and ask-gemini invocations so the monitor can distinguish them. Extend humanize monitor with codex and gemini subcommands that filter skill invocations by tool type. The existing skill subcommand continues to show all invocations. Bump version to 1.17.0.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 016caca398
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if ! command -v gemini &>/dev/null; then | ||
| echo "Error: 'gemini' command is not installed or not in PATH" >&2 | ||
| echo "" >&2 | ||
| echo "Please install Gemini CLI: npm install -g @anthropic-ai/gemini-cli or https://github.com/anthropics/gemini-cli" >&2 |
There was a problem hiding this comment.
Replace invalid Gemini CLI install guidance
When gemini is missing, this error path tells users to install @anthropic-ai/gemini-cli or visit github.com/anthropics/gemini-cli, but the official CLI is @google/gemini-cli in google-gemini/gemini-cli. In a fresh environment this sends users to a non-existent/wrong package and blocks setup of the new ask-gemini skill, so the recovery instructions should be corrected to the official install source.
Useful? React with 👍 / 👎.
Summary
ask-geminiskill wrapping Gemini CLI (gemini -p) with built-in web-search instruction, defaulting togemini-3.1-pro-previewtoolmetadata tag (codex/gemini) to skill invocations for filteringhumanize monitorwithcodexandgeminisubcommands;skillcontinues to show all invocationsTest plan
/humanize:ask-geminiwith a web-research question and verify response/humanize:ask-gemini --gemini-model gemini-2.5-proto test model overridehumanize monitor geminiandhumanize monitor codexto verify filteringhumanize monitor skillto verify it still shows all invocationsask-codexinvocations now includetool: codexin metadata