スキル一覧に戻る
hiromaily

fix-pr-review

by hiromaily

fix-pr-reviewは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。

120🍴 32📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: fix-pr-review description: Address PR review comments by selecting appropriate skills based on modified files. Use when fixing review feedback on pull requests.

Fix PR Review Workflow

Workflow for addressing review comments on pull requests.

Prerequisites

  • PR number is required
  • Use git-workflow Skill for commit conventions

Process Overview

1. Fetch PR details
2. Get review comments
3. Classify by file type
4. Load appropriate development skill
5. Fix each comment
6. Run verification
7. Push changes

Step 1: Fetch PR Information

# Get PR details
gh pr view {pr_number}

# Get PR diff to see modified files
gh pr diff {pr_number} --name-only

# Get review comments
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments

Step 2: Classify by Modified Files

Files ModifiedDevelopment Skill
internal/, pkg/, cmd/, *.gogo-development
apps/ripple-lib-server/, *.tstypescript-development
apps/erc20-token/contracts/, *.solsolidity-development
scripts/, *.shshell-scripts
Makefile, make/*.mkmakefile-update
tools/atlas/, *.sql, *.hcldb-migration
docs/, *.mddocs-update

Step 3: Load Development Skill

Based on classification, load the appropriate skill:

SkillPath
Go.claude/skills/go-development/SKILL.md
TypeScript.claude/skills/typescript-development/SKILL.md
Solidity.claude/skills/solidity-development/SKILL.md
Shell.claude/skills/shell-scripts/SKILL.md
Makefile.claude/skills/makefile-update/SKILL.md
Database.claude/skills/db-migration/SKILL.md
Docs.claude/skills/docs-update/SKILL.md

Step 4: Address Comments

Priority Order

  1. Security - Address security concerns first
  2. Functionality - Fix bugs or logic issues
  3. Code Quality - Style, naming, documentation

Comment Categories

CategoryAction
Bug fix requestedFix the issue, add test if applicable
Refactoring suggestionApply if improves readability
Style/namingFollow project conventions
DocumentationAdd/update comments
QuestionRespond in code comment or PR

Step 5: Run Verification

Run verification commands from the loaded development skill:

Go Files

make go-lint && make tidy && make check-build && make gotest

TypeScript Files

cd apps/ripple-lib-server && npm run lint && npm run build && npm test

Shell Scripts

make shfmt

Multiple Languages

If PR modifies multiple file types, run all applicable verification commands.

Step 6: Commit and Push

# Stage changes
git add .

# Commit with descriptive message
git commit -m "$(cat <<'EOF'
fix(scope): address PR review comments

- Fix: [specific fix 1]
- Fix: [specific fix 2]
- Update: [update description]
EOF
)"

# Push to update PR
git push

Common Review Patterns

Error Handling (Go)

Review comment: "Missing error context"

// Before
return err

// After
return fmt.Errorf("failed to create wallet: %w", err)

Logging Security

Review comment: "Don't log sensitive data"

// Before
log.Info("Processing key", "key", privateKey)

// After
log.Info("Processing key", "keyID", keyID)

Code Duplication

Review comment: "Extract to helper function"

// Before: Duplicated code in multiple places

// After: Create helper function
func helperFunction(params) result {
    // extracted logic
}
  • go-development - Go code changes
  • typescript-development - TypeScript changes
  • shell-scripts - Shell script changes
  • git-workflow - Branch and commit workflow

スコア

総合スコア

75/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

+5
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です