gemini-runner-audit
Use isolated Gemini CLI audit via local MCP tool (`gemini_audit`) for context-safe code/security/doc analysis with optional session resume.
소스 정보
- 저장소
- ID-VerNe/gemini-runner-mcp-skill-kit
- 최근 소스 활동
- 2026년 3월 31일 12:03
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- gemini-runner-audit
- description
- Use isolated Gemini CLI audit via local MCP tool (`gemini_audit`) for context-safe code/security/doc analysis with optional session resume.
# Gemini Runner Audit Skill
Use this skill when you need Gemini to run in an isolated subprocess and return structured results without polluting the main agent context.
## When to use
- Deep code audit (security, correctness, architecture)
- Large repo analysis where clean parent context is important
- Multi-turn Gemini analysis using `resume_session`
## Tool to call
- MCP tool name: `gemini_audit`
- Required argument: `task`
- Optional arguments:
- `cwd` (defaults to current working directory)
- `model`
- `mode`: `default | auto_edit | yolo | plan`
- `timeout_seconds`
- `resume_session`
## Default execution policy
1. Set `cwd` to current repo root unless user explicitly requests another path.
2. Start with `mode=default` and `timeout_seconds=1800` for heavy audits.
3. For short checks, use 120-300 seconds.
4. If the response includes a `Session ID`, reuse it for follow-up questions.
## Recommended prompts
- Security:
- `Run a comprehensive security audit of this repository and rank findings by severity.`
- Bug hunt:
- `Find concrete logic bugs and race conditions with file/line references.`
- Docs quality:
- `Evaluate README and docs for gaps, inconsistencies, and missing operational steps.`
## Output handling
Always parse and surface:
- `Status`
- `Session ID`
- `Summary` / `Full Response`
- `Tool Uses`
- `Errors`
- `Artifacts` path (`result.json`)
If status is `error` or `timeout`, include clear next action:
- increase timeout
- narrow task scope
- retry with same `resume_session` if applicable
## Guardrails
- Do not stream human mode for automation.
- Do not suppress Gemini errors; report them explicitly.
- Keep filesystem scope aligned with `cwd` to match user-visible project context.
GitHub에서 보기