<?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: Cless</title>
    <description>The latest articles on Forem by Cless (@liberifatali).</description>
    <link>https://forem.com/liberifatali</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%2F3613549%2Fa2c3e8cd-b4b3-43ab-823f-80ad1367ffeb.jpg</url>
      <title>Forem: Cless</title>
      <link>https://forem.com/liberifatali</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/liberifatali"/>
    <language>en</language>
    <item>
      <title>Advent of Agents - Day 8</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Fri, 26 Dec 2025 04:35:29 +0000</pubDate>
      <link>https://forem.com/liberifatali/advent-of-agents-day-8-4h88</link>
      <guid>https://forem.com/liberifatali/advent-of-agents-day-8-4h88</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%2Fml3tmrkn7wxxc0837nvv.png" 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%2Fml3tmrkn7wxxc0837nvv.png" alt="ADK Context Engineering Infographic"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;

  &lt;iframe src="https://www.youtube.com/embed/eQDx90dVc38"&gt;
  &lt;/iframe&gt;


&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.kaggle.com/whitepaper-context-engineering-sessions-and-memory" rel="noopener noreferrer"&gt;More details&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
    </item>
    <item>
      <title>Advent of Agents - Day 4</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Mon, 08 Dec 2025 07:18:32 +0000</pubDate>
      <link>https://forem.com/liberifatali/advent-of-agents-day-4-1843</link>
      <guid>https://forem.com/liberifatali/advent-of-agents-day-4-1843</guid>
      <description>&lt;p&gt;Agent Engine supports source-based deployment. Your source code deploys directly to production.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Get started with Agent Starter Pack:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For a new project:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx agent-starter-pack create my-agent &lt;span class="nt"&gt;-a&lt;/span&gt; adk_base &lt;span class="nt"&gt;-d&lt;/span&gt; agent_engine
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Already have an ADK agent? Use enhance:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx agent-starter-pack enhance &lt;span class="nt"&gt;--d&lt;/span&gt; agent_engine
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then trigger the deployment with&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;make deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ai</category>
      <category>agents</category>
      <category>adventofagents</category>
    </item>
    <item>
      <title>Advent of Agents - Day 3</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Thu, 04 Dec 2025 09:00:15 +0000</pubDate>
      <link>https://forem.com/liberifatali/advent-of-agents-day-3-2565</link>
      <guid>https://forem.com/liberifatali/advent-of-agents-day-3-2565</guid>
      <description>&lt;p&gt;&lt;em&gt;Build a powerful AI Agent using Gemini 3 and ADK with native support for Google Search grounding, computer use, and real-time streaming.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Setup the project&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One liner with Agent Starter Pack&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uvx agent-starter-pack create -y --api-key &amp;lt;YOUR_GEMINI_API_KEY&amp;gt; my_agent
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;or&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Using ADK CLI&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uv init
uv add google-adk
uv add google-genai
export GOOGLE_API_KEY="YOUR_API_KEY"
source .venv/bin/activate
adk create my_agent
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Download sample and run locally&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;curl 'https://raw.githubusercontent.com/GoogleCloudPlatform/devrel-demos/refs/heads/main/ai-ml/agent-labs/gemini-3-pro-agent-demo/my_agent/agent.py' &amp;gt; my_agent/agent.py
adk web
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ai</category>
      <category>agents</category>
      <category>adventoagents</category>
    </item>
    <item>
      <title>Advent of Agents - Day 2</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Wed, 03 Dec 2025 01:35:35 +0000</pubDate>
      <link>https://forem.com/liberifatali/advent-of-agents-day-2-4mnp</link>
      <guid>https://forem.com/liberifatali/advent-of-agents-day-2-4mnp</guid>
      <description>&lt;ul&gt;
&lt;li&gt;4 lines of text = 1 working AI agent.&lt;/li&gt;
&lt;li&gt;No coding. Just YAML.&lt;/li&gt;
&lt;li&gt;A working AI agent powered by Gemini 3&lt;/li&gt;
&lt;li&gt;Google Search integration
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uvx --from google-adk adk create --type=config my_agent
uvx --from google-adk adk web
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ai</category>
      <category>agents</category>
      <category>adventofagents</category>
    </item>
    <item>
      <title>Advent of Agents - Day 1</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Tue, 02 Dec 2025 13:31:47 +0000</pubDate>
      <link>https://forem.com/liberifatali/advent-of-agents-day-1-4hb9</link>
      <guid>https://forem.com/liberifatali/advent-of-agents-day-1-4hb9</guid>
      <description>&lt;p&gt;&lt;a href="https://notebooklm.google.com/notebook/35f2378a-1cbe-448d-a3dd-b34a84f93ea3?authuser=1" rel="noopener noreferrer"&gt;Introduction to Agents&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/nOYWU9f5p3M"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;a href="https://adventofagents.com/" rel="noopener noreferrer"&gt;More info here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>adventofagents</category>
    </item>
    <item>
      <title>Story of Esperanto</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Sat, 29 Nov 2025 14:23:04 +0000</pubDate>
      <link>https://forem.com/liberifatali/story-of-esperanto-n1l</link>
      <guid>https://forem.com/liberifatali/story-of-esperanto-n1l</guid>
      <description>&lt;p&gt;I'm learning Esperanto, lingvo de paco - the language of peace. Here are interesting things about its history.&lt;/p&gt;

&lt;p&gt;

  &lt;iframe src="https://www.youtube.com/embed/mcX1OF7fEas"&gt;
  &lt;/iframe&gt;


&lt;/p&gt;

</description>
      <category>esperanto</category>
      <category>polygot</category>
    </item>
    <item>
      <title>Google ADK Tutorials</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Sun, 23 Nov 2025 12:12:16 +0000</pubDate>
      <link>https://forem.com/liberifatali/google-adk-tutorials-1e2b</link>
      <guid>https://forem.com/liberifatali/google-adk-tutorials-1e2b</guid>
      <description>&lt;p&gt;I'm putting a list of tutorials for Google ADK (Agent Development Kit). This is the foundation.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://codelabs.developers.google.com/devsite/codelabs/build-agents-with-adk-foundation" rel="noopener noreferrer"&gt;A quick start to get a feel of Google ADK&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cloud.google.com/blog/topics/developers-practitioners/building-collaborative-ai-a-developers-guide-to-multi-agent-systems-with-adk" rel="noopener noreferrer"&gt;Foundational concepts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codelabs.developers.google.com/devsite/codelabs/build-agents-with-adk-empowering-with-tools" rel="noopener noreferrer"&gt;First experience with ADK tools&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codelabs.developers.google.com/onramp/instructions" rel="noopener noreferrer"&gt;A good crash course&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codelabs.developers.google.com/adkcourse/instructions" rel="noopener noreferrer"&gt;ADK pattern with Memory and MCP (Model Context Protocol)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/google/adk-samples" rel="noopener noreferrer"&gt;google/adk-samples&lt;/a&gt;: A collection of sample agents built with Agent Development (ADK)&lt;/li&gt;
&lt;li&gt;&lt;a href="https://tidal-draw-67c.notion.site/Study-Note-AI-Agent-2b4b2866cc68805c8018dfb996578c94" rel="noopener noreferrer"&gt;Study Note « AI Agent from Annie Wang&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>agents</category>
      <category>ai</category>
    </item>
    <item>
      <title>Setup Gstreamer with Python on Windows</title>
      <dc:creator>Cless</dc:creator>
      <pubDate>Wed, 19 Nov 2025 04:44:49 +0000</pubDate>
      <link>https://forem.com/liberifatali/setup-gstreamer-with-python-on-windows-59n3</link>
      <guid>https://forem.com/liberifatali/setup-gstreamer-with-python-on-windows-59n3</guid>
      <description>&lt;p&gt;&lt;em&gt;When I started trying GStreamer with Python on Windows 10, it took me quite some time to set up the development environment. So this might help others on the way.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The most convenient approach is through MSYS2. Here are the steps:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt; Download and install MSYS2: &lt;a href="https://www.msys2.org" rel="noopener noreferrer"&gt;https://www.msys2.org&lt;/a&gt;. Remember [msys2_path] for environment variable.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt; Install Python, GStreamer, tools, plugins, and PyGObject&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open MSYS2 UCRT64 terminal&lt;/li&gt;
&lt;li&gt;Update MSYS2 &lt;code&gt;pacman -Syu&lt;/code&gt;. After this, the terminal may close; you need to open it again.&lt;/li&gt;
&lt;li&gt;Install gcc &lt;code&gt;pacman -S mingw-w64-ucrt-x86_64-gcc&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install Python, GStreamer, tools, plugins, and PyGObject
&lt;code&gt;pacman -S mingw-w64-x86_64-python3 mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-devtools mingw-w64-x86_64-gst-plugins-{base,good,bad,ugly} mingw-w64-x86_64-python3-gobject&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add the following paths to &lt;code&gt;~/.bashrc&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;export PATH="&amp;lt;msys2_path&amp;gt;/mingw64/bin:$PATH"
export XDG_DATA_DIRS="&amp;lt;msys2_path&amp;gt;/mingw64/share/:$XDG_DATA_DIRS"
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Apply bashrc: &lt;code&gt;source ~/.bashrc&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt; Test: run this on the terminal&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install pygobject
python -c "import gi; gi.require_version('Gst', '1.0'); from gi.repository import Gst; print(Gst.version_string())"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>gstreamer</category>
      <category>python</category>
      <category>windows</category>
    </item>
  </channel>
</rss>
