<?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: Tina J</title>
    <description>The latest articles on DEV Community by Tina J (@tina111).</description>
    <link>https://dev.to/tina111</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%2F3938836%2F52c4a1e3-0cfc-45fe-adbe-87bef7b8958d.png</url>
      <title>DEV Community: Tina J</title>
      <link>https://dev.to/tina111</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tina111"/>
    <language>en</language>
    <item>
      <title>I Was Using AI All Wrong: 50 AI Workflows for Engineers</title>
      <dc:creator>Tina J</dc:creator>
      <pubDate>Sun, 23 Aug 2026 08:29:02 +0000</pubDate>
      <link>https://dev.to/tina111/i-was-using-ai-all-wrong-50-ai-workflows-for-engineers-443g</link>
      <guid>https://dev.to/tina111/i-was-using-ai-all-wrong-50-ai-workflows-for-engineers-443g</guid>
      <description>&lt;p&gt;A mid-level engineer’s honest take on “50 AI Workflows for Engineers: From Debugging to System Design, Code Review &amp;amp; Engineering Automation” by Arian Hosseini, PhD&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1rzuraxtadackyu77wjz.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1rzuraxtadackyu77wjz.jpg" alt=" " width="800" height="1207"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’ve been using Claude and ChatGPT at work for about two years. I thought I was pretty good at it. I wasn’t.&lt;/p&gt;

&lt;p&gt;I’d open a chat, ask a question, get an answer, close the tab. Repeat thirty times a day. It felt productive. Then I picked up a copy of the book “50 AI Workflows for Engineers: From Debugging to System Design, Code Review &amp;amp; Engineering Automation”, and within the first three chapters I realized I’d been treating a senior engineer like a Google Search bar.&lt;/p&gt;

&lt;p&gt;This is my honest review after using some of the workflows from the book.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the book is (and isn’t)
&lt;/h2&gt;

&lt;p&gt;Let me get this out of the way: this is not another “100 ChatGPT prompts for developers” list. If you’ve ever downloaded one of those and felt underwhelmed, same.&lt;/p&gt;

&lt;p&gt;“50 AI Workflows for Engineers” book is structured more like an engineering playbook. Each chapter walks you through a specific real-world scenario, like debugging a production incident, reviewing a 600-line PR, turning a vague Jira ticket into an implementation plan. It gives you the actual prompt pattern to use, what goes wrong, and a one-page reference card for later.&lt;/p&gt;

&lt;p&gt;The author, Arian Hosseini, is an ML Tech Lead with a PhD from UIUC and has built production AI at Amazon, Microsoft, and other Fortune 500 companies. You can tell from the writing that the workflows feel lived-in. They’re not theoretical.&lt;/p&gt;

&lt;h2&gt;
  
  
  The three workflows that already paid for the book
&lt;/h2&gt;

&lt;p&gt;I’m not going to pretend I’ve used all 50. After few days, here are the three that immediately changed my day-to-day.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Turning vague tickets into real plans (Chapter 1)
&lt;/h2&gt;

&lt;p&gt;Before: I’d stare at a ticket like “Improve search performance” and either over-ask my PM for context or just start coding and hope for the best.&lt;/p&gt;

&lt;p&gt;Now: I paste the ticket into Claude along with the workflow template from Chapter 1 and get back a list of clarifying questions, ranked root-cause hypotheses, an investigation sequence, and a recommended approach. I bring that to my PM instead of a blank stare.&lt;/p&gt;

&lt;p&gt;Time I used to spend on ticket kickoff: ~45 minutes. Now: ~15 minutes. And the plans are more thought through.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. The debugging workflow (Chapter 11)
&lt;/h2&gt;

&lt;p&gt;This one was the biggest unlock for me. The book walks you through a five-step debugging pattern that’s basically: paste the error, generate hypotheses ranked by probability, check the cheapest hypothesis first, iterate.&lt;/p&gt;

&lt;p&gt;I used to start from the top of a stack trace and work my way down reading carefully. Now I let AI rank the possibilities, and I check the most probable one first. Few days ago I found a Redis connection pool exhaustion bug in eight minutes that would have taken me an hour.&lt;/p&gt;

&lt;p&gt;The key insight: it’s not about AI being smarter than you. It’s about not starting every investigation from zero.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. PR descriptions (Chapter 4)
&lt;/h2&gt;

&lt;p&gt;My PR descriptions used to be one line: “Add retry logic to notification service.” My reviewers hated me.&lt;/p&gt;

&lt;p&gt;Now I paste the diff and the Chapter 4 workflow, and I get back a structured description with context, the problem, the approach, what’s not included, and what to test. My review turnaround has genuinely dropped. One teammate mentioned it unprompted.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I liked about the book
&lt;/h2&gt;

&lt;p&gt;The author doesn’t pretend AI is magic. There’s a whole chapter on vibe coding (Chapter 43) that honestly lays out when AI-assisted coding is great and when it quietly ships SQL injection to production. The “What goes wrong” section at the end of each chapter is as useful as the workflow itself.&lt;/p&gt;

&lt;p&gt;There’s also a really grounded framing in the introduction about what AI is actually good at in 2026 vs. where you still need to lead. It’s neither breathless hype nor skeptical hand-wringing. Just: here’s what it can do, here’s what it can’t, here’s how to use it.&lt;/p&gt;

&lt;p&gt;The book also doesn’t dodge the uncomfortable stuff. There’s a chapter on reviewing AI-generated code where the author walks through specific hallucinated parameters he’s caught in review (functions that don’t exist, arguments that aren’t real). That alone is worth reading if you or your team is shipping AI-generated code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who should read this
&lt;/h2&gt;

&lt;p&gt;Engineers using AI casually: this will turn it into a system. You’ll save hours per week.&lt;br&gt;
Tech leads: Parts III–V cover system design, evaluation pipelines, and senior-engineer workflows. These are the patterns I wish my senior engineers would adopt.&lt;br&gt;
Engineers who are AI-skeptical: honestly, this might be the book that converts you. It doesn’t try to hype AI. It just shows you how to use it for specific engineering problems.&lt;br&gt;
If you want a book about how LLMs work internally, this isn’t it. This is a practical workflows book, not a technical deep-dive on transformers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The thing that stuck with me most
&lt;/h2&gt;

&lt;p&gt;There’s a line in the final chapter that I keep thinking about:&lt;/p&gt;

&lt;p&gt;“The engineers who thrive aren’t the ones who use AI the most. They’re the ones who use it most effectively.”&lt;/p&gt;

&lt;p&gt;That’s really what this whole book is about. Using AI a lot is easy. Using it well is a skill.&lt;/p&gt;

&lt;p&gt;I’ve already gone back and re-read Chapters 1, 4, 11, and 19 again. These workflows are now muscle memory, which was kind of the whole point.&lt;/p&gt;

&lt;p&gt;The book is available on &lt;a href="https://www.amazon.com/Workflows-Engineers-Debugging-Engineering-Automation-ebook/dp/B0GZHP3X8L" rel="noopener noreferrer"&gt;Amazon Kindle&lt;/a&gt; and &lt;a href="https://www.amazon.com/Workflows-Engineers-Debugging-Engineering-Automation/dp/B0GZJNMY9C" rel="noopener noreferrer"&gt;Paperback&lt;/a&gt;. I think most engineers find it useful.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>softwareengineering</category>
      <category>claude</category>
      <category>automation</category>
    </item>
    <item>
      <title>A good read: AI Workflows for Engineers in 14 Days</title>
      <dc:creator>Tina J</dc:creator>
      <pubDate>Wed, 20 May 2026 03:03:01 +0000</pubDate>
      <link>https://dev.to/tina111/a-good-read-ai-workflows-for-engineers-in-14-days-53h7</link>
      <guid>https://dev.to/tina111/a-good-read-ai-workflows-for-engineers-in-14-days-53h7</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7n596kzz58ystkurp34d.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7n596kzz58ystkurp34d.jpg" alt="AI Workflows for Engineers in 14 Days: From Debugging to AI Agents" width="800" height="1200"&gt;&lt;/a&gt;&lt;br&gt;
My honest review of the book &lt;strong&gt;"AI Workflows for Engineers in 14 Days: From Debugging to AI Agents"&lt;/strong&gt; by Arian Hosseini&lt;/p&gt;




&lt;p&gt;I’m usually skeptical of AI productivity books. Most are either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;extremely basic&lt;/li&gt;
&lt;li&gt;full of hype&lt;/li&gt;
&lt;li&gt;or too theoretical to help during actual engineering work.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I didn’t expect much from AI Workflows for Engineers in 14 Days by Arian Hosseini. I figured I’d skim a few chapters, grab one useful idea, and move on.&lt;/p&gt;

&lt;p&gt;Instead, I ended up using several workflows on real tickets this week.&lt;/p&gt;

&lt;p&gt;The core idea of the book is simple but surprisingly useful:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;stop treating AI like a smarter search engine and start treating it like a structured engineering partner.&lt;br&gt;
That framing clicked immediately for me.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The workflows are practical and focused on real engineering tasks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;debugging unknown issues&lt;/li&gt;
&lt;li&gt;turning vague tickets into implementation plans&lt;/li&gt;
&lt;li&gt;incident response&lt;/li&gt;
&lt;li&gt;code reviews&lt;/li&gt;
&lt;li&gt;creating persistent AI assistants with project context&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Day 3 debugging workflow alone saved me a noticeable amount of time on a Redis-related issue this week. Instead of randomly chasing stack traces, the workflow pushed me to rank hypotheses and test the cheapest explanations first. Sounds simple, but it genuinely improved how I approached the problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I also liked that the book constantly points out:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;where AI fails&lt;/li&gt;
&lt;li&gt;how hallucinations happen&lt;/li&gt;
&lt;li&gt;what to verify manually&lt;/li&gt;
&lt;li&gt;and when not to trust generated output.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That made it feel grounded compared to a lot of current AI books.&lt;/p&gt;

&lt;p&gt;Another big plus: it’s short. The “14 days” structure makes it easy to actually finish and apply immediately instead of becoming another 400-page reference book that sits unread.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Side note on the longer version&lt;/strong&gt;&lt;br&gt;
If you finish this and want more, Hosseini also has a 50-workflow companion volume (50 AI Workflows for Engineers: From Debugging to System Design, Code Review &amp;amp; Engineering Automation) that covers another 36 patterns. I haven’t read that one yet — but if the 14 I’m trying turn out to be as useful as the early ones, I’ll probably grab it next.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
A useful, honest, well-structured book that gives a concrete system for using AI in engineering work, rather than vague advice. The framing alone (workflows, not prompts) is worth the cover price. Only one week in, so my view might change, but right now I’d give it to any engineer asking “how do I get more value out of Claude/ChatGPT day to day?”&lt;/p&gt;

&lt;p&gt;I’ll write a follow-up after I finish all 14.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Available on &lt;a href="https://www.amazon.com/AI-Workflows-Engineers-Days-Debugging-ebook/dp/B0GX39Z8CH" rel="noopener noreferrer"&gt;Amazon Kindle&lt;/a&gt; and &lt;a href="https://www.amazon.com/AI-Workflows-Engineers-Days-Debugging/dp/B0H2528MHY" rel="noopener noreferrer"&gt;Paperback&lt;/a&gt;. No affiliate link.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Tags&lt;/strong&gt;: #AI #SoftwareEngineering #LLM #ClaudeCode #TechBooks&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
