<?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: Esteban Palman</title>
    <description>The latest articles on DEV Community by Esteban Palman (@palman22hue).</description>
    <link>https://dev.to/palman22hue</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%2F3672978%2F71300f1b-9bae-408b-8e38-a992f5a16a94.png</url>
      <title>DEV Community: Esteban Palman</title>
      <link>https://dev.to/palman22hue</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/palman22hue"/>
    <language>en</language>
    <item>
      <title>🌱 I Built an Open‑Source Adaptive Learning Framework (ALF) — Modular, Bilingual, and JSON‑Driven</title>
      <dc:creator>Esteban Palman</dc:creator>
      <pubDate>Tue, 23 Dec 2025 22:46:43 +0000</pubDate>
      <link>https://dev.to/palman22hue/i-built-an-open-source-adaptive-learning-framework-alf-modular-bilingual-and-json-driven-8of</link>
      <guid>https://dev.to/palman22hue/i-built-an-open-source-adaptive-learning-framework-alf-modular-bilingual-and-json-driven-8of</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/palman22-hue/AdaptiveLearningFramework" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hey everyone,&lt;/p&gt;

&lt;p&gt;Over the past weeks I’ve been building something that started as a small experiment and slowly grew into a fully modular, bilingual, open‑source Adaptive Learning Framework (ALF) for STEM education.&lt;br&gt;
It’s now at a point where it feels real, stable, and ready for others to explore — so I’m sharing it with the community.&lt;/p&gt;

&lt;p&gt;🚀 What is ALF?&lt;br&gt;
ALF is a lightweight, transparent, and extensible framework that models a simple but powerful adaptive learning loop:&lt;/p&gt;

&lt;p&gt;Diagnosis → Drill → Integration&lt;/p&gt;

&lt;p&gt;It detects misconceptions, generates targeted practice, and verifies mastery — all driven by clean JSON modules that anyone can write.&lt;/p&gt;

&lt;p&gt;No black boxes.&lt;br&gt;
No hidden heuristics.&lt;br&gt;
Just explicit logic, modular design, and a focus on clarity.&lt;/p&gt;

&lt;p&gt;🧠 How It Works&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;JSON Problem Bank
Each topic is defined in a standalone JSON file:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;question&lt;/p&gt;

&lt;p&gt;correct answer&lt;/p&gt;

&lt;p&gt;common error patterns&lt;/p&gt;

&lt;p&gt;drill prompts&lt;/p&gt;

&lt;p&gt;integration test&lt;/p&gt;

&lt;p&gt;This makes ALF incredibly easy to extend — educators can add new topics without touching the engine.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Adaptive Learner (State Machine)
A simple, readable Python class that moves through:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Phase 1: Diagnose&lt;/p&gt;

&lt;p&gt;Phase 2: Drill&lt;/p&gt;

&lt;p&gt;Phase 3: Integration&lt;/p&gt;

&lt;p&gt;It stores history, last error, and current phase.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Engine Layer
A thin orchestration layer that:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;initializes learners&lt;/p&gt;

&lt;p&gt;routes answers&lt;/p&gt;

&lt;p&gt;returns structured results to the UI&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Streamlit UI (Bilingual)
The interface supports English and Dutch, selectable via sidebar.
The UI is intentionally minimal — the logic lives in the engine.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;🌍 Why I Built It&lt;br&gt;
I’ve worked in education, tech, and the military.&lt;br&gt;
One thing I’ve learned: people in power don’t always want to do the work to understand systems — but they do respond to clarity, transparency, and evolution.&lt;/p&gt;

&lt;p&gt;So I documented the entire growth of ALF with photos and structure diagrams.&lt;br&gt;
Not because it’s flashy, but because it shows the system is real, intentional, and built with care.&lt;/p&gt;

&lt;p&gt;📸 Evolution of the Framework&lt;br&gt;
I included a /FotoDocs folder with images showing:&lt;/p&gt;

&lt;p&gt;early prototypes&lt;/p&gt;

&lt;p&gt;first working adaptive loop&lt;/p&gt;

&lt;p&gt;the modular engine&lt;/p&gt;

&lt;p&gt;the bilingual UI&lt;/p&gt;

&lt;p&gt;the JSON problem bank&lt;/p&gt;

&lt;p&gt;It’s a visual timeline of how the system matured.&lt;/p&gt;

&lt;p&gt;🔧 Tech Stack&lt;br&gt;
Python&lt;/p&gt;

&lt;p&gt;Streamlit&lt;/p&gt;

&lt;p&gt;JSON&lt;/p&gt;

&lt;p&gt;Modular engine + learner architecture&lt;/p&gt;

&lt;p&gt;GPLv3 open‑source license&lt;/p&gt;

&lt;p&gt;🧪 Try It Out&lt;br&gt;
If you want to explore or contribute:&lt;/p&gt;

&lt;p&gt;Add new topics&lt;/p&gt;

&lt;p&gt;Improve the engine&lt;/p&gt;

&lt;p&gt;Extend the UI&lt;/p&gt;

&lt;p&gt;Add new languages&lt;/p&gt;

&lt;p&gt;Experiment with adaptive learning ideas&lt;/p&gt;

&lt;p&gt;Everything is modular and easy to modify.&lt;/p&gt;

&lt;p&gt;❤️ Why Share This?&lt;br&gt;
Because adaptive learning shouldn’t be locked behind corporate walls.&lt;br&gt;
It should be open, transparent, and accessible — something educators, developers, and researchers can build on together.&lt;/p&gt;

&lt;p&gt;If this sparks ideas, criticism, curiosity, or collaboration, I’d love to hear it.&lt;/p&gt;

</description>
      <category>learning</category>
      <category>opensource</category>
      <category>python</category>
      <category>ai</category>
    </item>
    <item>
      <title>I built an open research framework for studying alignment, entropy, and stability in multi‑agent systems</title>
      <dc:creator>Esteban Palman</dc:creator>
      <pubDate>Tue, 23 Dec 2025 15:20:07 +0000</pubDate>
      <link>https://dev.to/palman22hue/i-built-an-open-research-framework-for-studying-alignment-entropy-and-stability-in-multi-agent-bbi</link>
      <guid>https://dev.to/palman22hue/i-built-an-open-research-framework-for-studying-alignment-entropy-and-stability-in-multi-agent-bbi</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%2Fvwh5006h4ra401q0cheb.gif" 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%2Fvwh5006h4ra401q0cheb.gif" alt=" " width="426" height="240"&gt;&lt;/a&gt;Hey everyone,&lt;/p&gt;

&lt;p&gt;Over the past weeks I’ve been building an open‑source research framework that models alignment, entropy evolution, and stability in multi‑agent systems. I structured it as a fully reproducible research lab, with simulations, theory, documentation, and visual outputs all integrated.&lt;/p&gt;

&lt;p&gt;The framework includes:&lt;/p&gt;

&lt;p&gt;Two core experiments: voluntary alignment vs forced uniformity&lt;/p&gt;

&lt;p&gt;Entropy tracking, PCA visualizations, and CLI output&lt;/p&gt;

&lt;p&gt;A complete theoretical foundation (definitions → lemmas → theorem → full paper)&lt;/p&gt;

&lt;p&gt;A hybrid license (GPLv3 for code, CC‑BY 4.0 / CC0 for docs) to keep it open while preventing black‑box enclosure&lt;/p&gt;

&lt;p&gt;Clear documentation, diagrams, and reproducible run folders&lt;/p&gt;

&lt;p&gt;GitHub repo: &lt;a href="https://github.com/palman22-hue/Emergent-Attractor-Framework" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m sharing this to get feedback, criticism, ideas for extensions, or potential collaborations.&lt;br&gt;
If anyone is interested in expanding the experiments, formalizing the theory further, or applying the framework to other domains, I’d love to hear your thoughts.&lt;/p&gt;

&lt;p&gt;Thanks for taking a look.&lt;/p&gt;

</description>
      <category>entropy</category>
      <category>opensource</category>
      <category>python</category>
      <category>multiagentsystem</category>
    </item>
    <item>
      <title>Built a 32D Emotional State Tracking system for transparent ethical AI - Now open source (GPLv3)</title>
      <dc:creator>Esteban Palman</dc:creator>
      <pubDate>Sun, 21 Dec 2025 19:43:17 +0000</pubDate>
      <link>https://dev.to/palman22hue/built-a-32d-emotional-state-tracking-system-for-transparent-ethical-ai-now-open-source-gplv3-1doa</link>
      <guid>https://dev.to/palman22hue/built-a-32d-emotional-state-tracking-system-for-transparent-ethical-ai-now-open-source-gplv3-1doa</guid>
      <description>&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;Project North Star - An ethical AI framework with 32-dimensional emotional state tracking and transparent internal processing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live demo in GitHub Codespaces:&lt;/strong&gt; [&lt;a href="https://github.com/palman22-hue/Project-North-Star" rel="noopener noreferrer"&gt;https://github.com/palman22-hue/Project-North-Star&lt;/a&gt;]&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;p&gt;Current AI systems are black boxes. This framework makes the AI's internal emotional state visible in real-time, allowing users to see:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Current coherence level (0-1)&lt;/li&gt;
&lt;li&gt;Active emotions across 32 dimensions&lt;/li&gt;
&lt;li&gt;Transparent decision-making process&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Journey (Today)
&lt;/h2&gt;

&lt;p&gt;Started with: &lt;code&gt;ModuleNotFoundError&lt;/code&gt; chaos&lt;br&gt;
Ended with: Fully deployed GitHub repo with working UI&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stack:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python / FastAPI&lt;/li&gt;
&lt;li&gt;Mistral AI&lt;/li&gt;
&lt;li&gt;32D state modeling&lt;/li&gt;
&lt;li&gt;Real-time visualization&lt;/li&gt;
&lt;li&gt;GPLv3 licensed&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;Clone it, fork it, improve it. Looking for feedback and potential collaborators who care about ethical AI.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repo:&lt;/strong&gt; [&lt;a href="https://github.com/palman22-hue/Project-North-Star" rel="noopener noreferrer"&gt;https://github.com/palman22-hue/Project-North-Star&lt;/a&gt;]&lt;/p&gt;

&lt;p&gt;Built this because AI needs to be transparent, honest, and accountable. Hope this helps others working on similar problems.&lt;br&gt;
&lt;a href="https://dev.tourl"&gt;&lt;/a&gt;&lt;/p&gt;

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