Loading...
Loading...
Compare original and translation side by side
mcp__gitea__*mcp__github__*codex --versionmcp__gitea__*mcp__github__*codex --versionmcp__gitea__get_issue_by_index(owner, repo, index)mcp__MCP_DOCKER__get_issue(owner, repo, issue_number)gh issue view {issue_number} --repo {owner}/{repo}mcp__gitea__get_issue_by_index(owner, repo, index)mcp__MCP_DOCKER__get_issue(owner, repo, issue_number)gh issue view {issue_number} --repo {owner}/{repo}git checkout main && git pull origin main
git checkout -b feature/{issue-number}-{slug}git checkout main && git pull origin main
git checkout -b feature/{issue-number}-{slug}git worktree add ../worktrees/feature-{issue}-{slug} feature/{issue}-{slug}cp -R Vendor ../worktrees/feature-{slug}/git worktree add ../worktrees/feature-{issue}-{slug} feature/{issue}-{slug}cp -R Vendor ../worktrees/feature-{slug}/xcodebuild testnpm testxcodebuild testnpm testcodex review --base maingemini -p "/code-review"gh copilotopencode -p "review changes"undefinedcodex review --base maingemini -p "/code-review"gh copilotopencode -p "review changes"undefined
**IMPORTANT:** Wait for the full output. Do NOT run a second review unless you've made code changes to fix issues.
**If critical/high issues found:**
1. Fix all issues in code
2. Commit fixes
3. THEN run review again (this is a new review cycle)
**If no critical issues:** Proceed to commit.
See [CODE-REVIEW.md](CODE-REVIEW.md) for handling specific findings.
**重要提示:** 等待完整输出结果。除非已修复代码问题,否则不要运行第二次评审。
**若发现严重/高优先级问题:**
1. 在代码中修复所有问题
2. 提交修复内容
3. **然后**再次运行评审(进入新的评审周期)
**若无严重问题:** 继续提交代码。
特定问题的处理方式可参考[CODE-REVIEW.md](CODE-REVIEW.md)。git add . && git commit -m "feat(scope): description"
git push -u origin feature/{issue}-{slug}git add . && git commit -m "feat(scope): description"
git push -u origin feature/{issue}-{slug}mcp__gitea__create_pull_request(owner, repo, title, body, head, base="main")mcp__MCP_DOCKER__create_pull_request(owner, repo, title, body, head, base)gh pr create --title "title" --body "body" --base main --head feature/{issue}-{slug}mcp__gitea__create_pull_request(owner, repo, title, body, head, base="main")mcp__MCP_DOCKER__create_pull_request(owner, repo, title, body, head, base)gh pr create --title "title" --body "body" --base main --head feature/{issue}-{slug}git checkout main && git pull origin main
git merge feature/{issue}-{slug} --no-ff && git push origin maingit checkout main && git pull origin main
git merge feature/{issue}-{slug} --no-ff && git push origin mainmcp__gitea__edit_issue(owner, repo, index, state="closed")mcp__MCP_DOCKER__update_issue(owner, repo, issue_number, state="closed")gh issue close {issue_number} --repo {owner}/{repo}mcp__gitea__edit_issue(owner, repo, index, state="closed")mcp__MCP_DOCKER__update_issue(owner, repo, issue_number, state="closed")gh issue close {issue_number} --repo {owner}/{repo}git worktree remove ../worktrees/feature-{issue}-{slug}
git branch -d feature/{issue}-{slug}git worktree remove ../worktrees/feature-{issue}-{slug}
git branch -d feature/{issue}-{slug}feature/42-user-auth✅ Issue #42 implemented
✅ PR #15 created and merged
✅ Issue #42 closedfeature/42-user-auth✅ Issue #42已实现
✅ PR #15已创建并合并
✅ Issue #42已关闭