gemini-delegate-skill

agent
Security Audit
Pass
Health Pass
  • License — License: MIT
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Community trust — 30 GitHub stars
Code Pass
  • Code scan — Scanned 2 files during light audit, no dangerous patterns found
Permissions Pass
  • Permissions — No dangerous permissions requested
Purpose
This skill acts as a bridge allowing Claude to delegate tasks to the Gemini CLI. It is specifically designed for large-context synthesis, bilingual (zh-TW/CJK) drafting, and acting as a second-opinion reviewer for long documentation.

Security Assessment
Overall Risk: Low. The tool functions by executing shell commands to launch the Gemini CLI on the local machine and writes the output to local files (e.g., `result.json`). It requires a network connection to reach Google's Gemini API, but only if you have already installed and authenticated their CLI tool separately. The automated code scan found no dangerous patterns, no hardcoded secrets, and the repository requires no elevated system permissions to run.

Quality Assessment
The project is actively maintained, with repository activity as recent as today. It is released under the standard MIT license, ensuring clear and permissive usage rights. While the community is relatively small, it has garnered 30 GitHub stars, indicating positive reception and basic peer trust. The codebase is minimal and well-scoped, relying on a core wrapper script and including dedicated tests for verification, which reflects solid development practices.

Verdict
Safe to use.
SUMMARY

Claude Code skill for using Gemini CLI for large-context synthesis, zh-TW/CJK writing, bilingual drafting, and second-opinion review.

README.md

Gemini Delegate Skill

繁體中文

gemini-delegate is a Claude-oriented skill for using Gemini as a specialist for large-context synthesis, bilingual or CJK writing, and second-opinion review.

Positioning

This skill is not the Gemini version of codex-delegate.

Its job is different:

  • summarize large English source material into zh-TW
  • synthesize across multiple files
  • draft bilingual or CJK-facing updates
  • perform reviewer-style second-opinion passes on long docs
  • align terminology across translated content

It is not intended for bulk code generation or architecture work.

What Changed In This Version

  • narrower scope: synthesis and CJK writing, not general execution
  • clearer boundary versus Codex and Claude
  • machine-readable wrapper output via <log>.result.json
  • verification-oriented wrapper tests

Core Pattern

  1. Claude prepares a context file with source paths, output paths, language, and constraints.
  2. Claude launches Gemini through the wrapper.
  3. The wrapper can verify required output files after execution.
  4. Claude performs factual, terminology, and tone review before shipping.

Gemini may produce useful drafts. Claude still decides whether the result is publishable.

Repository Layout

gemini-delegate-skill/
├── SKILL.md
├── README.md
├── README_zh-TW.md
├── scripts/
│   ├── run_gemini.sh
│   └── run_gemini.ps1
├── tests/
│   └── test_wrappers.py
└── references/

Testing

python -m pytest -q

Current wrapper tests cover:

  • success-path result.json generation
  • verification failure reporting

Installation

Gemini CLI must be available in your environment:

npm install -g @google/gemini-cli
gemini --version

License

MIT

Reviews (0)

No results found