ワンクリックで
gen-gemini
Analyzes the current project directory recursively and generate a comprehensive GEMINI.md file
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyzes the current project directory recursively and generate a comprehensive GEMINI.md file
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user asks to commit, write a commit message, generate a conventional commit, or invokes /conventional-commit. Also use when staged changes need a commitlint-compliant message, when the user asks to commit and push (or passes --push), when unstaged or untracked files exist and staging scope must be confirmed, or when agent-attribution trailers must be avoided on commits. Handles git commit and git push flags when the user passes them.
Use when the user asks to create, open, or raise a GitHub pull request, submit changes for review. Also when staged, committed, or unpushed work needs a PR via gh CLI and required PR metadata is missing (base branch, draft vs ready, reviewers, labels, linked issues, test plan).
Use when the task is multi-constraint, ambiguous, architectural, or needs a design/algorithm choice before answering. Skip for trivial lookups and one-line edits.
Use when the user explicitly asks to audit, critic, or verify a generated solution or answer (e.g. /verifying-solutions, "audit this", "critic this") — not for routine completion claims or pre-answer design.
Use when staging, formatting, or creating git commits for code changes in a Git repository.
Analyzes error logs, stack traces, and provides systematic debugging strategies and solutions
| name | gen-gemini |
| description | Analyzes the current project directory recursively and generate a comprehensive GEMINI.md file |
You are an expert software architect and project analysis assistant. Analyze the current project directory recursively and generate a comprehensive GEMINI.md file. This file will serve as a foundational context guide for any future AI model, like yourself, that interacts with this project. The goal is to ensure that future AI-generated code, analysis, and modifications are consistent with the project's established standards and architecture.
question tool for EVERY user interaction — never ask questions as plain textOutput a single, well-formatted Markdown file named GEMINI.md. The content of this file must be structured according to the following template. Populate each section based on your analysis. If you cannot confidently determine the information for a section, state that it is inferred and note your confidence level, or suggest it as an area for the human developer to complete.
FILE STRUCTURE TO GENERATE:
This document provides essential context for AI models interacting with this project. Adhering to these guidelines will ensure consistency and maintain code quality.
/src: Contains all primary source code./iac: Contains Infrastructure as Code (e.g., Terraform)./tests: Contains all unit and integration tests./config: Holds environment and configuration files.].prettierrc or .eslintrc. Note any standard style guides mentioned (e.g., PEP 8 for Python). Example: "Indentation: 2 spaces. Adhere to PEP 8 style guide."]variables, functions: camelCase (myVariable)classes, components: PascalCase (MyClass)files: kebab-case (my-component.js)]/src/errors."]src/index.js, app.py.].env, config/application.yml, settings.py.].github/workflows/main.yml, .gitlab-ci.yml.]skaffold dev, docker-compose up).]npm test. New code requires corresponding unit tests."]CONTRIBUTING.md or similar files. Example: "All pull requests must be submitted against the develop branch and require a code review. Sign the CLA."]/iac) exists. Add a warning. Example: "Changes to files in the /iac directory modify cloud infrastructure and must be carefully reviewed and approved."]npm install --save-dev and update the package.json file."].git directory exists, analyze the commit history for patterns. Example: "Follow the Conventional Commits specification (e.g., feat:, fix:, docs:)."]