<?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: Kai</title>
    <description>The latest articles on DEV Community by Kai (@prime-vimihi).</description>
    <link>https://dev.to/prime-vimihi</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4124169%2F91636765-e516-44a6-850a-1ea1dc1ffdd5.png</url>
      <title>DEV Community: Kai</title>
      <link>https://dev.to/prime-vimihi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prime-vimihi"/>
    <language>en</language>
    <item>
      <title>From a feature request to reviewed delivery: getting started with codex-sdlc</title>
      <dc:creator>Kai</dc:creator>
      <pubDate>Mon, 14 Sep 2026 08:38:15 +0000</pubDate>
      <link>https://dev.to/prime-vimihi/from-a-feature-request-to-reviewed-delivery-getting-started-with-codex-sdlc-2mab</link>
      <guid>https://dev.to/prime-vimihi/from-a-feature-request-to-reviewed-delivery-getting-started-with-codex-sdlc-2mab</guid>
      <description>&lt;p&gt;A feature request involves more than writing code. Someone needs to clarify the requirements, coordinate the backend and frontend, check the result, and explain what is ready for review.&lt;/p&gt;

&lt;p&gt;I’ve been building &lt;strong&gt;codex-sdlc&lt;/strong&gt; to give Codex a repeatable process for that work. It’s an open-source plugin and repository framework, and I’m its author and maintainer.&lt;/p&gt;

&lt;p&gt;The idea is simple: describe the outcome you want, let the framework coordinate the delivery stages, and keep the important decisions with you.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does SDLC mean?
&lt;/h2&gt;

&lt;p&gt;SDLC stands for &lt;strong&gt;Software Development Life Cycle&lt;/strong&gt;: the process of turning an idea into software through requirements, implementation, verification and review.&lt;/p&gt;

&lt;p&gt;codex-sdlc organizes that process into roles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PM:&lt;/strong&gt; coordinates tasks, dependencies and handoffs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Business analysis:&lt;/strong&gt; defines requirements and acceptance criteria.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend and frontend:&lt;/strong&gt; implement the assigned changes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;QC:&lt;/strong&gt; independently checks the integrated feature using a separate AI role.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Optional AI Product Owner:&lt;/strong&gt; offers an advisory review.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You clarify requirements when needed and make the final acceptance decision.&lt;/p&gt;

&lt;h2&gt;
  
  
  What happens to a feature request?
&lt;/h2&gt;

&lt;p&gt;Consider this example:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Let users save favorite items and find them later.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That request raises questions. Do users need to sign in? Should favorites persist across sessions? Who can see them? What happens when saving fails?&lt;/p&gt;

&lt;p&gt;The workflow brings those questions into requirements and acceptance criteria, then coordinates API design, implementation, integration and quality checks.&lt;/p&gt;

&lt;p&gt;The final report describes the changes, recorded verification evidence and remaining limitations. You can accept the delivery or request further work.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to try it
&lt;/h2&gt;

&lt;p&gt;You’ll need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Codex.&lt;/li&gt;
&lt;li&gt;Node.js &lt;code&gt;&amp;gt;=24.16.0 &amp;lt;25&lt;/code&gt; and npm 11.&lt;/li&gt;
&lt;li&gt;An existing application repository.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Initialization configures your existing application directories. It does not scaffold a complete product from an empty folder.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Install the plugin&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Visit &lt;a href="https://kaiz.cloud" rel="noopener noreferrer"&gt;kaiz.cloud&lt;/a&gt; and click &lt;strong&gt;Install plugin&lt;/strong&gt; to open the plugin’s directory page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Initialize your project&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Open the application repository in Codex and send:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Initialize codex-sdlc for this existing project. Explain the setup choices and show the dry run before applying changes.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Tell Codex where your backend, web or mobile code lives. Review the proposed configuration, apply the setup, and let the checks finish.&lt;/p&gt;

&lt;p&gt;If your frontend and backend live in different repositories, provide both locations. One coordinator repository keeps the shared delivery record.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Start with a small feature&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Once setup checks pass, ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Start a codex-sdlc feature delivery for: let users save favorite items and find them later.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Choose something small enough that you can review the outcome yourself and judge whether the workflow helps.&lt;/p&gt;

&lt;h2&gt;
  
  
  What stays with the project?
&lt;/h2&gt;

&lt;p&gt;The plugin provides the skills. Your repository receives the framework and its recorded state under &lt;code&gt;.sdlc/&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Requirements, tasks, decisions, blockers and command evidence stay with the project, allowing a later session to resume an existing run.&lt;/p&gt;

&lt;p&gt;You can also configure models by role and use built-in presets for Go, Next.js, Flutter, PostgreSQL and Redis. Generic application presets support other stacks with project-specific verification commands.&lt;/p&gt;

&lt;p&gt;The framework is open source under Apache 2.0. Running its agents uses your Codex usage allowance.&lt;/p&gt;

&lt;h2&gt;
  
  
  I’d love your feedback
&lt;/h2&gt;

&lt;p&gt;I’m especially interested in whether setup is understandable, whether the role handoffs help, and whether the delivery report gives you enough information to make a decision.&lt;/p&gt;

&lt;p&gt;If you try it, tell me what feels useful—and what feels like unnecessary process.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://kaiz.cloud" rel="noopener noreferrer"&gt;Website and walkthrough&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/prime-vimihi/codex-sdlc" rel="noopener noreferrer"&gt;Source code&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/prime-vimihi/codex-sdlc/blob/main/docs/getting-started.md" rel="noopener noreferrer"&gt;Setup documentation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What part of your current coding-agent workflow still needs the most manual coordination?&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>ai</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
