一键导入
setup-reviews
Initializes the workspace with self-evolving reviews configurations, templates, prompts, and report directories.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Initializes the workspace with self-evolving reviews configurations, templates, prompts, and report directories.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audits the codebase and updates the root README.md to reflect the latest status, architectures, and guidelines.
Analyzes the codebase context to regenerate all workspace-specific review prompts using meta-prompts.
Perform a full-spectrum architectural audit of the system architecture, dependencies, and patterns.
Perform a high-fidelity code review of the workspace or staged changes based on generated instructions.
Audits and harmonizes all configuration layers (GEMINI.md, Skills, docs, MCP servers) to resolve inconsistencies.
Updates documentation and guides, verifying the feature implementation before marking it complete.
| name | setup-reviews |
| description | Initializes the workspace with self-evolving reviews configurations, templates, prompts, and report directories. |
This skill bootstraps a new workspace with the self-evolving reviews system. It copies sample prompt/report scaffolds and example configuration templates from the plugin directory, then prints step-by-step merge instructions.
[!IMPORTANT] This skill never overwrites existing files in the workspace. All configuration templates are copied with an
_example.prefix, requiring a manual merge step by the developer.
[!NOTE] Local Installation: If this plugin was installed locally using the workspace installer script (
install.ps1orinstall.sh), all directories, prompts, and config templates are already copied to your workspace. You can skip directly to Step 4: Display Manual Merge Instructions or run/generate-review-promptsimmediately.
Determine the installed plugin path. The plugin is installed at one of these standard locations:
C:\Users\<Username>\.gemini\config\plugins\antigravity-self-evolving-reviews\%APPDATA%\antigravity\config\plugins\antigravity-self-evolving-reviews\Resolve the actual path by checking if the plugin.json file exists at each location. Use the first valid path found.
docs/ Folder to the WorkspaceRecursively copy the entire docs/ directory from the plugin directory into the active workspace root:
# Example — adjust paths as needed
$pluginDir = "$env:USERPROFILE\.gemini\config\plugins\antigravity-self-evolving-reviews"
$workspaceRoot = "<ACTIVE_WORKSPACE_ROOT>"
Copy-Item -Path "$pluginDir\docs" -Destination "$workspaceRoot\docs" -Recurse -Force
[!NOTE] The
docs/folder contains sample prompt and report files with disclaimer banners indicating they are placeholders. They will be overwritten on the first actual run of/generate-review-prompts(for prompts) or the respective review workflows (for reports).
Copy all files from the plugin's templates/ directory into the active workspace root (they already have the _example. prefix):
Get-ChildItem -Path "$pluginDir\templates" -File | ForEach-Object {
Copy-Item -Path $_.FullName -Destination "$workspaceRoot\$($_.Name)" -Force
}
This will place the following files in the workspace root:
_example.GEMINI.md_example.package.json_example.knip.jsonc_example.gitignore_example.CHANGELOG.mdAfter copying, display the following instructions to the user:
✅ Setup Complete! The following files have been copied to your workspace root:
| Template File | Merge Target |
|---|---|
_example.GEMINI.md | GEMINI.md (create if missing, or merge relevant sections) |
_example.package.json | package.json (merge scripts, dependencies, name/version) |
_example.knip.jsonc | knip.jsonc (merge workspace entries for your monorepo structure) |
_example.gitignore | .gitignore (append or merge entries you don't already have) |
_example.CHANGELOG.md | CHANGELOG.md (create if missing; do not overwrite an existing one) |
[!TIP] Feature Planning: Use
/run-feature-planto generate implementation plans for new features. This skill conducts pre-flight reconnaissance and produces a structured plan ready for dual-model review.
Next Steps:
_example.* file and compare it to the existing file (if any) in your workspace root._example.* files once you have merged their content./generate-review-prompts to generate workspace-tailored review prompts from the meta-prompts in docs/prompts/_meta/.[!TIP] A future release may introduce an automated merge helper. For now, manual merging ensures you don't accidentally overwrite project-critical configurations.