<?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: Yongcheng Mu</title>
    <description>The latest articles on DEV Community by Yongcheng Mu (@yongcheng_mu_2df9565335d6).</description>
    <link>https://dev.to/yongcheng_mu_2df9565335d6</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%2F3979786%2F86888de8-8dc6-41db-8712-cc41fb8d6b81.png</url>
      <title>DEV Community: Yongcheng Mu</title>
      <link>https://dev.to/yongcheng_mu_2df9565335d6</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yongcheng_mu_2df9565335d6"/>
    <language>en</language>
    <item>
      <title>I Gave Claude Code 50 Tasks This Week. Here's the Pattern That Emerged.</title>
      <dc:creator>Yongcheng Mu</dc:creator>
      <pubDate>Thu, 11 Jun 2026 15:50:18 +0000</pubDate>
      <link>https://dev.to/yongcheng_mu_2df9565335d6/i-gave-claude-code-50-tasks-this-week-heres-the-pattern-that-emerged-41b7</link>
      <guid>https://dev.to/yongcheng_mu_2df9565335d6/i-gave-claude-code-50-tasks-this-week-heres-the-pattern-that-emerged-41b7</guid>
      <description>&lt;h1&gt;
  
  
  I Gave Claude Code 50 Tasks This Week. Here's the Pattern That Emerged
&lt;/h1&gt;

&lt;p&gt;I logged every task I sent to Claude Code for 7 days. 50 tasks, three categories emerged. Sharing here because I think the pattern is more useful than any "top 10 prompts" list.&lt;/p&gt;

&lt;h2&gt;
  
  
  Category 1: "Do this small thing correctly" (60%)
&lt;/h2&gt;

&lt;p&gt;Tiny, well-scoped jobs — write a test, rename a function, scaffold a config file. Claude Code crushes these. Median time: 12 seconds.&lt;/p&gt;

&lt;p&gt;The unlock: I stopped writing detailed prompts. "Add a unit test for the new &lt;code&gt;retry&lt;/code&gt; function" is enough. More detail made it slower, not better.&lt;/p&gt;

&lt;h2&gt;
  
  
  Category 2: "Plan, then I execute" (25%)
&lt;/h2&gt;

&lt;p&gt;For refactors I wasn't sure about, I asked Claude Code to &lt;em&gt;plan&lt;/em&gt; (read code, write a plan, no edits). I'd review the plan, tweak it, then either let it execute or do it myself.&lt;/p&gt;

&lt;p&gt;The unlock: planning mode is a thinking tool, not a coding tool. The plan was the deliverable; the code was optional.&lt;/p&gt;

&lt;h2&gt;
  
  
  Category 3: "I have no idea where to start" (15%)
&lt;/h2&gt;

&lt;p&gt;Greenfield problems. I gave Claude Code a fuzzy goal and let it ask me questions. Surprisingly, this is where the model was most valuable.&lt;/p&gt;

&lt;p&gt;The unlock: when I gave it a fuzzy goal, it asked 3-5 clarifying questions that I would have skipped. Saved hours.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd change
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Cap task length. &amp;gt;2000 tokens of context = noticeably worse.&lt;/li&gt;
&lt;li&gt;Keep a "solved it" log. The pattern I missed was: tasks I thought were "do" were actually "plan."&lt;/li&gt;
&lt;li&gt;Don't be polite. "Fix this" beats "could you please fix this" by 5%.&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  ai #claudecode #llm #workflow
&lt;/h1&gt;

</description>
    </item>
    <item>
      <title>Codex in 2026: A Practical First-Hour Walkthrough</title>
      <dc:creator>Yongcheng Mu</dc:creator>
      <pubDate>Thu, 11 Jun 2026 15:50:06 +0000</pubDate>
      <link>https://dev.to/yongcheng_mu_2df9565335d6/codex-in-2026-a-practical-first-hour-walkthrough-59ga</link>
      <guid>https://dev.to/yongcheng_mu_2df9565335d6/codex-in-2026-a-practical-first-hour-walkthrough-59ga</guid>
      <description>&lt;h1&gt;
  
  
  Codex in 2026: A Practical First-Hour Walkthrough
&lt;/h1&gt;

&lt;p&gt;I keep getting asked "what does a first session with Codex actually look like?" — so here's a real, unedited run from this week, with the exact prompts and the gotchas I hit.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Codex is, in one sentence
&lt;/h2&gt;

&lt;p&gt;It's an agent that lives in your terminal and in your editor. You give it a goal, it does the work, you review the diff.&lt;/p&gt;

&lt;h2&gt;
  
  
  My first hour, step by step
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Install + auth.&lt;/strong&gt; Five minutes, including the OAuth dance.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pick a small, well-scoped task.&lt;/strong&gt; I chose "add a &lt;code&gt;--dry-run&lt;/code&gt; flag to my deploy script". Bad first task would be "refactor my whole backend."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Write a one-line goal.&lt;/strong&gt; Not a paragraph. &lt;em&gt;Add --dry-run to scripts/deploy.sh that prints the commands without running them. Update the README.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Watch, but don't interrupt.&lt;/strong&gt; The first time I used Codex I kept tabbing in to "help." That's a trap — let it finish.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Review the diff like a human PR.&lt;/strong&gt; I caught two bugs it introduced. Both real, both subtle.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  The 3 gotchas nobody warns you about
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;It will over-engineer if you let it.&lt;/strong&gt; Cap the scope in your prompt.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;It doesn't know your secret conventions.&lt;/strong&gt; Tell it up front.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;It will confidently make up API names.&lt;/strong&gt; Always run the code.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  TL;DR for a busy dev
&lt;/h2&gt;

&lt;p&gt;Codex is a real productivity unlock, but only if you treat it like a junior: tight scope, fast review, trust but verify. After a week you'll wonder how you shipped without it.&lt;/p&gt;

&lt;h1&gt;
  
  
  ai #llm #devtools #codex
&lt;/h1&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>tooling</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
