<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>卓琪的开发笔记</title>
    <link>https://zhuoqidev.com/</link>
    <description>Recent content on 卓琪的开发笔记</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <copyright>© 2026 Liu ZhuoQi</copyright>
    <lastBuildDate>Mon, 04 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://zhuoqidev.com/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
      <title>Building a Personal Site with Hugo and Dual-Stack CDN</title>
      <link>https://zhuoqidev.com/en/posts/hello-world/</link>
      <pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/en/posts/hello-world/</guid>
      <description>&lt;h2 class=&#34;relative group&#34;&gt;Why Hugo&#xD;&#xA;    &lt;div id=&#34;why-hugo&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xD;&#xA;    &#xD;&#xA;    &lt;span&#xD;&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xD;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#why-hugo&#34; aria-label=&#34;锚点&#34;&gt;#&lt;/a&gt;&#xD;&#xA;    &lt;/span&gt;&#xD;&#xA;    &#xD;&#xA;&lt;/h2&gt;&#xD;&#xA;&lt;p&gt;When picking a framework for a personal blog, my top criterion was &lt;strong&gt;low maintenance cost&lt;/strong&gt; — I didn&amp;rsquo;t want to abandon writing three months later because of npm dependency hell.&lt;/p&gt;&#xA;&lt;p&gt;Hugo is a single binary, requires no Node.js, builds thousands of posts in 1-2 seconds, and the PaperMod theme comes with dark mode, full-text search, RSS, Open Graph, and reading time estimates out of the box. Day-to-day writing only requires touching Markdown files.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Why LLMs Have No Memory — A Cross-Validated Research Report with 67 Primary Sources</title>
      <link>https://zhuoqidev.com/en/projects/llm-memory-research/</link>
      <pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/en/projects/llm-memory-research/</guid>
      <description>&lt;h2 class=&#34;relative group&#34;&gt;TL;DR&#xD;&#xA;    &lt;div id=&#34;tldr&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xD;&#xA;    &#xD;&#xA;    &lt;span&#xD;&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xD;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#tldr&#34; aria-label=&#34;锚点&#34;&gt;#&lt;/a&gt;&#xD;&#xA;    &lt;/span&gt;&#xD;&#xA;    &#xD;&#xA;&lt;/h2&gt;&#xD;&#xA;&lt;p&gt;&amp;ldquo;LLMs have no memory&amp;rdquo; isn&amp;rsquo;t an oversight — it&amp;rsquo;s the equilibrium of four compounding constraints: &lt;strong&gt;O(n²) attention + KV cache VRAM + catastrophic forgetting + GDPR compliance&lt;/strong&gt;. Every &amp;ldquo;Memory&amp;rdquo; feature from ChatGPT / Claude / Cursor works the same way: &lt;strong&gt;inject structured text back into the system prompt&lt;/strong&gt;. Weights never change. Prompt Caching is performance optimization, not memory. The mainstream for the next 1–3 years is &lt;strong&gt;&amp;ldquo;stateless LLM core + stateful Agent memory layer&amp;rdquo;&lt;/strong&gt;.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>大模型为什么没有记忆——67 条一手资料的交叉验证调研</title>
      <link>https://zhuoqidev.com/projects/llm-memory-research/</link>
      <pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/projects/llm-memory-research/</guid>
      <description>&lt;h2 class=&#34;relative group&#34;&gt;一句话结论&#xD;&#xA;    &lt;div id=&#34;一句话结论&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xD;&#xA;    &#xD;&#xA;    &lt;span&#xD;&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xD;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#%e4%b8%80%e5%8f%a5%e8%af%9d%e7%bb%93%e8%ae%ba&#34; aria-label=&#34;锚点&#34;&gt;#&lt;/a&gt;&#xD;&#xA;    &lt;/span&gt;&#xD;&#xA;    &#xD;&#xA;&lt;/h2&gt;&#xD;&#xA;&lt;p&gt;所谓「大模型没有记忆」不是疏忽，而是 &lt;strong&gt;Transformer O(n²) 注意力 + KV cache 显存 + 权重纠缠（灾难性遗忘）+ GDPR 合规&lt;/strong&gt; 四重约束的均衡解。ChatGPT / Claude / Cursor 的 &amp;ldquo;Memory&amp;rdquo; 本质都是&lt;strong&gt;把结构化文本塞回 system prompt&lt;/strong&gt;，模型权重永远不动。Prompt Caching 只是性能优化，不是记忆。未来 1–3 年的主流是 &lt;strong&gt;「无状态 LLM 内核 + 有状态 Agent 记忆层」&lt;/strong&gt; 混合架构。&lt;/p&gt;&#xA;&lt;div class=&#34;research-stats&#34;&gt;&#xA;  &lt;div class=&#34;research-stat&#34;&gt;&#xA;    &lt;div class=&#34;stat-value&#34;&gt;O(n²)&lt;/div&gt;&#xA;    &lt;div class=&#34;stat-label&#34;&gt;注意力计算复杂度&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;div class=&#34;research-stat&#34;&gt;&#xA;    &lt;div class=&#34;stat-value&#34;&gt;638×H100&lt;/div&gt;&#xA;    &lt;div class=&#34;stat-label&#34;&gt;Llama 3.1 100M ctx 单用户 KV cache 成本&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;div class=&#34;research-stat&#34;&gt;&#xA;    &lt;div class=&#34;stat-value&#34;&gt;0.1×&lt;/div&gt;&#xA;    &lt;div class=&#34;stat-label&#34;&gt;Cache read 价格 (Anthropic / OpenAI)&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;div class=&#34;research-stat&#34;&gt;&#xA;    &lt;div class=&#34;stat-value&#34;&gt;5min–24h&lt;/div&gt;&#xA;    &lt;div class=&#34;stat-label&#34;&gt;主流 prompt cache TTL&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;hr&gt;&#xA;&#xD;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;1. 为什么 LLM 被设计成无状态&#xD;&#xA;    &lt;div id=&#34;1-为什么-llm-被设计成无状态&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xD;&#xA;    &#xD;&#xA;    &lt;span&#xD;&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xD;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#1-%e4%b8%ba%e4%bb%80%e4%b9%88-llm-%e8%a2%ab%e8%ae%be%e8%ae%a1%e6%88%90%e6%97%a0%e7%8a%b6%e6%80%81&#34; aria-label=&#34;锚点&#34;&gt;#&lt;/a&gt;&#xD;&#xA;    &lt;/span&gt;&#xD;&#xA;    &#xD;&#xA;&lt;/h2&gt;&#xD;&#xA;&lt;p&gt;四个独立约束叠加，每一个单独都不致命，叠在一起就只剩&amp;quot;无状态&amp;quot;这一种工程解——这个结论来自对 67 条一手资料的交叉验证。&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>用 Hugo 和双栈 CDN 搭建个人网站</title>
      <link>https://zhuoqidev.com/posts/hello-world/</link>
      <pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/posts/hello-world/</guid>
      <description>&lt;h2 class=&#34;relative group&#34;&gt;为什么选 Hugo&#xD;&#xA;    &lt;div id=&#34;为什么选-hugo&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xD;&#xA;    &#xD;&#xA;    &lt;span&#xD;&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xD;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#%e4%b8%ba%e4%bb%80%e4%b9%88%e9%80%89-hugo&#34; aria-label=&#34;锚点&#34;&gt;#&lt;/a&gt;&#xD;&#xA;    &lt;/span&gt;&#xD;&#xA;    &#xD;&#xA;&lt;/h2&gt;&#xD;&#xA;&lt;p&gt;做个人博客选框架，我的第一标准是&lt;strong&gt;维护成本低&lt;/strong&gt;——不想三个月后因为 npm 依赖地狱放弃写作。&lt;/p&gt;&#xA;&lt;p&gt;Hugo 是单二进制文件，无需 Node.js，构建几千篇文章只需 1-2 秒，PaperMod 主题开箱就有暗色模式、全文搜索、RSS、Open Graph、阅读时间估算。日常写作只需碰 Markdown。&lt;/p&gt;&#xA;&#xD;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;整体架构&#xD;&#xA;    &lt;div id=&#34;整体架构&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xD;&#xA;    &#xD;&#xA;    &lt;span&#xD;&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xD;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#%e6%95%b4%e4%bd%93%e6%9e%b6%e6%9e%84&#34; aria-label=&#34;锚点&#34;&gt;#&lt;/a&gt;&#xD;&#xA;    &lt;/span&gt;&#xD;&#xA;    &#xD;&#xA;&lt;/h2&gt;&#xD;&#xA;&lt;div class=&#34;highlight-wrapper&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34; id=&#34;1&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#1&#34;&gt; 1&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;2&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#2&#34;&gt; 2&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;3&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#3&#34;&gt; 3&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;4&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#4&#34;&gt; 4&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;5&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#5&#34;&gt; 5&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;6&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#6&#34;&gt; 6&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;7&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#7&#34;&gt; 7&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;8&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#8&#34;&gt; 8&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;9&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#9&#34;&gt; 9&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;10&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#10&#34;&gt;10&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;11&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#11&#34;&gt;11&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;12&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#12&#34;&gt;12&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;13&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#13&#34;&gt;13&lt;/a&gt;&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34; id=&#34;14&#34;&gt;&lt;a class=&#34;lnlinks&#34; href=&#34;#14&#34;&gt;14&lt;/a&gt;&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                  ┌─────────────────────────────┐&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                  │       DNS 分线路解析          │&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                  │   (阿里云云解析 GeoDB)        │&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                  └──────┬──────────────┬────────┘&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                         │              │&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;              国内访客    ▼    国际访客  ▼&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;          ┌──────────────────┐  ┌─────────────────┐&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;          │  阿里云 CDN      │  │ Cloudflare Pages │&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;          │  ↓               │  │  (免费，全球CDN) │&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;          │  阿里云 OSS      │  └─────────────────┘&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;          │  (静态托管)      │&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;          └──────────────────┘&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                  ↑&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        GitHub Actions 自动构建 &amp;amp; 双栈推送&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;/div&gt;&#xD;&#xA;&lt;p&gt;这套方案全年花费约 ¥206：&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>在 Hugo 文章里内嵌 CSS 动画 Demo</title>
      <link>https://zhuoqidev.com/posts/css-animation-demo/</link>
      <pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/posts/css-animation-demo/</guid>
      <description>&lt;p&gt;Hugo 用 shortcode 可以很优雅地内嵌代码演示。这里展示三种方式：&lt;/p&gt;&#xA;&#xD;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;1. 内联 CSS demo（无需外部服务）&#xD;&#xA;    &lt;div id=&#34;1-内联-css-demo无需外部服务&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xD;&#xA;    &#xD;&#xA;    &lt;span&#xD;&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xD;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#1-%e5%86%85%e8%81%94-css-demo%e6%97%a0%e9%9c%80%e5%a4%96%e9%83%a8%e6%9c%8d%e5%8a%a1&#34; aria-label=&#34;锚点&#34;&gt;#&lt;/a&gt;&#xD;&#xA;    &lt;/span&gt;&#xD;&#xA;    &#xD;&#xA;&lt;/h2&gt;&#xD;&#xA;&lt;p&gt;直接在文章里跑一个旋转加载动画：&lt;/p&gt;&#xA;&lt;div class=&#34;inline-demo&#34; style=&#34;margin: 1.5rem 0;&#34;&gt;&#xD;&#xA;  &lt;iframe&#xD;&#xA;    id=&#34;demo-c9e1e4cadf51119cb40d357b2fe4d93d-0&#34;&#xD;&#xA;    style=&#34;width:100%; height:200px; border:1px solid #dedad4; border-radius:6px; background:#faf8f5;&#34;&#xD;&#xA;    scrolling=&#34;no&#34;&#xD;&#xA;    sandbox=&#34;allow-scripts allow-same-origin&#34;&gt;&#xD;&#xA;  &lt;/iframe&gt;&#xD;&#xA;  &lt;p style=&#34;font-size:0.8rem; color:#777; text-align:center; margin-top:0.5rem;&#34;&gt;纯 CSS 旋转加载器&lt;/p&gt;&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&lt;template id=&#34;demo-c9e1e4cadf51119cb40d357b2fe4d93d-0-src&#34;&gt;&#xD;&#xA;&lt;style&gt;&#xD;&#xA;  .loader {&#xD;&#xA;    width: 48px;&#xD;&#xA;    height: 48px;&#xD;&#xA;    border: 4px solid #e8e4de;&#xD;&#xA;    border-top-color: #c44020;&#xD;&#xA;    border-radius: 50%;&#xD;&#xA;    animation: spin 0.8s linear infinite;&#xD;&#xA;  }&#xD;&#xA;  @keyframes spin {&#xD;&#xA;    to { transform: rotate(360deg); }&#xD;&#xA;  }&#xD;&#xA;&lt;/style&gt;&#xD;&#xA;&lt;div class=&#34;loader&#34;&gt;&lt;/div&gt;&#xD;&#xA;&lt;/template&gt;&#xD;&#xA;&lt;script&gt;&#xD;&#xA;(function() {&#xD;&#xA;  var src = document.getElementById(&#34;demo-c9e1e4cadf51119cb40d357b2fe4d93d-0-src&#34;).innerHTML;&#xD;&#xA;  var iframe = document.getElementById(&#34;demo-c9e1e4cadf51119cb40d357b2fe4d93d-0&#34;);&#xD;&#xA;  var doc = iframe.contentDocument || iframe.contentWindow.document;&#xD;&#xA;  doc.open();&#xD;&#xA;  doc.write(&#xD;&#xA;    &#39;&lt;!DOCTYPE html&gt;&lt;html&gt;&lt;head&gt;&lt;meta charset=&#34;utf-8&#34;&gt;&#39; +&#xD;&#xA;    &#39;&lt;style&gt;*{box-sizing:border-box}body{margin:0;display:flex;align-items:center;&#39; +&#xD;&#xA;    &#39;justify-content:center;min-height:200px;background:#faf8f5;&#39; +&#xD;&#xA;    &#39;font-family:system-ui,sans-serif}&lt;/style&gt;&lt;/head&gt;&lt;body&gt;&#39; +&#xD;&#xA;    src +&#xD;&#xA;    &#39;&lt;/body&gt;&lt;/html&gt;&#39;&#xD;&#xA;  );&#xD;&#xA;  doc.close();&#xD;&#xA;})();&#xD;&#xA;&lt;/script&gt;&#xD;&#xA;&lt;p&gt;一个渐变色文字动画：&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>About</title>
      <link>https://zhuoqidev.com/en/about/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/en/about/</guid>
      <description>AI Agent developer Liu ZhuoQi&amp;rsquo;s personal introduction</description>
      
    </item>
    
    <item>
      <title>Search</title>
      <link>https://zhuoqidev.com/en/search/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/en/search/</guid>
      <description>Search posts</description>
      
    </item>
    
    <item>
      <title>关于我</title>
      <link>https://zhuoqidev.com/about/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/about/</guid>
      <description>AI Agent 开发者刘卓琪的个人介绍</description>
      
    </item>
    
    <item>
      <title>搜索</title>
      <link>https://zhuoqidev.com/search/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://zhuoqidev.com/search/</guid>
      <description>搜索文章</description>
      
    </item>
    
  </channel>
</rss>
