<?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: Eddie</title>
    <description>The latest articles on DEV Community by Eddie (@with_geun).</description>
    <link>https://dev.to/with_geun</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%2F3773461%2Fd77e93ac-bc1d-4282-ad06-a537f3e24a79.png</url>
      <title>DEV Community: Eddie</title>
      <link>https://dev.to/with_geun</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/with_geun"/>
    <language>en</language>
    <item>
      <title>I built an open-source workflow kit that turns AI agents into structured data analysis partners</title>
      <dc:creator>Eddie</dc:creator>
      <pubDate>Sun, 15 Feb 2026 03:48:17 +0000</pubDate>
      <link>https://dev.to/with_geun/i-built-an-open-source-workflow-kit-that-turns-ai-agents-into-structured-data-analysis-partners-1kk</link>
      <guid>https://dev.to/with_geun/i-built-an-open-source-workflow-kit-that-turns-ai-agents-into-structured-data-analysis-partners-1kk</guid>
      <description>&lt;p&gt;🔗 GitHub repo: &lt;a href="https://github.com/with-geun/alive-analysis" rel="noopener noreferrer"&gt;https://github.com/with-geun/alive-analysis&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Over the past year, I’ve been using AI coding agents (Claude Code, Cursor, etc.) heavily for data analysis work.&lt;/p&gt;

&lt;p&gt;They’re incredibly helpful — but I kept running into the same problem.&lt;/p&gt;

&lt;p&gt;Every analysis was a &lt;strong&gt;throwaway conversation&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;No structure.&lt;br&gt;&lt;br&gt;
No tracking.&lt;br&gt;&lt;br&gt;
No way to revisit why I reached a conclusion.&lt;/p&gt;

&lt;p&gt;A month later, I’d remember &lt;em&gt;what&lt;/em&gt; we decided, but not &lt;em&gt;how&lt;/em&gt; we got there.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;alive-analysis&lt;/strong&gt; — an open-source workflow kit that adds structure, versioning, and quality checks to AI-assisted analysis.&lt;/p&gt;




&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;When you ask an AI to “analyze this data,” you usually get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a one-shot answer
&lt;/li&gt;
&lt;li&gt;reasoning that’s hard to trace later
&lt;/li&gt;
&lt;li&gt;no shared artifact for your team
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In practice, analysis becomes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;inconsistent
&lt;/li&gt;
&lt;li&gt;hard to review
&lt;/li&gt;
&lt;li&gt;impossible to learn from over time
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something closer to how real analysis work actually happens — iterative, documented, and revisitable.&lt;/p&gt;




&lt;h2&gt;
  
  
  The idea: treat analysis like a repeatable workflow
&lt;/h2&gt;

&lt;p&gt;alive-analysis structures every analysis using a simple loop:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ASK → LOOK → INVESTIGATE → VOICE → EVOLVE&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  ASK
&lt;/h3&gt;

&lt;p&gt;Define the real question, scope, and success criteria.&lt;/p&gt;

&lt;h3&gt;
  
  
  LOOK
&lt;/h3&gt;

&lt;p&gt;Check the data first — quality, segmentation, outliers.&lt;/p&gt;

&lt;h3&gt;
  
  
  INVESTIGATE
&lt;/h3&gt;

&lt;p&gt;Form hypotheses, test them, and eliminate possibilities.&lt;/p&gt;

&lt;h3&gt;
  
  
  VOICE
&lt;/h3&gt;

&lt;p&gt;Document conclusions with confidence levels and audience context.&lt;/p&gt;

&lt;h3&gt;
  
  
  EVOLVE
&lt;/h3&gt;

&lt;p&gt;Capture follow-ups and track impact over time.&lt;/p&gt;

&lt;p&gt;Instead of generating answers immediately,&lt;br&gt;&lt;br&gt;
the AI guides you through these stages by asking questions.&lt;/p&gt;

&lt;p&gt;That small change alone dramatically improved the rigor of my analyses.&lt;/p&gt;




&lt;h2&gt;
  
  
  What it actually does
&lt;/h2&gt;

&lt;p&gt;alive-analysis is &lt;strong&gt;not a BI tool or dashboard replacement&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You still use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SQL
&lt;/li&gt;
&lt;li&gt;notebooks
&lt;/li&gt;
&lt;li&gt;dashboards
&lt;/li&gt;
&lt;li&gt;your existing data stack
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It simply adds a &lt;strong&gt;workflow and documentation layer&lt;/strong&gt; on top.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Structured analysis stages with checklists
&lt;/li&gt;
&lt;li&gt;Versioned markdown files (Git-friendly)
&lt;/li&gt;
&lt;li&gt;Quick mode (single file) and Full mode (multi-stage)
&lt;/li&gt;
&lt;li&gt;A/B experiment workflows
&lt;/li&gt;
&lt;li&gt;Metric monitoring with alert logic
&lt;/li&gt;
&lt;li&gt;Search across past analyses
&lt;/li&gt;
&lt;li&gt;Impact tracking (recommendation → outcome)
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;After using it for a while, I noticed a few unexpected benefits:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I can reopen an analysis months later and understand the reasoning instantly
&lt;/li&gt;
&lt;li&gt;Checklists catch things I used to skip (confounders, counter-metrics)
&lt;/li&gt;
&lt;li&gt;PMs and engineers started running their own quick analyses
&lt;/li&gt;
&lt;li&gt;Decisions feel more defensible because assumptions are explicit
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It basically turned AI from an “answer generator” into a thinking partner.&lt;/p&gt;




&lt;h2&gt;
  
  
  How it works in practice
&lt;/h2&gt;

&lt;p&gt;Typical workflow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Initialize in your repo
&lt;/li&gt;
&lt;li&gt;Start a new analysis
&lt;/li&gt;
&lt;li&gt;Move through the ALIVE stages
&lt;/li&gt;
&lt;li&gt;Archive when complete
&lt;/li&gt;
&lt;li&gt;Search or review later
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Everything lives as markdown in your project, so it becomes a long-term knowledge base instead of lost chat history.&lt;/p&gt;




&lt;h2&gt;
  
  
  Who this is for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Data analysts who want more rigor
&lt;/li&gt;
&lt;li&gt;Engineers and PMs doing lightweight analysis
&lt;/li&gt;
&lt;li&gt;Teams using AI agents for decision support
&lt;/li&gt;
&lt;li&gt;Anyone who wants a traceable reasoning process
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What I’m looking for feedback on
&lt;/h2&gt;

&lt;p&gt;I’d love to hear from people doing real analysis work:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does this workflow match how you actually think?
&lt;/li&gt;
&lt;li&gt;What steps feel missing or unnecessary?
&lt;/li&gt;
&lt;li&gt;Would you use something like this in a team setting?
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Brutally honest feedback is very welcome 🙏&lt;/p&gt;




&lt;h2&gt;
  
  
  Project
&lt;/h2&gt;

&lt;p&gt;👉 GitHub: &lt;a href="https://github.com/with-geun/alive-analysis" rel="noopener noreferrer"&gt;https://github.com/with-geun/alive-analysis&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;Quick start, examples, and templates are all available in the repo.&lt;/p&gt;




&lt;p&gt;If you’ve been using AI for analysis, I’d especially love to know:&lt;/p&gt;

&lt;p&gt;👉 What’s the biggest friction you still feel in your workflow?&lt;/p&gt;

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