<?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: Ayan Putatunda</title>
    <description>The latest articles on DEV Community by Ayan Putatunda (@ayan_putatunda_5c1b3d6952).</description>
    <link>https://dev.to/ayan_putatunda_5c1b3d6952</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%2F3800867%2Ff4acc867-5584-49b7-be87-fc8186e2a803.png</url>
      <title>DEV Community: Ayan Putatunda</title>
      <link>https://dev.to/ayan_putatunda_5c1b3d6952</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ayan_putatunda_5c1b3d6952"/>
    <language>en</language>
    <item>
      <title>Building a Claude Code Slash Command That Writes Your Daily Standup Updates</title>
      <dc:creator>Ayan Putatunda</dc:creator>
      <pubDate>Mon, 02 Mar 2026 04:26:39 +0000</pubDate>
      <link>https://dev.to/ayan_putatunda_5c1b3d6952/building-a-claude-code-slash-command-that-writes-your-daily-standup-updates-2lgm</link>
      <guid>https://dev.to/ayan_putatunda_5c1b3d6952/building-a-claude-code-slash-command-that-writes-your-daily-standup-updates-2lgm</guid>
      <description>&lt;h1&gt;
  
  
  I Got Tired of Writing Standups Manually, So I Built a Claude Code Slash Command
&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;A weekend project that turned into something useful — and what I learned building it&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;I'll be honest — this started as a personal annoyance, not a grand plan.&lt;/p&gt;

&lt;p&gt;Every morning I'd spend a few minutes doing the same thing: opening Jira, scrolling through yesterday's tickets, checking my git log, trying to remember the thing I spent two hours on that I never actually committed. Then writing a standup that was always a little off.&lt;/p&gt;

&lt;p&gt;It's not a big problem. But it's a daily one.&lt;/p&gt;

&lt;p&gt;I'd been using Claude Code for a few weeks and noticed it had this feature called slash commands — custom markdown files you drop in &lt;code&gt;~/.claude/commands/&lt;/code&gt; that Claude picks up automatically. The community had built some really useful ones for git workflows, code review, PR automation.&lt;/p&gt;

&lt;p&gt;Nobody had built one for standups. So I thought I'd try.&lt;/p&gt;

&lt;p&gt;This is what I built, how it works, and what surprised me along the way.&lt;/p&gt;




&lt;h2&gt;
  
  
  What /standup Does
&lt;/h2&gt;

&lt;p&gt;Type &lt;code&gt;/standup&lt;/code&gt; in any Claude Code session and it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pulls your git commits since yesterday&lt;/li&gt;
&lt;li&gt;Reads Claude Code's own session files for everything you worked on — including sessions that crashed before you saved anything&lt;/li&gt;
&lt;li&gt;Optionally connects to Jira via the Atlassian MCP to pull your ticket status&lt;/li&gt;
&lt;li&gt;Formats everything into Yesterday / Today / Blockers&lt;/li&gt;
&lt;li&gt;Asks if you want to post back to Jira&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The output looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;📅 STANDUP UPDATE — March 1, 2026

YESTERDAY:
• Fixed authentication timeout bug (commit: ba28b5c)
• Investigated schema drift in orders pipeline — no commit yet
• Reviewed PR #47 for data contract changes

TODAY:
• PIPELINE-124: incremental load strategy (In Progress)
• Complete schema drift investigation

BLOCKERS:
• None

---
Post to Jira? (y/n):
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The TODAY section is AI-inferred from context — always worth a quick review before sharing.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Part That Surprised Me: Session Files
&lt;/h2&gt;

&lt;p&gt;I knew git log would work for commits. The interesting discovery was Claude Code's session files.&lt;/p&gt;

&lt;p&gt;Claude Code writes every session to &lt;code&gt;~/.claude/projects/&amp;lt;project-hash&amp;gt;/*.jsonl&lt;/code&gt; — and it writes continuously, not on close. Which means if your session crashes or you kill the terminal, the work is still there.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="o"&gt;!&lt;/span&gt;find ~/.claude/projects &lt;span class="nt"&gt;-name&lt;/span&gt; &lt;span class="s2"&gt;"*.jsonl"&lt;/span&gt; &lt;span class="nt"&gt;-newer&lt;/span&gt; ~/.standup_last_run &lt;span class="nt"&gt;-type&lt;/span&gt; f
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This turned out to be the most useful part of the whole command. Git tells you what you shipped. Session files tell you what you actually &lt;em&gt;worked on&lt;/em&gt; — the debugging rabbit holes, the documentation you read, the thing you tried that didn't work. That context is exactly what makes a standup useful and it's usually what gets left out.&lt;/p&gt;




&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/AyanPutatunda/claude-standup.git
&lt;span class="nb"&gt;mkdir&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; ~/.claude/commands
&lt;span class="nb"&gt;cp &lt;/span&gt;claude-standup/commands/standup.md ~/.claude/commands/standup.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open Claude Code in any git repo. Type &lt;code&gt;/standup&lt;/code&gt;. That's it — no npm, no config, no API keys.&lt;/p&gt;

&lt;p&gt;Jira integration is optional. If you want it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add &lt;span class="nt"&gt;--transport&lt;/span&gt; sse atlassian https://mcp.atlassian.com/v1/sse
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you don't, the command works fine with just git and session data.&lt;/p&gt;




&lt;h2&gt;
  
  
  One Thing I Had to Fix After Testing
&lt;/h2&gt;

&lt;p&gt;First version had a bug: if you ran &lt;code&gt;/standup&lt;/code&gt; twice in the same day, the second run returned nothing. The timestamp anchor was too precise — it marked the exact time of the last run, so a second run 5 minutes later found no new commits.&lt;/p&gt;

&lt;p&gt;The fix was simple: store the &lt;em&gt;date&lt;/em&gt; instead of the datetime.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Before — stored full timestamp, too aggressive&lt;/span&gt;
&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="si"&gt;$(&lt;/span&gt;&lt;span class="nb"&gt;date&lt;/span&gt; &lt;span class="nt"&gt;-u&lt;/span&gt; +%Y-%m-%dT%H:%M:%SZ&lt;span class="si"&gt;)&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; ~/.standup_last_run

&lt;span class="c"&gt;# After — store date only, resets at midnight&lt;/span&gt;
&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="si"&gt;$(&lt;/span&gt;&lt;span class="nb"&gt;date&lt;/span&gt; +%Y-%m-%d&lt;span class="si"&gt;)&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; ~/.standup_last_run
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now you can run it as many times as you want during the day and always get the full picture. Small thing but it matters for daily use.&lt;/p&gt;




&lt;h2&gt;
  
  
  How I Built It (The Interesting Part)
&lt;/h2&gt;

&lt;p&gt;I used Claude Code's experimental Agent Teams feature — something I'd read about but never tried.&lt;/p&gt;

&lt;p&gt;The idea: the command has four independent concerns. Git data collection. Session file parsing. Jira integration. Output formatting. Each could be researched and built in parallel without stepping on each other.&lt;/p&gt;

&lt;p&gt;I enabled agent teams in &lt;code&gt;settings.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then told Claude to spawn four specialist agents simultaneously — one per concern, each writing to its own file. An orchestrator assembled the final command when all four finished.&lt;/p&gt;

&lt;p&gt;I don't know if this was the "right" way to do it. But it was fast, and each agent produced noticeably better output because it wasn't context-switching between four different problem domains.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;A few things I want to add:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;/retro&lt;/code&gt; — same approach for sprint retrospectives&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/debt&lt;/code&gt; — technical debt audit from TODOs and stale dependencies&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;/context-handoff&lt;/code&gt; — end-of-session summary for async teams&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If any of these would be useful to you, the repo is open and PRs are welcome. Especially interested in format variants — every team does standups slightly differently and I've only built the one my team uses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/AyanPutatunda/claude-standup" rel="noopener noreferrer"&gt;github.com/AyanPutatunda/claude-standup&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you try it and something breaks, open an issue. If it works, a ⭐ helps other people find it.&lt;/p&gt;

</description>
      <category>claudecode</category>
      <category>multiagent</category>
    </item>
  </channel>
</rss>
