<?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: Özgür Kurucan</title>
    <description>The latest articles on Forem by Özgür Kurucan (@ozgurkurucan).</description>
    <link>https://forem.com/ozgurkurucan</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%2F3803498%2F845b5ba8-12fc-4768-a505-f6d7056fe3ae.jpg</url>
      <title>Forem: Özgür Kurucan</title>
      <link>https://forem.com/ozgurkurucan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ozgurkurucan"/>
    <language>en</language>
    <item>
      <title>How to Monitor Claude Code</title>
      <dc:creator>Özgür Kurucan</dc:creator>
      <pubDate>Sat, 09 May 2026 19:21:02 +0000</pubDate>
      <link>https://forem.com/ozgurkurucan/how-to-monitor-claude-code-19g0</link>
      <guid>https://forem.com/ozgurkurucan/how-to-monitor-claude-code-19g0</guid>
      <description>&lt;h2&gt;
  
  
  How to Monitor Claude Code
&lt;/h2&gt;

&lt;p&gt;You spent an hour with Claude Code. The terminal scrolled by, the feature shipped, you typed &lt;code&gt;/cost&lt;/code&gt;: &lt;strong&gt;$18&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Do you know where that money went?&lt;/li&gt;
&lt;li&gt;How many times did the agent re-read the same file?&lt;/li&gt;
&lt;li&gt;Which tool call got stuck in a retry loop and ate half your hour?&lt;/li&gt;
&lt;li&gt;What did the subagents actually do?&lt;/li&gt;
&lt;li&gt;Did the context window fill up and trigger a silent compaction?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The honest answer is usually "no idea." By default, Claude Code is a &lt;strong&gt;black box&lt;/strong&gt;. The terminal scrolls, the work gets done, the bill arrives — and everything that happened in between is invisible.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Argus&lt;/strong&gt; is the open-source VS Code extension that opens that black box. It watches every Claude Code session live, shows you exactly where your tokens go, and flags retry loops &lt;em&gt;while they are happening&lt;/em&gt; — not after the invoice arrives.&lt;/p&gt;




&lt;h2&gt;
  
  
  The 5 Real Problems with Running Claude Code Blind
&lt;/h2&gt;

&lt;p&gt;If you have used Claude Code seriously for more than a week, you have hit at least three of these:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Bill shock
&lt;/h3&gt;

&lt;p&gt;Your monthly invoice is 3x what you expected. &lt;code&gt;/cost&lt;/code&gt; only shows you the total. Which session, which prompt, which model burned the tokens? You have no breakdown — and therefore no way to actually fix anything.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Silent retry loops
&lt;/h3&gt;

&lt;p&gt;The agent runs the same &lt;code&gt;Bash&lt;/code&gt; command 12 times, fails 12 times, and burns tokens on every attempt. You only notice because "it took a while." To find the loop you would have to open a 10,000-line JSONL transcript and read it by hand.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Duplicate reads draining your token budget
&lt;/h3&gt;

&lt;p&gt;The agent pulls the same file into context 7 times across the session. Your cache hit ratio plummets, your input tokens explode. There is no native way to surface this — you would have to grep the transcript yourself.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. The subagent blind spot
&lt;/h3&gt;

&lt;p&gt;You spawned a &lt;code&gt;Task&lt;/code&gt; and it returned with a result. What did it actually do? Which tools did it call? How much did it cost on its own? You typically only see the final message — the inner trace is buried.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Compaction quietly eats your context
&lt;/h3&gt;

&lt;p&gt;The window filled up, Claude Code auto-compacted earlier history — but exactly &lt;em&gt;when&lt;/em&gt;, and exactly &lt;em&gt;what&lt;/em&gt; did it drop? This is the answer to "why did it forget that detail later?", and you have no native way to see it.&lt;/p&gt;

&lt;p&gt;These five problems are the invisible tax on every serious Claude Code workflow. The fix is the same in all five cases: make your sessions &lt;strong&gt;observable&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is Argus?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Argus&lt;/strong&gt; is a free, open-source &lt;strong&gt;VS Code extension&lt;/strong&gt; built specifically for Claude Code observability. Its only job is to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Auto-discover every session under &lt;code&gt;~/.claude/projects/&lt;/code&gt;,&lt;/li&gt;
&lt;li&gt;Parse it into a panel a human can actually read,&lt;/li&gt;
&lt;li&gt;Update &lt;strong&gt;live&lt;/strong&gt; while Claude Code is running,&lt;/li&gt;
&lt;li&gt;Automatically flag wasted spend, retry loops, duplicate reads, and other anti-patterns.&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;Named after Argos, the hundred-eyed watcher of Greek mythology. The name is the job description — built to watch your agents.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Free. Open source (MIT). No login. &lt;strong&gt;No data ever leaves your machine&lt;/strong&gt; — Argus only reads the JSONL transcripts Claude Code is already writing locally.&lt;/p&gt;




&lt;h2&gt;
  
  
  30-Second Install
&lt;/h2&gt;

&lt;p&gt;Open VS Code, click the &lt;strong&gt;Extensions&lt;/strong&gt; icon in the left sidebar (or press &lt;code&gt;Ctrl+Shift+X&lt;/code&gt; / &lt;code&gt;Cmd+Shift+X&lt;/code&gt;). Type &lt;strong&gt;"Argus"&lt;/strong&gt; in the search box, find &lt;strong&gt;Argus — Claude Code Observability&lt;/strong&gt; in the results, and hit &lt;strong&gt;Install&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The moment install finishes, an &lt;strong&gt;eye icon&lt;/strong&gt; appears in the left Activity Bar. Click it and your Claude Code sessions are already listed. &lt;strong&gt;Zero configuration.&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If you have never run Claude Code, Argus will show an empty list. Run a single Claude Code session and it will appear automatically.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  What You See When You Open a Session
&lt;/h2&gt;

&lt;p&gt;Click any session in the sidebar and a tab opens on the right. The tab is split into multiple sub-panels — each one answers one of the problems listed above:&lt;/p&gt;

&lt;h3&gt;
  
  
  Steps — "What did the agent do?"
&lt;/h3&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.amazonaws.com%2Fuploads%2Farticles%2F6vx5jn3t089yid8epf1p.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%2F6vx5jn3t089yid8epf1p.png" alt="Steps Tab" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Full list of every tool call. Which file it read, which command it ran, which edit it made. Search, filter by tool type, filter by success/error.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When to use it:&lt;/strong&gt; "Just summarize what happened in this session."&lt;/p&gt;

&lt;h3&gt;
  
  
  Analysis — "Where did it go wrong?"
&lt;/h3&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.amazonaws.com%2Fuploads%2Farticles%2Far370so6gjpr907iqwx8.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%2Far370so6gjpr907iqwx8.png" alt="Analysis Tab" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Argus runs a &lt;strong&gt;rule engine&lt;/strong&gt; in the background and automatically flags the 5 problems above:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Duplicate reads&lt;/strong&gt; — same file pulled into context multiple times (free token burn)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Retry loops&lt;/strong&gt; — same command failing over and over&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Failed tools&lt;/strong&gt; — tool calls that errored out&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unused operations&lt;/strong&gt; — files that were read but never used&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Context pressure&lt;/strong&gt; — window approaching its limit&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Compaction events&lt;/strong&gt; — the moments Claude Code dropped earlier history&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every finding has a "jump to step" link, so you can land on the exact moment it happened.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When to use it:&lt;/strong&gt; Whenever a session feels slow. Or after a bill shock.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cost — "Where did my money go?"
&lt;/h3&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.amazonaws.com%2Fuploads%2Farticles%2F3ia9h621pouz3qezuizp.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%2F3ia9h621pouz3qezuizp.png" alt="Cost Tab" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Per-step token and dollar breakdown. Input / output / cache read / cache write split out separately. Which model (Opus / Sonnet / Haiku) cost what. Your cache hit ratio.&lt;/p&gt;

&lt;p&gt;Once you open this tab a few times, your prompting habits &lt;strong&gt;change&lt;/strong&gt;. You start managing context more deliberately because you can see, in real dollars, what re-reading the same file 7 times costs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When to use it:&lt;/strong&gt; End of every month. And the first time the bill is bigger than expected.&lt;/p&gt;

&lt;h3&gt;
  
  
  Performance — "How much was waste?"
&lt;/h3&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.amazonaws.com%2Fuploads%2Farticles%2Fh8fn55u9wg3nhhq6s7sb.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%2Fh8fn55u9wg3nhhq6s7sb.png" alt="Performance Tab" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Efficiency score plus a &lt;strong&gt;wasted-cost&lt;/strong&gt; estimate: dollars lost to duplicate reads, retry loops, and unnecessary tool calls.&lt;/p&gt;

&lt;p&gt;The first view is shocking. "I am burning $4 an hour on nothing" — that kind of moment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Flow — "How are these files connected?"
&lt;/h3&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.amazonaws.com%2Fuploads%2Farticles%2F0qrgif39q5h93bsjjo5u.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%2F0qrgif39q5h93bsjjo5u.png" alt="Flow Tab" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An interactive graph. Nodes are files, edges are Read / Write / Edit relationships. The fastest way to see, in a complex refactor, exactly which files the agent touched and in what order.&lt;/p&gt;

&lt;h3&gt;
  
  
  Context &amp;amp; Insights — "How could I have done it better?"
&lt;/h3&gt;

&lt;p&gt;The Context tab shows your token budget and cache performance for the session. The Insights tab generates &lt;strong&gt;pattern-based recommendations&lt;/strong&gt; — things like "you read 3 files 5+ times in this session, pin them in your prompt."&lt;/p&gt;




&lt;h2&gt;
  
  
  Live Monitoring: Intervene Before the Invoice
&lt;/h2&gt;

&lt;p&gt;This is the single most valuable thing Argus does:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open the Argus panel, then start Claude Code.&lt;/strong&gt; Every tool call updates the panel in real time. The token counter advances, new steps appear, the analyzer raises new findings as they happen.&lt;/p&gt;

&lt;p&gt;This is not post-mortem log reading anymore — it is &lt;strong&gt;live monitoring&lt;/strong&gt;. You see the agent enter a retry loop &lt;em&gt;as it enters one&lt;/em&gt;, not after the invoice. You get a chance to intervene.&lt;/p&gt;




&lt;h2&gt;
  
  
  Using the Sidebar Effectively
&lt;/h2&gt;

&lt;p&gt;Once you have a lot of sessions, the sidebar matters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Search&lt;/strong&gt; by message content or project name&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Model filter&lt;/strong&gt; (great for comparing Opus / Sonnet / Haiku)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Date presets&lt;/strong&gt; (1 hour / 24 hours / 7 days / 30 days) or &lt;strong&gt;custom range&lt;/strong&gt; from a calendar&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Group by project&lt;/strong&gt; or &lt;strong&gt;group by model&lt;/strong&gt; — whichever is more useful for you&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;My recommendation: once a week, set the filter to "this week" and skim the Cost and Analysis tabs. Five minutes. That habit alone will visibly reduce your token spend.&lt;/p&gt;




&lt;h2&gt;
  
  
  Typical Use Cases
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;"Why did this session take 25 minutes?"&lt;/strong&gt;&lt;br&gt;
→ Open Steps, sort by duration. Inspect the top 3 longest steps. Almost always a Bash command or a retry loop.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"My bill is higher than expected — why?"&lt;/strong&gt;&lt;br&gt;
→ Cost tab, with a date filter. Open the most expensive sessions, then check Performance for wasted cost.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Was this refactor sequencing actually sensible?"&lt;/strong&gt;&lt;br&gt;
→ Flow tab. The dependency graph shows you the real order the agent touched files in.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Who on my team is using which model?"&lt;/strong&gt;&lt;br&gt;
→ (For local machines.) Group by model. The people running Opus on trivial tasks become obvious immediately.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Is the agent making the same mistakes everyone else does?"&lt;/strong&gt;&lt;br&gt;
→ The Duplicate Reads and Retry Loop findings under Analysis. Turn the patterns into internal training material if needed.&lt;/p&gt;




&lt;h2&gt;
  
  
  Who Is It For?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Solo developers:&lt;/strong&gt; Lower your token spend with real data. Your prompts get sharper.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Teams:&lt;/strong&gt; Cross-project AI usage and cost auditing. Identify and spread good practices.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Researchers:&lt;/strong&gt; Inspect LLM-driven development patterns at trace level. Compare models head-to-head.&lt;/p&gt;




&lt;h2&gt;
  
  
  FAQ
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Does any of my data go to Anthropic or anywhere else?&lt;/strong&gt;&lt;br&gt;
No. Argus runs &lt;strong&gt;locally&lt;/strong&gt; and only reads the JSONL files already on your machine. Zero network requests.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Does Argus work when Claude Code is not running?&lt;/strong&gt;&lt;br&gt;
Yes. You can always open and inspect any past session.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Is it Mac-only?&lt;/strong&gt;&lt;br&gt;
No. macOS, Linux, and Windows are all supported.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Does it work in Cursor / Windsurf and other VS Code forks?&lt;/strong&gt;&lt;br&gt;
It works in most VS Code-compatible forks. Tested in Cursor. The most polished experience is still in stock VS Code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Do I need to configure anything?&lt;/strong&gt;&lt;br&gt;
No. There are two optional settings — scan depth and language (&lt;code&gt;tr&lt;/code&gt; / &lt;code&gt;en&lt;/code&gt;) — and both work fine on their defaults.&lt;/p&gt;




&lt;h2&gt;
  
  
  Install Again (Bookmark This)
&lt;/h2&gt;

&lt;p&gt;VS Code → Extensions (&lt;code&gt;Ctrl+Shift+X&lt;/code&gt;) → search &lt;strong&gt;"Argus"&lt;/strong&gt; → &lt;strong&gt;Install&lt;/strong&gt; → eye icon in the Activity Bar → done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/yessGlory17/argus" rel="noopener noreferrer"&gt;github.com/yessGlory17/argus&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Claude Code is a remarkable tool. But &lt;strong&gt;without observability, it is an expensive one&lt;/strong&gt;. Like every other serious development workflow, it needs monitoring.&lt;/p&gt;

&lt;p&gt;After installing Argus and watching a few sessions, going back is hard. Seeing what the agent actually does makes you a better prompter, which means fewer tokens, faster iteration, lower bills.&lt;/p&gt;

&lt;p&gt;If you found this post by searching for "how to monitor Claude Code", "Claude Code cost tracking", or "Claude Code observability", the answer is short: &lt;strong&gt;install it, try it, and you will not want to go back.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If Argus saves you tokens, time, or sanity, drop a star on the repo. Issues and ideas are always welcome.&lt;/p&gt;

&lt;p&gt;Happy (and observable) hacking.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>claude</category>
      <category>monitoring</category>
      <category>vscode</category>
    </item>
    <item>
      <title>🚀 Just Launched Argus - Claude Code Session Debugger! 👁️</title>
      <dc:creator>Özgür Kurucan</dc:creator>
      <pubDate>Tue, 03 Mar 2026 09:07:36 +0000</pubDate>
      <link>https://forem.com/ozgurkurucan/just-launched-argus-claude-code-session-debugger-3jl1</link>
      <guid>https://forem.com/ozgurkurucan/just-launched-argus-claude-code-session-debugger-3jl1</guid>
      <description>&lt;p&gt;Are your token costs spiraling out of control when developing with Claude Code?&lt;br&gt;
Wasting money on unnecessary API calls?&lt;br&gt;
Losing time with retry loops?&lt;/p&gt;

&lt;p&gt;I built Argus to solve this problem!&lt;/p&gt;

&lt;p&gt;🔍 What is Argus?&lt;br&gt;
A VS Code extension that deeply analyzes your Claude Code sessions, providing cost and performance optimization.&lt;/p&gt;

&lt;p&gt;✨ What Does It Do?&lt;br&gt;
• 💸 Real-time token usage and API cost tracking&lt;br&gt;
• ⚡ Detects duplicate reads, retry loops, and unnecessary operations&lt;br&gt;
• 📊 8 analysis tabs with detailed insights&lt;br&gt;
• 🎯 Context pressure and cache performance analysis&lt;br&gt;
• 🌊 Visualizes file operation dependency graphs&lt;/p&gt;

&lt;p&gt;🛠️ Tech Stack:&lt;br&gt;
TypeScript + React 19 + Vite + D3.js + Chart.js + VS Code API&lt;/p&gt;

&lt;p&gt;📈 Results: 20-30% cost savings and much more efficient AI-assisted development&lt;/p&gt;

&lt;p&gt;🔗 Links:&lt;br&gt;
📦 VS Code Marketplace: &lt;a href="https://marketplace.visualstudio.com/items?itemName=argus-claude.argus-claude" rel="noopener noreferrer"&gt;Extension&lt;/a&gt;&lt;br&gt;
💻 &lt;a href="https://github.com/yessGlory17/argus" rel="noopener noreferrer"&gt;Github&lt;/a&gt;&lt;br&gt;
🚀 &lt;a href="https://www.producthunt.com/products/argus-claude-code-debugger-analyzer" rel="noopener noreferrer"&gt;Product Hunt&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  VSCode #AI #DeveloperTools #ClaudeCode #TypeScript #React #OpenSource #Agent #anthropic
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>showdev</category>
      <category>tooling</category>
      <category>vscode</category>
    </item>
  </channel>
</rss>
