<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Naoya</title>
    <description>The latest articles on Forem by Naoya (@kroro1208).</description>
    <link>https://forem.com/kroro1208</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3482803%2Ff952c7d4-6d91-4939-bfc2-9ea0ab6c40dd.png</url>
      <title>Forem: Naoya</title>
      <link>https://forem.com/kroro1208</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/kroro1208"/>
    <language>en</language>
    <item>
      <title>GitHub Review Tracker v1.7.5 Released!</title>
      <dc:creator>Naoya</dc:creator>
      <pubDate>Sun, 14 Sep 2025 05:26:31 +0000</pubDate>
      <link>https://forem.com/kroro1208/github-review-tracker-v175-released-4d7i</link>
      <guid>https://forem.com/kroro1208/github-review-tracker-v175-released-4d7i</guid>
      <description>&lt;p&gt;here is the first version article.&lt;br&gt;
&lt;a href="https://dev.to/kroro1208/built-a-cli-tool-to-help-manage-code-review-feedback-thoughts-3i5o"&gt;https://dev.to/kroro1208/built-a-cli-tool-to-help-manage-code-review-feedback-thoughts-3i5o&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Today, New version released!&lt;br&gt;
✨ New Features&lt;br&gt;
  📊 PR-based review listing&lt;br&gt;
  🎨 Beautiful ASCII art loading screen&lt;br&gt;
  📈 Real-time progress bar&lt;br&gt;
  🌐 Bilingual EN/JP support&lt;/p&gt;

&lt;p&gt;Must-have CLI for developers!&lt;br&gt;
  &lt;code&gt;npx get-gh-reviews reviews -u username&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;#GitHub #Developer #CLI #CodeReview #npm #OpenSource&lt;/p&gt;

</description>
      <category>programming</category>
      <category>github</category>
      <category>webdev</category>
      <category>npm</category>
    </item>
    <item>
      <title>Built a CLI tool to help manage code review feedback - thoughts?</title>
      <dc:creator>Naoya</dc:creator>
      <pubDate>Sat, 06 Sep 2025 03:28:48 +0000</pubDate>
      <link>https://forem.com/kroro1208/built-a-cli-tool-to-help-manage-code-review-feedback-thoughts-3i5o</link>
      <guid>https://forem.com/kroro1208/built-a-cli-tool-to-help-manage-code-review-feedback-thoughts-3i5o</guid>
      <description>&lt;p&gt;Hi everyone! 👋&lt;/p&gt;

&lt;p&gt;I'm a software engineer from Japan, and I'd like to share a CLI tool I built to help junior developers (and everyone!) better manage and learn from code reviews.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;As a developer, I found that valuable code reviews from senior engineers were scattered across multiple PRs and easy to forget. GitHub's current interface requires checking each PR individually to see review comments, which makes it hard to consolidate and learn from all that feedback.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is get-gh-reviews?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.npmjs.com/package/get-gh-reviews" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/get-gh-reviews&lt;/a&gt;&lt;br&gt;
It's a CLI tool that &lt;strong&gt;exports all the reviews you've received on your PRs into organized markdown files&lt;/strong&gt;. The tool generates both a summary list and detailed review comments, including the actual code snippets that were reviewed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;📋 Exports all reviews received on your PRs in a repository&lt;/li&gt;
&lt;li&gt;📝 Generates clean markdown files (perfect for copying to Notion!)&lt;/li&gt;
&lt;li&gt;🔗 Includes clickable links to original PR discussions&lt;/li&gt;
&lt;li&gt;💾 Shows the actual code that was reviewed alongside comments&lt;/li&gt;
&lt;li&gt;📊 Organizes reviews by PR with summary and details&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Example Usage
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; get-gh-reviews
get-gh-reviews reviews &lt;span class="nt"&gt;-u&lt;/span&gt; your-username &lt;span class="nt"&gt;--markdown&lt;/span&gt; my-reviews.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This creates a comprehensive markdown file with all your received reviews, organized and ready for study.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built this
&lt;/h2&gt;

&lt;p&gt;Code reviews from senior developers are pure gold for learning, especially for junior engineers. But human memory is limited - we tend to forget valuable feedback over time. This tool helps create your own personal learning resource from all the reviews you've received.&lt;/p&gt;

&lt;p&gt;The tool got 2000+ downloads in the first day, which tells me this is a real pain point for many developers!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/Kroro1208/gh-get-reviews" rel="noopener noreferrer"&gt;https://github.com/Kroro1208/gh-get-reviews&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;npm&lt;/strong&gt;: &lt;a href="https://www.npmjs.com/package/get-gh-reviews" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/get-gh-reviews&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I've also submitted a feature request to GitHub to add this natively: &lt;a href="https://github.com/orgs/community/discussions/172240#discussioncomment-14303297" rel="noopener noreferrer"&gt;https://github.com/orgs/community/discussions/172240#discussioncomment-14303297&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love your thoughts and feedback! Do you struggle with managing and learning from code reviews too?&lt;/p&gt;

&lt;p&gt;Thanks for checking it out! 🙏&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>webdev</category>
      <category>github</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
