一键导入
run-feature-complete
Updates documentation and guides, verifying the feature implementation before marking it complete.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Updates documentation and guides, verifying the feature implementation before marking it complete.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Initializes the workspace with self-evolving reviews configurations, templates, prompts, and report directories.
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.
| name | run-feature-complete |
| description | Updates documentation and guides, verifying the feature implementation before marking it complete. |
Execute this skill when a feature implementation has been verified and is ready for release. This skill executes the workspace-customized instructions located in docs/prompts/feature-complete.md.
Source of Truth Principle: All documentation updates must be driven by what exists in the codebase (e.g.,
package.jsonfiles, model definitions, config files), not by what the AI remembers from the conversation. Verify all version numbers, file paths, and tech references against actual source files before writing.
Read docs/prompts/feature-complete.md and execute the instructions contained within it in full.
[!NOTE] If the file contains only a placeholder/disclaimer (i.e.,
/generate-review-promptshas not been run yet), fall back to the default feature-complete procedure below.
Use this procedure if docs/prompts/feature-complete.md has not yet been generated by /generate-review-prompts.
Review the recent conversation history, task.md, and implementation_plan.md to identify the specific feature that was just completed.
implementation_plan.md: Mark all relevant steps as [x] (Completed).task.md: Mark the top-level task and sub-tasks as [x].docs/project/backlog.md: Move the feature from "Backlog" or "In Progress" to "Completed". Mark resolved technical debt items as [x].docs/project/feature-status.md: Update the feature status to "Completed" / "Live".docs/project/roadmap.md: Check off the milestone corresponding to this feature.GEMINI.md.skills/.GEMINI.md.Scan for any documentation that might be outdated by this change and update accordingly.
git log to list commits included in this release.git diff --name-status to enumerate changed files.CHANGELOG.md has been updated.git tag --list to confirm the new version doesn't conflict with an existing tag.[!IMPORTANT] The AI's git boundary ends at staging (
git add). All commands below are USER-ONLY. The AI must call these out explicitly so the user knows what to execute.
# 1. Commit all staged changes
git commit -m "docs: feature-complete vX.Y.Z — <Feature Name>"
# 2. Create the release tag
git tag vX.Y.Z
# 3. Push the commit AND the tag together
git push origin main --tags