<?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: Sefa Ertunç</title>
    <description>The latest articles on Forem by Sefa Ertunç (@sefaertunc).</description>
    <link>https://forem.com/sefaertunc</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%2F3883159%2Fe6647c64-3fb6-4500-9cf8-0b8af608cfd4.png</url>
      <title>Forem: Sefa Ertunç</title>
      <link>https://forem.com/sefaertunc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/sefaertunc"/>
    <language>en</language>
    <item>
      <title>Stop Rebuilding Your Claude Code Setup - Scaffold It Once with Worclaude</title>
      <dc:creator>Sefa Ertunç</dc:creator>
      <pubDate>Thu, 16 Apr 2026 20:39:45 +0000</pubDate>
      <link>https://forem.com/sefaertunc/stop-rebuilding-your-claude-code-setup-scaffold-it-once-with-worclaude-38m1</link>
      <guid>https://forem.com/sefaertunc/stop-rebuilding-your-claude-code-setup-scaffold-it-once-with-worclaude-38m1</guid>
      <description>&lt;p&gt;Every time I started a new project with Claude Code, I rebuilt the same &lt;code&gt;.claude/&lt;/code&gt; directory from scratch - agents, commands, skills, hooks, permissions. Copy from the last repo, tweak, fix what broke, repeat.&lt;/p&gt;

&lt;p&gt;So I built &lt;a href="https://github.com/sefaertunc/Worclaude" rel="noopener noreferrer"&gt;Worclaude&lt;/a&gt; - a CLI that does it in seconds.&lt;/p&gt;

&lt;h2&gt;
  
  
  One command
&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; worclaude
worclaude init
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It asks three things: project type, tech stack, which agent categories you want. Then it generates everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you get
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;26 agents&lt;/strong&gt; across 6 categories. 6 are universal (plan-reviewer on Opus, test-writer and verify-app on Sonnet, build-validator on Haiku, upstream-watcher for change tracking). 20 more are optional - backend, frontend, DevOps, quality, docs, data/AI. Worclaude recommends agents based on your project type.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;18 slash commands&lt;/strong&gt; covering the full session lifecycle:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/start -&amp;gt; /review-plan -&amp;gt; implement -&amp;gt; /verify -&amp;gt; /commit-push-pr
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Plus &lt;code&gt;/upstream-check&lt;/code&gt;, &lt;code&gt;/sync&lt;/code&gt;, &lt;code&gt;/conflict-resolver&lt;/code&gt;, &lt;code&gt;/refactor-clean&lt;/code&gt;, &lt;code&gt;/test-coverage&lt;/code&gt;, and more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;16 skills&lt;/strong&gt; with conditional activation. Skills only enter Claude's context when relevant files are touched. A testing skill activates when test files are open, not when you're editing CSS.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8 lifecycle hooks&lt;/strong&gt; across the full Claude Code event system. SessionStart auto-loads CLAUDE.md, PROGRESS.md, and recent learnings. PostToolUse auto-formats code. PreCompact takes a git snapshot before context compaction. Stop captures &lt;code&gt;[LEARN]&lt;/code&gt; blocks from the session. Three profiles: &lt;code&gt;minimal&lt;/code&gt;, &lt;code&gt;standard&lt;/code&gt;, &lt;code&gt;strict&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Per-stack permissions&lt;/strong&gt; for 16 languages. Claude stops asking to run &lt;code&gt;npm test&lt;/code&gt; or &lt;code&gt;pytest&lt;/code&gt; every time.&lt;/p&gt;

&lt;h2&gt;
  
  
  No runtime dependency
&lt;/h2&gt;

&lt;p&gt;This is the important part. Worclaude generates static markdown and JSON files, then exits. Claude Code reads them natively. There's no daemon, no wrapper, no middleware. Your &lt;code&gt;.claude/&lt;/code&gt; directory is plain files you can read, edit, and commit to git.&lt;/p&gt;

&lt;h2&gt;
  
  
  Upstream awareness
&lt;/h2&gt;

&lt;p&gt;Claude Code ships updates frequently. Agents, hooks, and commands can break silently when upstream behavior changes. Worclaude includes &lt;code&gt;/upstream-check&lt;/code&gt; - a command that fetches live data from 16 Anthropic sources (engineering blog, changelogs, npm releases, GitHub releases, status page) and tells you what changed since your last session.&lt;/p&gt;

&lt;h2&gt;
  
  
  Built on community patterns
&lt;/h2&gt;

&lt;p&gt;The workflow draws from &lt;a href="https://howborisusesclaudecode.com/" rel="noopener noreferrer"&gt;Boris Cherny's tips&lt;/a&gt; (creator of Claude Code at Anthropic), patterns from &lt;a href="https://github.com/affaan-m/everything-claude-code" rel="noopener noreferrer"&gt;Affaan Mir's everything-claude-code&lt;/a&gt; (Anthropic hackathon winner), &lt;a href="https://github.com/forrestchang/andrej-karpathy-skills" rel="noopener noreferrer"&gt;Karpathy's coding principles&lt;/a&gt;, and community repos like &lt;a href="https://github.com/rohitg00/pro-workflow" rel="noopener noreferrer"&gt;pro-workflow&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/sefaertunc/Worclaude" rel="noopener noreferrer"&gt;github.com/sefaertunc/Worclaude&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;npm:&lt;/strong&gt; &lt;a href="https://www.npmjs.com/package/worclaude" rel="noopener noreferrer"&gt;npmjs.com/package/worclaude&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docs:&lt;/strong&gt; &lt;a href="https://sefaertunc.github.io/Worclaude" rel="noopener noreferrer"&gt;sefaertunc.github.io/Worclaude&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;MIT licensed. Feedback welcome.&lt;/p&gt;

</description>
      <category>claudecode</category>
      <category>claude</category>
      <category>ai</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
