<?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: CypherOxide</title>
    <description>The latest articles on Forem by CypherOxide (@cypheroxide).</description>
    <link>https://forem.com/cypheroxide</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%2F581260%2F63316d26-d636-404b-b90b-79bafb977cf1.jpeg</url>
      <title>Forem: CypherOxide</title>
      <link>https://forem.com/cypheroxide</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/cypheroxide"/>
    <language>en</language>
    <item>
      <title>Stop Prompting; Use the Design-Log Method to Build Predictable Tools</title>
      <dc:creator>CypherOxide</dc:creator>
      <pubDate>Mon, 06 Apr 2026 02:17:42 +0000</pubDate>
      <link>https://forem.com/cypheroxide/stop-prompting-use-the-design-log-method-to-build-predictable-tools-2773</link>
      <guid>https://forem.com/cypheroxide/stop-prompting-use-the-design-log-method-to-build-predictable-tools-2773</guid>
      <description>&lt;p&gt;The article by Yoav Abrahami introduces the Design-Log Methodology, a structured approach to using AI in software development that combats the "context wall" — where AI models lose track of project history and make inconsistent decisions as codebases grow. The core idea is to maintain a version-controlled &lt;code&gt;./design-log/&lt;/code&gt; folder in a Git repository, filled with markdown documents that capture design decisions, discussions, and implementation plans at the time they were made. This log acts as a shared brain between the developer and the AI, enabling the AI to act as a collaborative architect rather than just a code generator. By enforcing rules like read before you write, design before implementation, and immutable history, the methodology ensures consistency, reduces errors, and makes AI-assisted development faster, higher quality, and predictable.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.wix.engineering/post/why-i-stop-prompting-and-start-logging-the-design-log-methodology?ref" rel="noopener noreferrer"&gt;Link to article&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Full disclosure:&lt;/strong&gt;&lt;br&gt;
I am not a developer, I'm a researcher and tinkerer that builds one-off tools and forget to upload them.&lt;/p&gt;

&lt;p&gt;As I "&lt;em&gt;develop&lt;/em&gt;" and work on cybersecurity tools, AI-backed automations, and micro-apps/scripts, I’ve seen how easily AI can generate code that seems correct but silently diverges from the intended security architecture; especially when testing complex systems. The traditional prompt-and-correct loop is a fragile and time-consuming process. I couldn't even begin to imagine how many hours I've spent copy my terminal output to post in a chat window to go back and forth with a frontier model, only to make a mess of my environment installing unnecessary packages and changing configurations until my system is nearly borked.&lt;/p&gt;

&lt;p&gt;I've tried several of the &lt;strong&gt;Big&lt;/strong&gt; providers's models since ChatGPT 2.5 and Claude 2.1 from the chat sites, and used Claude Sonnet 3.5 &amp;amp; 3.7 via API (&lt;strong&gt;HEAVILY&lt;/strong&gt;). During the beginning of the AI IDE/TERMINAL trend, I tried almost every option that was available before a long-term subscription to Warp for it's agentic terminal workflow (this was mostly for speeding up diagnostics and troubleshooting) and WaveTerm to have access to a terminal multiplexer and AI chat in one app. What I noticed every time that I needed to document a troubleshooting process, run tests on a repo, or do a long investigation, you eventually run out of context (sometimes &lt;strong&gt;very&lt;/strong&gt; soon) and your whole workflow is broken.&lt;/p&gt;

&lt;p&gt;When I came across the article by Yoav, it played a role in my use of AI. I stopped working in the chat windows, stopped drafting multi-paragraph instructions, and stopped overloading my context window with massive task prompts. Essentially, I adopted the Design-Log method for how I use AI in my coding projects and how I work with multiple frameworks.&lt;/p&gt;

&lt;p&gt;Instead of throwing massive prompts at an AI assistant and overloading it with context, I've started every feature or test with a design log as a markdown file in ./design/ that captures the security requirements, threat models, and expected behaviors. As an example, when building a new vulnerability scanner, I’ll write something like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Task #12: Implement a network fuzzer that respects rate-limiting and avoids triggering false positives in WAFs. We will use a randomized payload generator with configurable backoff logic.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The AI then reads this log before writing any code, asks clarifying questions like “Do you want to support both TCP and UDP for the fuzzer?”, and references documents used for its reasoning in the log. This forces a Socratic collaboration: the AI doesn’t hallucinate; it validates assumptions before implementation.&lt;/p&gt;

&lt;p&gt;Once the design is approved, the AI implements it, and any deviations (like choosing a different payload encoding) are logged in the “Implementation Results” section. This creates traceable, audit-ready workflows that are critical when you're developing tools that handle sensitive data or interact with live systems.&lt;/p&gt;

&lt;p&gt;I’ve added four rules to my CAI system prompt:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- Read before you write; always check the design log.
- Design before you implement; no code until the log is approved.
- Immutable history; once implementation starts, the design is frozen, utilize git diffs between edits.
- Utilize the Socratic method; ask questions, document answers.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;My results? Faster, more reliable development, and I no longer waste my time digging into hundreds of lines of newly AI-generated code and correcting all of the issues that violate security principles. Instead, I can build with confidence because the AI and I are aligned on the architecture from day one. No more assumed &lt;strong&gt;expert&lt;/strong&gt; role leading to poor design and "good-looking" code or documentation blatantly written with misguided confidence.&lt;/p&gt;

&lt;p&gt;If you’re using AI to build security tools, try the Design-Log Methodology. It turns AI from an occasionally good coder into a true partner in secure development.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>devops</category>
      <category>cybersecurity</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>4 Year Badge… but I Don’t Remember Joining? 🤔</title>
      <dc:creator>CypherOxide</dc:creator>
      <pubDate>Wed, 19 Feb 2025 03:45:22 +0000</pubDate>
      <link>https://forem.com/cypheroxide/4-year-badge-but-i-dont-remember-joining-2fl9</link>
      <guid>https://forem.com/cypheroxide/4-year-badge-but-i-dont-remember-joining-2fl9</guid>
      <description>&lt;p&gt;So, I just got an email from dev.to congratulating me on my 4-year badge. Cool, right? Except… there’s just one problem:&lt;/p&gt;

&lt;p&gt;I have zero memory of ever creating this account.&lt;/p&gt;

&lt;p&gt;Apparently, it’s been linked to my GitHub for four years—just sitting there in the digital void, waiting for me to notice. Maybe past-me had grand plans of blogging about development, cybersecurity, or tech shenanigans, but then promptly forgot.&lt;/p&gt;

&lt;p&gt;Well, better late than never.&lt;/p&gt;

&lt;p&gt;Since this is technically my first post, I guess I should introduce myself:&lt;br&gt;
Hi, I’m CypherOxide, and I am a DC Technician as my day job, but I have spent my time [the last 3 1/2 years] working on an AI project that I started halfway through my cybersecurity degree and sometimes end up breaking things (preferably ethically, but quite often out of frustration).&lt;/p&gt;

&lt;p&gt;If you’re reading this, let me know: Have you ever rediscovered an old account you completely forgot about? What did you do with it?&lt;/p&gt;

&lt;p&gt;I guess this is my official start on dev.to. Let’s see where this goes!&lt;/p&gt;

&lt;p&gt;(Don't expect me to replace my hours at a terminal with time on here)&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
