<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>AI Convergence</title>
    <link>https://mobicon.tistory.com/</link>
    <description>Web &amp;amp; LLM FullStacker, Application Architecter, KnowHow Dispenser and Bike Rider</description>
    <language>ko</language>
    <pubDate>Sun, 8 Mar 2026 09:44:51 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>Peter Note</managingEditor>
    <image>
      <title>AI Convergence</title>
      <url>https://t1.daumcdn.net/cfile/tistory/246BA83D558806A012</url>
      <link>https://mobicon.tistory.com</link>
    </image>
    <item>
      <title>[Agentic AI] AI Agent 패턴, MCP 그리고 LLM 프레임워크</title>
      <link>https://mobicon.tistory.com/641</link>
      <description>LLM이 더 똑똑해 지게 RAG가 나오고, 이어서 내게 필요한 실제 일을 할 수 있는 AI Agent가 나온 다음 이제는 좀 더 복한한 문제를 처리할 수 있는 Agentic AI가 회자되고 있다.&amp;nbsp;
&amp;nbsp;
AI Agent 는&amp;nbsp;
추론하고 도구를 사용하여 답을 생성한다. 여기에 ReAct (Resoning 추론 + Act 실행) 패턴 또는 PlanningAct 패턴등이 사용된다.- Plan : 작업을 어떻게 수행할지 결정, 문제를 단..</description>
      <category>[LLM FullStacker]/Agentic AI</category>
      <author>Peter Note</author>
      <guid isPermaLink="true">https://mobicon.tistory.com/641</guid>
      <comments>https://mobicon.tistory.com/641#entry641comment</comments>
      <pubDate>Fri, 15 Aug 2025 16:53:27 +0900</pubDate>
    </item>
    <item>
      <title>Gemini CLI 에 Super Gemini 붙이기</title>
      <link>https://mobicon.tistory.com/640</link>
      <description>Claude Code에 Super Claude를 설치하여 사용하듯, Gemini Code에 Super Gemini를 함께 사용할 수 있다.&amp;nbsp;
&amp;nbsp;
Gemini Code 설치
설치 및 상세가이드는 gemini-cli 참조
// 설치
npm install -g @google/gemini-cli

// 실행
gemini
&amp;nbsp;
Gemini 상세 가이드를 참조하자.
&amp;nbsp;
Super Gemini 설치
SuperClaude의 sc 커맨..</description>
      <category>[LLM FullStacker]/Agentic AI</category>
      <category>gemini-cli</category>
      <category>SuperClaude</category>
      <category>SuperGemini</category>
      <author>Peter Note</author>
      <guid isPermaLink="true">https://mobicon.tistory.com/640</guid>
      <comments>https://mobicon.tistory.com/640#entry640comment</comments>
      <pubDate>Mon, 11 Aug 2025 10:13:02 +0900</pubDate>
    </item>
    <item>
      <title>Agentic Analytics란?</title>
      <link>https://mobicon.tistory.com/639</link>
      <description>다음은 Plotly의 블로그 포스트 &amp;ldquo;An Introduction to Agentic Analytics&amp;rdquo; (2025년 5월 14일 게시) 내용을 한국어로 정리한 요약입니다.
&amp;nbsp;

&amp;nbsp;
  Agentic Analytics란?
&amp;nbsp;
Agentic Analytics는 단순한 데이터 시각화를 넘어, AI 에이전트가 목표 중심으로 스스로 데이터 분석, 판단, 행동까지 수행하는 분석 패러다임입니다.
기존의 전통적인 BI..</description>
      <category>[LLM FullStacker]/Agentic AI</category>
      <author>Peter Note</author>
      <guid isPermaLink="true">https://mobicon.tistory.com/639</guid>
      <comments>https://mobicon.tistory.com/639#entry639comment</comments>
      <pubDate>Sat, 2 Aug 2025 16:28:09 +0900</pubDate>
    </item>
    <item>
      <title>[Agentic AI] 에이젠틱 AI 란 무엇인가?</title>
      <link>https://mobicon.tistory.com/638</link>
      <description>Agentic AI 란?
&quot;에이전트들이 협업하며, 자율적으로 해동 계획을 수립하고, 목표를 달성하는 시스템 전체 또는 프레임워크이다&quot;. 보통 AI Agent 라는 부르는 것은 &quot;특정 목표를 수행하는 개별 인공지능 객체&quot;를 의미한다.&amp;nbsp;

&amp;nbsp;
Agentic AI 에서 중요한 것은 3가지 이다.&amp;nbsp;
- 자율적 자기주도적 사고
- 멀티에이전트 협업 능력
- 목표 달성 중심 시스템(프레임워크)
&amp;nbsp;
AI Engineering 롤을..</description>
      <category>[LLM FullStacker]/Agentic AI</category>
      <category>agentic ai</category>
      <category>context engineering</category>
      <author>Peter Note</author>
      <guid isPermaLink="true">https://mobicon.tistory.com/638</guid>
      <comments>https://mobicon.tistory.com/638#entry638comment</comments>
      <pubDate>Sun, 29 Jun 2025 14:14:06 +0900</pubDate>
    </item>
    <item>
      <title>UV 사용하기</title>
      <link>https://mobicon.tistory.com/635</link>
      <description>설치
계정 글로벌에 설치된다. uv와 uvx 가 설치된다. (uvx는 파이썬으로 제작된 CLI 툴을 사용할 때 사용한다.)
# 맥OS, 리눅스, WSL
curl -LsSf https://astral.sh/uv/install.sh | sh

# 윈도우
powershell -c &quot;irm https://astral.sh/uv/install.ps1 | iex&quot;
&amp;nbsp;
가상 환경 만들기
가상환경을 적용할 폴더로 이동을 한다.&amp;nbsp;
uv venv .ve..</description>
      <category>[LLM FullStacker]/Python</category>
      <category>package manager</category>
      <category>PIP</category>
      <category>Python</category>
      <category>UV</category>
      <category>venv</category>
      <author>Peter Note</author>
      <guid isPermaLink="true">https://mobicon.tistory.com/635</guid>
      <comments>https://mobicon.tistory.com/635#entry635comment</comments>
      <pubDate>Tue, 11 Mar 2025 11:38:10 +0900</pubDate>
    </item>
  </channel>
</rss>