<?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>DEV Community: prayag tushar</title>
    <description>The latest articles on DEV Community by prayag tushar (@prayagtushar).</description>
    <link>https://dev.to/prayagtushar</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%2F1544646%2Fede511c9-f60b-4b52-bc85-64868902ec46.jpg</url>
      <title>DEV Community: prayag tushar</title>
      <link>https://dev.to/prayagtushar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prayagtushar"/>
    <language>en</language>
    <item>
      <title>Standup-CLI: The Daily Standup Auto-Generator</title>
      <dc:creator>prayag tushar</dc:creator>
      <pubDate>Wed, 28 Jan 2026 12:15:00 +0000</pubDate>
      <link>https://dev.to/prayagtushar/standup-cli-the-daily-standup-auto-generator-194f</link>
      <guid>https://dev.to/prayagtushar/standup-cli-the-daily-standup-auto-generator-194f</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkt9dv5p8ikd8hdv56h3b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkt9dv5p8ikd8hdv56h3b.png" alt="Preview Image" width="800" height="517"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/github-2026-01-21"&gt;GitHub Copilot CLI Challenge&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Standup-CLI&lt;/strong&gt; is a command-line tool that automatically generates daily standup summaries from git commit history. It helps developers quickly answer the question: &lt;em&gt;“What did I work on?”&lt;/em&gt; without manually scanning commit logs.&lt;/p&gt;

&lt;p&gt;The tool works with both &lt;strong&gt;local repositories&lt;/strong&gt; and &lt;strong&gt;public GitHub repository URLs&lt;/strong&gt;, analyzing recent commits and categorizing them into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Features&lt;/li&gt;
&lt;li&gt;Bug Fixes&lt;/li&gt;
&lt;li&gt;Maintenance / Chores&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The output is a clean, human-readable standup update that can be pasted directly into Slack, Notion, Jira, or any team standup workflow.&lt;/p&gt;


&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;Check out the repository and usage guide here:&lt;br&gt;
&lt;a href="https://github.com/prayagtushar/standup-cli/blob/main/README.md" rel="noopener noreferrer"&gt;https://github.com/prayagtushar/standup-cli/blob/main/README.md&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can run it in your terminal with a single command, for example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;standup-cli &lt;span class="nt"&gt;--repo&lt;/span&gt; &amp;lt;path_or_url&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It generates a concise summary of your recent work automatically.&lt;/p&gt;




&lt;h2&gt;
  
  
  Motivation
&lt;/h2&gt;

&lt;p&gt;Daily standups are simple in theory but tedious in practice. Scrolling through git logs or trying to remember all changes can take time and break your flow. I wanted a tool that could &lt;strong&gt;turn commit history into a structured, human-readable summary&lt;/strong&gt; instantly.&lt;/p&gt;

&lt;p&gt;The goal: minimize friction, maximize developer focus, and reduce the cognitive load of reporting your own work.&lt;/p&gt;




&lt;h2&gt;
  
  
  My Experience with GitHub Copilot CLI
&lt;/h2&gt;

&lt;p&gt;GitHub Copilot CLI accelerated my development significantly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Quickly scaffolded CLI commands and argument parsing&lt;/li&gt;
&lt;li&gt;Assisted in writing and refining git commit parsing logic&lt;/li&gt;
&lt;li&gt;Suggested improvements for error handling and edge cases&lt;/li&gt;
&lt;li&gt;Reduced time spent on boilerplate, letting me focus on &lt;strong&gt;core functionality&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Copilot CLI acted like a &lt;strong&gt;pair programmer in the terminal&lt;/strong&gt;, helping me stay in flow and iterate faster. Without it, writing the parsing logic, categorization rules, and CLI scaffolding would have taken much longer.&lt;/p&gt;




&lt;h2&gt;
  
  
  Lessons Learned
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Good tooling reduces friction&lt;/strong&gt;: Developers spend more time coding when repetitive tasks are automated.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dependency management is critical&lt;/strong&gt;: Properly declaring Python dependencies ensures smooth installs via pip, pipx, or Homebrew.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Testing in clean environments prevents surprises&lt;/strong&gt;: Homebrew and pipx installations caught missing dependencies I wouldn’t have noticed locally.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Installation&lt;br&gt;
Option 1: From PyPI (Recommended)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install standup-cli
standup-cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;GitHub Repository: &lt;a href="https://github.com/prayagtushar/standup-cli/tree/main" rel="noopener noreferrer"&gt;standup-cli&lt;/a&gt;&lt;br&gt;
PyPI: &lt;a href="https://pypi.org/project/standup-cli/" rel="noopener noreferrer"&gt;standup-cli&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>githubchallenge</category>
      <category>cli</category>
      <category>githubcopilot</category>
    </item>
    <item>
      <title>My Portfolio — Built with Antigravity, Gemini CLI and Google Cloud Run</title>
      <dc:creator>prayag tushar</dc:creator>
      <pubDate>Tue, 27 Jan 2026 19:21:18 +0000</pubDate>
      <link>https://dev.to/prayagtushar/my-portfolio-built-with-gemini-google-cloud-run-3ggg</link>
      <guid>https://dev.to/prayagtushar/my-portfolio-built-with-gemini-google-cloud-run-3ggg</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/new-year-new-you-google-ai-2025-12-31"&gt;New Year, New You Portfolio Challenge presented by Google AI&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  About Me
&lt;/h2&gt;

&lt;p&gt;Hi, I’m &lt;strong&gt;Prayag Tushar&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;
I’m a Junior Software Engineer.&lt;/p&gt;

&lt;p&gt;My work mainly focuses on building production-ready web applications using &lt;strong&gt;React, Next.js, and backend frameworks like NestJS&lt;/strong&gt;. I care a lot about &lt;strong&gt;code structure, UI clarity, and maintainable systems&lt;/strong&gt;.&lt;/p&gt;


&lt;h2&gt;
  
  
  Portfolio
&lt;/h2&gt;


&lt;div class="ltag__cloud-run"&gt;
  &lt;iframe height="600px" src="https://prayagtushar-264163435924.asia-south1.run.app/"&gt;
  &lt;/iframe&gt;
&lt;/div&gt;


&lt;blockquote&gt;
&lt;p&gt;This portfolio is deployed on &lt;strong&gt;Google Cloud Run&lt;/strong&gt; and embedded directly here, as required by the challenge.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;p&gt;This portfolio was built to reflect how I approach real-world projects: clean structure, simple UI, and practical tooling.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tech Stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js&lt;/strong&gt; for server-rendered and static pages&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bun&lt;/strong&gt; as the runtime and package manager&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; for consistent styling and layout control&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docker&lt;/strong&gt; for containerization&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google Cloud Run&lt;/strong&gt; for deployment and scaling&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The application runs as a container on &lt;strong&gt;Google Cloud Run (asia-south1)&lt;/strong&gt;, which keeps deployment predictable and easy to reproduce.&lt;/p&gt;




&lt;h2&gt;
  
  
  UI and Engineering Practices
&lt;/h2&gt;

&lt;p&gt;A major focus while building this project was &lt;strong&gt;clarity over complexity&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Minimal UI with clear typography and spacing&lt;/li&gt;
&lt;li&gt;Reusable, well-scoped components&lt;/li&gt;
&lt;li&gt;Routing and layout follow standard Next.js conventions&lt;/li&gt;
&lt;li&gt;Consistent build and runtime behavior using Docker&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Using &lt;strong&gt;Bun&lt;/strong&gt; simplified dependency management and improved local development speed without adding unnecessary complexity.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I’m Most Proud Of
&lt;/h2&gt;

&lt;p&gt;I’m most proud of sticking to &lt;strong&gt;good engineering practices&lt;/strong&gt; while keeping the site simple.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;smooth and clear UI&lt;/strong&gt; without unnecessary visual noise&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;clean Cloud Run deployment&lt;/strong&gt; using Docker&lt;/li&gt;
&lt;li&gt;A modern but stable tech stack that’s easy to maintain&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The portfolio is fast, responsive, and easy to extend, which was the main goal from the start.&lt;/p&gt;




&lt;p&gt;Thanks for reading.&lt;br&gt;&lt;br&gt;
I’m always open to feedback or discussions.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>googlecloud</category>
      <category>nextjs</category>
      <category>portfolio</category>
    </item>
  </channel>
</rss>
