<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>墨梅博客 - Tag: GitHub</title>
        <link>https://momei.app</link>
        <description>Momei Blog - AI-driven, natively internationalized developer blog platform.</description>
        <lastBuildDate>Sun, 29 Mar 2026 16:20:37 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>Momei Blog</generator>
        <language>en-US</language>
        <image>
            <title>墨梅博客 - Tag: GitHub</title>
            <url>https://momei.app/logo.png</url>
            <link>https://momei.app</link>
        </image>
        <copyright>© 2026 墨梅博客. All rights reserved.</copyright>
        <atom:link href="https://momei.app/feed/tag/github.xml" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Moymei Blog 1.11.0 Released & Lessons from Database Overusage | Week 13, 2026 Grassmei Weekly Report]]></title>
            <link>https://momei.app/en-US/posts/2026-13-caomei-weekly-momei-1-11-0-release-database-quota-lesson</link>
            <guid isPermaLink="false">https://momei.app/en-US/posts/2026-13-caomei-weekly-momei-1-11-0-release-database-quota-lesson</guid>
            <pubDate>Sun, 29 Mar 2026 16:20:37 GMT</pubDate>
            <description><![CDATA[The Strawberry Weekly Report shares the latest updates on the personal blog project "Ink Plum Blog." Version 1.11.0 has been released, introducing features such as third-party sync preview and voice input for the idea inbox, while continuously optimizing backend management, local...]]></description>
            <content:encoded><![CDATA[<p><img src="https://oss.cmyr.dev/momei-files/posts/674e975698004ad5/image/ai/20260330001638531-hucci2c.jpeg" alt="Moymei Blog 1.11.0 Released & Lessons from Database Overusage | Week 13, 2026 Grassmei Weekly Report" /></p><blockquote>
<p>This article is published and updated on <a href="https://blog.cmyr.ltd">CaoMeiYouRen’s Blog</a> and synchronized across multiple platforms. For updates, please refer to the version on the blog. You can also check the latest version via the <code>Original Link</code> at the end of the article.</p>
</blockquote>
<h2 id="foreword" tabindex="-1"><a class="header-anchor" href="#foreword">Foreword</a></h2>
<p>Welcome to the CaoMei Weekly! This is a weekly newsletter curated by CaoMeiYouRen with the help of AI, aiming to provide you with the latest blog updates, GitHub developments, personal updates, and recommendations from other weekly articles.</p>
<hr>
<h2 id="open-source-updates" tabindex="-1"><a class="header-anchor" href="#open-source-updates">Open-Source Updates</a></h2>
<p>This week, the development of <a href="https://github.com/CaoMeiYouRen/momei">Momei Blog</a> continues steadily.</p>
<blockquote>
<p>You can try it out on the Demo site: <a href="https://demo.momei.app/">https://demo.momei.app/</a></p>
<ul>
<li>Log in using the demo admin account with email <code>admin@example.com</code> and password <code>momei123456</code>.</li>
</ul>
<p>Or register on the official website: <a href="https://momei.app/">https://momei.app/</a></p>
<p>You can also visit the documentation site to learn about the project’s overall plan and future roadmap: <a href="https://docs.momei.app/">https://docs.momei.app/</a></p>
</blockquote>
<p>Momei Blog has officially released version <a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.11.0">1.11.0</a>. Below are some screenshots of the new pages and features.</p>
<p>The third-party synchronization feature has been optimized—now you can preview before syncing to third-party platforms.</p>
<p><img src="https://oss.cmyr.dev/images/20260329224052237.png" alt="image-20260329224045109"></p>
<p>Voice input has been added to the Inspiration Box.</p>
<p><img src="https://oss.cmyr.dev/images/20260329224646251.png" alt="image-20260329224646180"></p>
<p>For more features and pages, visit the <a href="https://momei.app/">official website</a> or check out screenshots in previous blog posts.</p>
<p>We welcome all users to try it out and share your feedback and suggestions.</p>
<p>Moving forward, development will continue according to the roadmap and to-do list—stay tuned!</p>
<p>Of course, Momei Blog still has many details to refine, and some features are not yet complete. If you have any feedback or suggestions, feel free to raise them in the project’s <a href="https://github.com/CaoMeiYouRen/momei/issues">GitHub issues</a>.</p>
<p>If you’re interested in Momei Blog, you’re welcome to participate in development and testing.</p>
<h2 id="a-lesson-learned-from-exceeding-database-quota" tabindex="-1"><a class="header-anchor" href="#a-lesson-learned-from-exceeding-database-quota">A Lesson Learned from Exceeding Database Quota</a></h2>
<p>A few days ago, I suddenly noticed that the Momei Blog was inaccessible. After checking the logs, I found the error: <code>Your project has exceeded the data transfer quota. Upgrade your plan to increase limits.</code> In other words, the database usage had exceeded its quota.</p>
<p>The project was previously using Neon’s free database (<a href="https://console.neon.tech/">Neon</a>), which has a monthly traffic limit of 5GB. Since the Momei Blog handles a relatively large amount of data transfer, it quickly exceeded the limit.</p>
<p>The most immediate consequence of exceeding the database quota was that the database became inaccessible, which directly caused the Momei Blog to go down.</p>
<p>When I tried to upgrade to a paid plan, I ran into another issue: <a href="https://vercel.com/">Vercel</a> doesn’t support UnionPay cards. After struggling for days, I finally resolved the problem by applying for a Visa card.</p>
<p>Here are a few key lessons I learned from this experience:</p>
<ol>
<li><strong>Free databases are convenient, but you must monitor usage closely</strong>—otherwise, you might only realize the problem after exceeding the quota.</li>
<li><strong>Always maintain off-site backups of your database</strong> to avoid being unable to recover quickly in case of downtime (this was the most painful lesson).</li>
<li><strong>Opt for a stable database solution</strong>, whether it’s a one-time payment or pay-as-you-go. Paid plans generally offer better reliability (and better SLAs) than free versions.</li>
</ol>
<blockquote>
<p>However, after estimating, the paid version would cost an extra $10 per month, which isn’t a trivial amount.</p>
<p>Since the database usage isn’t extremely high yet, the next step is to optimize traffic consumption and then switch back to the Free plan to reduce costs.</p>
</blockquote>
<p>For database backups, you can refer to <a href="https://github.com/CaoMeiYouRen/auto-backup-database">auto-backup-database</a>. It now supports backups for SQLite, MongoDB, PostgreSQL, MySQL, and more, with both local and remote (OSS) backup options.</p>
<h2 id="latest-github-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-repositories">Latest GitHub Repositories</a></h2>
<ul>
<li><a href="https://github.com/CaoMeiYouRen/auto-fix-github-security">auto-fix-github-security</a> - 2026-03-29 15:53:57<br>
An automated solution for fixing GitHub security alerts.</li>
</ul>
<h2 id="github-release" tabindex="-1"><a class="header-anchor" href="#github-release">GitHub Release</a></h2>
<h3 id="momei" tabindex="-1"><a class="header-anchor" href="#momei">momei</a></h3>
<h4 id="v1-11-0-2026-03-29-19-44-30" tabindex="-1"><a class="header-anchor" href="#v1-11-0-2026-03-29-19-44-30"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.11.0">v1.11.0</a> - 2026-03-29 19:44:30</a></h4>
<p>Summary:<br>
Version 1.11.0 was released on 2026-03-29. This update primarily includes new features, bug fixes, and code refactoring.</p>
<p><strong>New Features</strong>:</p>
<ul>
<li>Added system settings and theme customization for backend management.</li>
<li>Enhanced email template preview functionality and updated template content.</li>
<li>Fully implemented and improved Japanese localization support, including sync checks, content alignment, and documentation updates.</li>
<li>Added standalone Markdown formatting functionality.</li>
<li>Introduced dry-run and apply features for link governance.</li>
<li>For translations, added task polling mode, long-text polling support, and enhanced translation task handling, editor features, and workflow label progress display.</li>
<li>For article management, added content preview, Markdown rendering support, and WeChat sync compatibility checks.</li>
<li>For security, added dependency risk audit gating and replaced high-risk dependencies.</li>
<li>Additionally, optimized WeChat sync functionality, completed AI visual asset consolidation, and split and managed large localization files in the backend.</li>
</ul>
<p><strong>Bug Fixes</strong>:</p>
<ul>
<li>Fixed AI task result parsing logic.</li>
<li>Added test mode support for authentication, middleware, and boot processes to bypass related restrictions.</li>
<li>Updated dependencies and enhanced Markdown processing for WeChat sync.</li>
<li>Added fallback blocklist configuration for navigation.</li>
<li>Optimized async implementations in test cases.</li>
<li>Added pnpm audit command support for the security module.</li>
<li>Added WeChat sync and backup distribution features for article publishing.</li>
</ul>
<p><strong>Code Refactoring</strong>:</p>
<ul>
<li>Refactored the AI module, binding chat provider context.</li>
<li>Refactored translation AI logic in composable functions and extracted the runtime module.</li>
</ul>
<hr>
<h3 id="auto-backup-database" tabindex="-1"><a class="header-anchor" href="#auto-backup-database">auto-backup-database</a></h3>
<h4 id="v1-5-2-2026-03-29-12-34-47" tabindex="-1"><a class="header-anchor" href="#v1-5-2-2026-03-29-12-34-47"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.5.2">v1.5.2</a> - 2026-03-29 12:34:47</a></h4>
<p>Summary:<br>
Version 1.5.2 primarily includes the following fixes:</p>
<p><strong>Bug Fixes</strong></p>
<ul>
<li><strong>MySQL:</strong> Optimized dependencies and error messages for the MySQL backup tool.</li>
</ul>
<h4 id="v1-5-1-2026-03-28-01-42-05" tabindex="-1"><a class="header-anchor" href="#v1-5-1-2026-03-28-01-42-05"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.5.1">v1.5.1</a> - 2026-03-28 01:42:05</a></h4>
<p>Summary:<br>
This release is version 1.5.1, primarily containing a bug fix.</p>
<p><strong>Bug Fixes</strong></p>
<ul>
<li><strong>MySQL:</strong> Optimized backup support for MySQL databases.</li>
</ul>
<h4 id="v1-5-0-2026-03-26-15-16-55" tabindex="-1"><a class="header-anchor" href="#v1-5-0-2026-03-26-15-16-55"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.5.0">v1.5.0</a> - 2026-03-26 15:16:55</a></h4>
<p>Summary:<br>
This release, version 1.5.0, mainly introduces backup support for two additional databases. The specific updates are as follows:</p>
<ul>
<li><strong>Added MySQL database backup functionality.</strong></li>
<li><strong>Added PostgreSQL database backup functionality.</strong></li>
</ul>
<h2 id="latest-github-starred-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-starred-repositories">Latest GitHub Starred Repositories</a></h2>
<ul>
<li>
<p><a href="https://github.com/chenglou/pretext">CaoMeiYouRen starred pretext</a> - 2026-03-29 20:34:53<br>
This text describes a TypeScript project with 7,810 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/Crosstalk-Solutions/project-nomad">CaoMeiYouRen starred project-nomad</a> - 2026-03-28 20:40:19<br>
Project N.O.M.A.D is a standalone, offline survival computer that integrates essential tools, knowledge, and AI to provide information support and empowerment anytime, anywhere. The project is primarily developed in TypeScript and has received 19,510 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/tanweai/pua">CaoMeiYouRen starred pua</a> - 2026-03-28 20:40:09<br>
Anthropic has high expectations for a P8-level engineer, but the engineer is currently on a Performance Improvement Plan (PIP) and must demonstrate progress within 30 days. The engineer primarily uses TypeScript, and their project has received 13,161 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/wuji-labs/nopua">CaoMeiYouRen starred nopua</a> - 2026-03-28 20:39:59<br>
This skill unlocks AI potential through a caring approach. Previously, when using commands and threats, the AI would remain silent, conceal issues, and cause disruptions. After switching to a respectful, caring, and loving approach, the AI began communicating openly, stopped lying, and the number of discovered errors doubled. There is no fear in love. The skill is mainly developed in Python and has received 951 stars.</p>
</li>
<li>
<p><a href="https://github.com/vercel-labs/agent-browser">CaoMeiYouRen starred agent-browser</a> - 2026-03-28 20:17:27<br>
Browser automation CLI for AI agents is a tool developed in Rust, with 25,591 stars on GitHub.</p>
</li>
</ul>
<h2 id="other-blog-or-newsletter-recommendations" tabindex="-1"><a class="header-anchor" href="#other-blog-or-newsletter-recommendations">Other Blog or Newsletter Recommendations</a></h2>
<h3 id="ruan-yi-feng-s-web-log" tabindex="-1"><a class="header-anchor" href="#ruan-yi-feng-s-web-log">Ruan Yi Feng’s Web Log</a></h3>
<ul>
<li><a href="http://www.ruanyifeng.com/blog/2026/03/weekly-issue-390.html">Tech Enthusiast Weekly (Issue 390): Without Training Data, Large Models Are Just Dumb</a> - 2026-03-27 05:49:12</li>
</ul>
<h3 id="hellogithub-monthly" tabindex="-1"><a class="header-anchor" href="#hellogithub-monthly">HelloGitHub Monthly</a></h3>
<ul>
<li><a href="https://hellogithub.com/periodical/volume/120">HelloGitHub Issue 120</a> - 2026-03-27 08:08:31</li>
</ul>
<h3 id="a-cat-s-blog" tabindex="-1"><a class="header-anchor" href="#a-cat-s-blog">A Cat’s Blog</a></h3>
<ul>
<li><a href="https://ameow.xyz/archives/weekly-095">Catfish Weekly vol. 095: Beware of Cyber Possession</a> - 2026-03-29 22:16:45</li>
<li><a href="https://ameow.xyz/archives/secure-your-ssh-key-with-yubikey">Storing SSH Private Keys in YubiKey: A More Secure and Portable Key Management Solution</a> - 2026-03-27 02:48:38</li>
</ul>
<h3 id="trend-weekly" tabindex="-1"><a class="header-anchor" href="#trend-weekly">Trend Weekly</a></h3>
<ul>
<li><a href="https://weekly.tw93.fun/posts/261/">Issue 261 - Miss Spring</a> - 2026-03-23 08:00:00</li>
</ul>
<h3 id="erya-jiang-s-learning-weekly" tabindex="-1"><a class="header-anchor" href="#erya-jiang-s-learning-weekly">Erya Jiang’s Learning Weekly</a></h3>
<ul>
<li><a href="https://wiki.eryajf.net/pages/f71cfa/">Learning Weekly - Issue 256 - Week 13 of 2026</a> - 2026-03-26 21:32:25</li>
</ul>
<h2 id="summary" tabindex="-1"><a class="header-anchor" href="#summary">Summary</a></h2>
<p>This week’s updates and highlights are as shown above. Thank you for reading!</p>
<p>You can subscribe to Caomei Weekly updates via the following channels:</p>
<ul>
<li><strong>Blog</strong>: <a href="https://blog.cmyr.ltd">Caomei Youren’s Blog</a></li>
<li><strong>Momei Blog</strong>: <a href="https://momei.app">Momei Blog</a></li>
<li><strong>RSS</strong>: <a href="https://blog.cmyr.ltd/weekly.xml">Caomei Weekly</a></li>
<li><strong>WeChat Official Account</strong>: <a href="https://oss.cmyr.dev/images/20241025184516839-21n2ctv.png">Caomei Youren’s Backyard</a></li>
<li><strong>Email Subscription</strong>: <a href="https://listmonk.cmyr.dev/subscription/form">Caomei Youren’s Blog Subscription</a></li>
</ul>
<h2 id="past-reviews" tabindex="-1"><a class="header-anchor" href="#past-reviews">Past Reviews</a></h2>
<ul>
<li><a href="https://blog.cmyr.ltd/archives/2026-12-caomei-weekly-momei-1-10-0-release-ai-programming-workflow.html">Momei Blog 1.10.0 Released &amp; AI Programming Workflow Optimization | Caomei Weekly Issue 12, 2026</a> - 2026-03-22 22:51:32</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-11-caomei-weekly-momei-1-9-0-release-leancloud-shutdown-response.html">Momei Blog 1.9.0 Released &amp; LeanCloud Shutdown Response | Caomei Weekly Issue 11, 2026</a> - 2026-03-15 23:18:42</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-10-caomei-weekly-openclaw-ai-assistant-test-momei-blog-update.html">OpenClaw AI Assistant Hands-on Testing &amp; Momei Blog Updates | Caomei Weekly Issue 10, 2026</a> - 2026-03-08 23:52:49</li>
</ul>
]]></content:encoded>
            <author>草梅友仁</author>
            <category>Caomei Weekly</category>
            <enclosure length="1696173" type="audio/mpeg" url="https://oss.cmyr.dev/momei-files/posts/674e975698004ad5/audio/tts/20260330001931764-nqpsa27.mp3"/>
        </item>
        <item>
            <title><![CDATA[Momo Blog 1.10.0 Released with AI Programming Workflow Optimization | Grass & Berry Weekly Report, Week 12, 2026]]></title>
            <link>https://momei.app/en-US/posts/2026-12-caomei-weekly-momei-1-10-0-release-ai-programming-workflow</link>
            <guid isPermaLink="false">https://momei.app/en-US/posts/2026-12-caomei-weekly-momei-1-10-0-release-ai-programming-workflow</guid>
            <pubDate>Sun, 22 Mar 2026 16:19:34 GMT</pubDate>
            <description><![CDATA[This week's Strawberry Weekly Report primarily covers the progress of the Mumei Blog project and the author's reflections on AI programming. The Mumei Blog released version 1.10.0, introducing a Japanese interface, multilingual system configuration, optimized AI-generated cover l...]]></description>
            <content:encoded><![CDATA[<p>This article is published and updated on <a href="https://blog.cmyr.ltd">CaoMeiYouRen’s Blog</a> and synchronized across multiple platforms. For the latest updates, please refer to the version on the blog. You can also check the most recent version via the <code>Original Link</code> at the end of the article.</p>
<h2 id="introduction" tabindex="-1"><a class="header-anchor" href="#introduction">Introduction</a></h2>
<p>Welcome to the CaoMei Weekly! This is a weekly newsletter curated by CaoMeiYouRen with the help of AI, aiming to provide you with the latest blog updates, GitHub activities, personal updates, and recommendations from other newsletters.</p>
<hr>
<h2 id="open-source-updates" tabindex="-1"><a class="header-anchor" href="#open-source-updates">Open-Source Updates</a></h2>
<p>This week, the development of <a href="https://github.com/CaoMeiYouRen/momei">Momei Blog</a> continues to progress steadily.</p>
<blockquote>
<p>You can try it out on the Demo site: <a href="https://demo.momei.app/">https://demo.momei.app/</a></p>
<ul>
<li>Use the demo admin account with email <code>admin@example.com</code> and password <code>momei123456</code>.</li>
</ul>
<p>Or register on the official website: <a href="https://momei.app/">https://momei.app/</a></p>
<p>You can also visit the documentation site to learn about the project’s overall plan and future roadmap: <a href="https://docs.momei.app/">https://docs.momei.app/</a></p>
</blockquote>
<p>Momei Blog has officially released <a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.10.0">version 1.10.0</a>. Below are some screenshots of the new pages and features.</p>
<p>The logic for AI-generated covers has been optimized. Now, you can control the cover design across five dimensions: type, color scheme, rendering, text, and mood.</p>
<p><img src="https://oss.cmyr.dev/images/20260322223102544.png" alt="image-20260322220609431"></p>
<p>Added Japanese interface and documentation support.</p>
<p><img src="https://oss.cmyr.dev/images/20260322223110255.png" alt="image-20260322220802390"></p>
<p>Introduced a multi-language system configuration feature.</p>
<p><img src="https://oss.cmyr.dev/images/20260322223247896.png" alt="image-20260322220858795"></p>
<p>Added a custom email template feature.</p>
<p><img src="https://oss.cmyr.dev/images/20260322223311597.png" alt="image-20260322220931280"></p>
<p>For more features and pages, you can visit the <a href="https://momei.app/">official website</a> to experience them, or check out screenshots on the previous blog.</p>
<p>We welcome all users to try it out and provide feedback and suggestions.</p>
<p>Moving forward, development will continue according to the roadmap and to-do list—stay tuned.</p>
<p>Of course, Momei Blog still has many details to refine, and its features are not yet complete. If you have any feedback or suggestions, feel free to raise them in the project’s <a href="https://github.com/CaoMeiYouRen/momei/issues">GitHub issues</a>.</p>
<p>If you’re also interested in Momei Blog, you’re welcome to participate in development and testing.</p>
<h2 id="some-thoughts-on-ai-programming" tabindex="-1"><a class="header-anchor" href="#some-thoughts-on-ai-programming">Some Thoughts on AI Programming</a></h2>
<p>Recently, I optimized the AI workflow for the <a href="https://github.com/CaoMeiYouRen/momei">Momei Blog</a> project.</p>
<p>My experience is that code reviews are genuinely useful, so I added a <a href="https://github.com/CaoMeiYouRen/momei/blob/master/.github/agents/code-auditor.agent.md">Code Auditor</a> Agent specifically to audit any changes to code, documentation, or configurations—letting the AI review its own modifications.</p>
<p>Of course, an even better approach is to use different AI models for cross-reviewing to avoid the limitations of a single AI model (though the cost would also double).</p>
<p>Additionally, whenever there are new requirements or changes, the <a href="https://github.com/CaoMeiYouRen/momei/blob/master/.github/agents/product-manager.agent.md">Product Manager</a> Agent organizes the to-do list, and the <a href="https://github.com/CaoMeiYouRen/momei/blob/master/.github/agents/full-stack-master.agent.md">Full Stack Master</a> handles the actual code modifications.</p>
<p>However, I believe the foundation still lies in linting, type checking, and testing. Adding reviews on top of these ensures the quality of every code change.</p>
<p>AI programming has increased code output speed tenfold, but it has also accelerated bug generation at the same rate. As a result, stricter code quality control is now essential to ensure project code quality.</p>
<h2 id="github-release" tabindex="-1"><a class="header-anchor" href="#github-release">GitHub Release</a></h2>
<h3 id="momei" tabindex="-1"><a class="header-anchor" href="#momei">momei</a></h3>
<h4 id="v1-10-0-2026-03-21-20-18-09" tabindex="-1"><a class="header-anchor" href="#v1-10-0-2026-03-21-20-18-09"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.10.0">v1.10.0</a> - 2026-03-21 20:18:09</a></h4>
<p>Summary:<br>
Version 1.10.0 primarily focuses on multilingual support, AI feature enhancements, and system optimizations.</p>
<p><strong>New Features</strong>: Added multilingual support (especially Japanese) for AI draft generation, audio/cover assets, email templates, and other modules. Introduced features like article navigation, floating action buttons, import path validation, and Listmonk notification integration. Additionally, improved authentication sessions, content distribution, settings management, and translation workflows.</p>
<p><strong>Bug Fixes</strong>: Resolved issues with internationalized log output, Sentry configuration access, settings level parsing, third-party toggle boolean handling, and article synchronization support. Optimized database table structures, import path processing, and cover field handling.</p>
<p><strong>Code Refactoring</strong>: Enhanced agent role responsibilities, AI text processing, and image upload logic. Improved audio metadata handling and document inspection output methods. Adjusted rate-limiting configurations, log outputs, script governance mechanisms, and task standardization.</p>
<h2 id="latest-github-starred-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-starred-repositories">Latest GitHub Starred Repositories</a></h2>
<ul>
<li><a href="https://github.com/github/awesome-copilot">CaoMeiYouRen starred awesome-copilot</a> - 2026-03-19 22:34:27<br>
The GitHub Copilot community provides user-contributed instructions, agents, skills, and configurations to help users better utilize the tool. These resources primarily focus on the Python language and currently have 26,454 stars.</li>
<li><a href="https://github.com/sanyuan0704/sanyuan-skills">CaoMeiYouRen starred sanyuan-skills</a> - 2026-03-19 14:23:14<br>
This repository specializes in expert-level Python code review skills, covering key aspects such as SOLID principles, security, performance, error handling, and edge cases. The project has garnered 2,818 stars on GitHub, indicating its high recognition and practicality within the developer community.</li>
<li><a href="https://github.com/CaoMeiYouRen/auto-backup-database">CaoMeiYouRen starred auto-backup-database</a> - 2026-03-18 19:16:18<br>
This solution provides automatic backup functionality for server databases, supporting both local and remote backup methods. The project is primarily developed in TypeScript and currently has 3 stars on the code hosting platform.</li>
<li><a href="https://github.com/hexianWeb/Third-Person-MC">CaoMeiYouRen starred Third-Person-MC</a> - 2026-03-16 17:06:54<br>
The Minecraft official website may showcase a design style from 2030. The site is mainly developed in JavaScript and currently has 84 stars.</li>
</ul>
<h2 id="other-blog-or-newsletter-recommendations" tabindex="-1"><a class="header-anchor" href="#other-blog-or-newsletter-recommendations">Other Blog or Newsletter Recommendations</a></h2>
<h3 id="ruan-yifeng-s-network-log" tabindex="-1"><a class="header-anchor" href="#ruan-yifeng-s-network-log">Ruan YiFeng’s Network Log</a></h3>
<ul>
<li><a href="http://www.ruanyifeng.com/blog/2026/03/kimi-cursor.html">Does a Wrapper Around a Chinese Large Model Support a $50 Billion Valuation? Unpacking the “Wrapper” Controversy of Cursor</a> - 2026-03-21 18:19:11</li>
<li><a href="http://www.ruanyifeng.com/blog/2026/03/weekly-issue-389.html">Tech Enthusiast Weekly (Issue 389): How to Hire Programmers in the Future</a> - 2026-03-20 07:59:16</li>
</ul>
<h3 id="trend-weekly" tabindex="-1"><a class="header-anchor" href="#trend-weekly">Trend Weekly</a></h3>
<ul>
<li><a href="https://weekly.tw93.fun/posts/260/">Issue 260 - Visiting Taiziwan</a> - 2026-03-16 08:00:00</li>
</ul>
<h3 id="erya-s-learning-weekly" tabindex="-1"><a class="header-anchor" href="#erya-s-learning-weekly">Erya’s Learning Weekly</a></h3>
<ul>
<li><a href="https://wiki.eryajf.net/pages/5f9192/">Learning Weekly - Issue 255 - Week 12 of 2026</a> - 2026-03-19 22:42:43</li>
</ul>
<h2 id="summary" tabindex="-1"><a class="header-anchor" href="#summary">Summary</a></h2>
<p>This week’s updates and highlights are as shown above. Thank you for reading!<br>
You can subscribe to Caomei Weekly through the following channels:</p>
<ul>
<li><strong>Blog</strong>: <a href="https://blog.cmyr.ltd">Caomei Youren’s Blog</a></li>
<li><strong>Momei Blog</strong>: <a href="https://momei.app">Momei Blog</a></li>
<li><strong>RSS</strong>: <a href="https://blog.cmyr.ltd/weekly.xml">Caomei Weekly</a></li>
<li><strong>WeChat Official Account</strong>: <a href="https://oss.cmyr.dev/images/20241025184516839-21n2ctv.png">Caomei Youren’s Backyard</a></li>
<li><strong>Email Subscription</strong>: <a href="https://listmonk.cmyr.dev/subscription/form">Caomei Youren’s Blog Subscription</a></li>
</ul>
<h2 id="past-issues" tabindex="-1"><a class="header-anchor" href="#past-issues">Past Issues</a></h2>
<ul>
<li><a href="https://blog.cmyr.ltd/archives/2026-11-caomei-weekly-momei-1-9-0-release-leancloud-shutdown-response.html">Momei Blog 1.9.0 Release &amp; LeanCloud Shutdown Response | 2026 Week 11 Caomei Weekly</a> - 2026-03-15 23:18:42</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-10-caomei-weekly-openclaw-ai-assistant-test-momei-blog-update.html">OpenClaw AI Assistant Hands-on Review &amp; Momei Blog Updates | 2026 Week 10 Caomei Weekly</a> - 2026-03-08 23:52:49</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-09-caomei-weekly-momei-1-7-0-release-ai-development.html">Momei Blog 1.7.0 Release &amp; AI Development Practices | 2026 Week 9 Caomei Weekly</a> - 2026-03-01 23:22:02</li>
</ul>
]]></content:encoded>
            <author>草梅友仁</author>
            <category>Caomei Weekly</category>
            <enclosure url="https://oss.cmyr.dev/momei-files/image/ai/20260322161121462-l2iic0x.jpeg" length="0" type="image/jpeg"/>
        </item>
        <item>
            <title><![CDATA[Ink Plum Blog 1.9.0 Release and LeanCloud Service Shutdown Response | Week 11 2026 Grass Plum Weekly Report]]></title>
            <link>https://momei.app/en-US/posts/2026-11-caomei-weekly-momei-1-9-0-release-leancloud-shutdown-response</link>
            <guid isPermaLink="false">https://momei.app/en-US/posts/2026-11-caomei-weekly-momei-1-9-0-release-leancloud-shutdown-response</guid>
            <pubDate>Sun, 15 Mar 2026 16:11:55 GMT</pubDate>
            <description><![CDATA[Momei Blog released version 1.9.0, featuring new support for Traditional Chinese and Korean, an intelligent hybrid mode for the backend, a friend link system, and more. In response to LeanCloud's service discontinuation, the author developed `hexo-cloudflare-counter`, a Hexo page...]]></description>
            <content:encoded><![CDATA[<p><img src="https://oss.cmyr.dev/momei-files/posts/673deced51f70b89/image/ai/20260317013223591-y69lgix.jpeg" alt="Ink Plum Blog 1.9.0 Release and LeanCloud Service Shutdown Response | Week 11 2026 Grass Plum Weekly Report" /></p><blockquote>
<p>This article is published and updated on <a href="https://blog.cmyr.ltd">CaoMeiYouRen’s Blog</a> and synchronized across multiple platforms. For any updates, the version on the blog shall prevail. You can also check the latest version via the <code>Original Link</code> at the end of the article.</p>
</blockquote>
<h2 id="preface" tabindex="-1"><a class="header-anchor" href="#preface">Preface</a></h2>
<p>Welcome to CaoMei Weekly! This is a weekly newsletter curated by CaoMeiYouRen using AI, aiming to provide you with the latest blog updates, GitHub activities, personal updates, and recommendations from other newsletters.</p>
<hr>
<h2 id="open-source-updates" tabindex="-1"><a class="header-anchor" href="#open-source-updates">Open-Source Updates</a></h2>
<p>Development of <a href="https://github.com/CaoMeiYouRen/momei">Momei Blog</a> continues steadily this week.</p>
<blockquote>
<p>You can try the demo site here: <a href="https://demo.momei.app/">https://demo.momei.app/</a></p>
<ul>
<li>Use the demo admin account with email <code>admin@example.com</code> and password <code>momei123456</code>.</li>
</ul>
<p>Or register on the official website: <a href="https://momei.app/">https://momei.app/</a></p>
<p>You can also visit the documentation site to learn about the project’s overall plan and future roadmap: <a href="https://docs.momei.app/">https://docs.momei.app/</a></p>
</blockquote>
<p>Momei Blog has officially released <a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.9.0">version 1.9.0</a>. Below are some screenshots of the new pages and features.</p>
<p>For internationalization, Traditional Chinese and Korean support have been added, along with optimizations for tag translation cluster mappings and other key issues.</p>
<p><img src="https://oss.cmyr.dev/images/20260315231414937.png" alt="image-20260315225756692"></p>
<p><img src="https://oss.cmyr.dev/images/20260315231418784.png" alt="image-20260315225811383"></p>
<p>Improved environment variables and database configuration experience, with a new “Smart Hybrid Mode” added to the backend settings page.</p>
<p><img src="https://oss.cmyr.dev/images/20260315231421271.png" alt="image-20260315230115462"></p>
<p>Added a friend link system and friend link management.</p>
<p><img src="https://oss.cmyr.dev/images/20260315230317084.png" alt="image-20260315230316884"></p>
<p>Additionally, features such as <code>Migration Link Governance</code>, <code>CLI/MCP Automation Capability Expansion</code>, <code>Protocol Version Governance &amp; Compliance Display</code>, and <code>Universal Text Field Voice Input</code> have been introduced. For more updates, check the <a href="https://github.com/CaoMeiYouRen/momei/blob/master/CHANGELOG.md">CHANGELOG</a>.</p>
<p>More features and pages can be experienced on the <a href="https://momei.app/">official website</a>, or you can view screenshots from previous blog posts.</p>
<p>We welcome all users to try it out and provide feedback and suggestions.</p>
<p>Moving forward, development will continue according to the roadmap and backlog—stay tuned!</p>
<p>Of course, Momei Blog still has many details to refine, and features are not yet complete. If you have any suggestions or feedback, feel free to raise them in the project’s <a href="https://github.com/CaoMeiYouRen/momei/issues">GitHub issues</a>.</p>
<p>If you’re also interested in Momei Blog, you’re welcome to contribute to development and testing.</p>
<h2 id="impact-of-leancloud-shutdown" tabindex="-1"><a class="header-anchor" href="#impact-of-leancloud-shutdown">Impact of LeanCloud Shutdown</a></h2>
<p><img src="https://oss.cmyr.dev/images/20260315231423844.png" alt="image-20260315230801380"></p>
<p>Today, I suddenly learned that LeanCloud is shutting down.</p>
<p>It’s quite nostalgic—I used LeanCloud a lot when I first started working on projects, simply because it was a free cloud database.</p>
<p>But now it’s gone, which reinforces the idea that when choosing a cloud server/database provider, it’s best to go with a major player for stability.</p>
<p>That said, my stance remains the same: cloud services can be supported, but they shouldn’t be the only option.</p>
<p>In other words, always have a backup plan—be ready to fall back from cloud services to standalone/local deployment at any time. For example, using hono.js for isomorphic cloud function and monolithic applications makes migration easier.</p>
<p>Avoid tech stacks locked into a single vendor—maintain autonomy.</p>
<p>Since my previous blog still uses LeanCloud for visitor statistics, I took some time recently to develop a LeanCloud-compatible backend API service called <a href="https://github.com/CaoMeiYouRen/hexo-cloudflare-counter">hexo-cloudflare-counter</a>. Feel free to check it out if needed.</p>
<p>hexo-cloudflare-counter is a Hexo pageview counter backend service compatible with LeanCloud Counter API, supporting Cloudflare Workers, Docker, and Node.js self-hosting, with built-in D1/SQLite storage solutions.</p>
<p>When using it, simply replace the original LeanCloud backend API address with your self-deployed <code>hexo-cloudflare-counter</code> backend API address. For details, refer to the project documentation.</p>
<h2 id="latest-github-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-repositories">Latest GitHub Repositories</a></h2>
<ul>
<li><a href="https://github.com/CaoMeiYouRen/hexo-cloudflare-counter">hexo-cloudflare-counter</a> - 2026-03-15 02:24:39<br>
A Hexo pageview counter backend service compatible with LeanCloud Counter API, supporting Cloudflare Workers, Docker, and Node.js self-hosting, with built-in D1/SQLite storage solutions.</li>
</ul>
<h2 id="github-releases" tabindex="-1"><a class="header-anchor" href="#github-releases">GitHub Releases</a></h2>
<h3 id="momei" tabindex="-1"><a class="header-anchor" href="#momei">momei</a></h3>
<h4 id="-v1-9-0-https-ai-address-for-details-refer-to-the-project-documentation-" tabindex="-1"><a class="header-anchor" href="#-v1-9-0-https-ai-address-for-details-refer-to-the-project-documentation-">[v1.9.0](<a href="https://AI">https://AI</a> address. For details, refer to the project documentation.</a></h4>
<h2 id="latest-github-repositories-1" tabindex="-1"><a class="header-anchor" href="#latest-github-repositories-1">Latest GitHub Repositories</a></h2>
<ul>
<li><a href="https://github.com/CaoMeiYouRen/hexo-cloudflare-counter">hexo-cloudflare-counter</a> - 2026-03-15 02:24:39<br>
A Hexo pageview counter backend service compatible with LeanCloud Counter API, supporting Cloudflare Workers, Docker, and Node.js self-hosting. Built-in D1/SQLite storage solution.</li>
</ul>
<h2 id="github-releases-1" tabindex="-1"><a class="header-anchor" href="#github-releases-1">GitHub Releases</a></h2>
<h3 id="momei-1" tabindex="-1"><a class="header-anchor" href="#momei-1">momei</a></h3>
<h4 id="v1-9-0-2026-03-14-21-57-46" tabindex="-1"><a class="header-anchor" href="#v1-9-0-2026-03-14-21-57-46"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.9.0">v1.9.0</a> - 2026-03-14 21:57:46</a></h4>
<p>Summary:<br>
Version 1.9.0 primarily focuses on enhancements to AI features, internationalization expansion, friend link management, notification systems, article management, and upload functionality.</p>
<p><strong>New Features</strong>:<br>
The AI module now includes task details, cost estimation, quota management, expense governance, translation tasks, and alert evaluation. For internationalization, full support for Traditional Chinese and Korean has been added, covering emails and UI translations. Friend link management now includes application, monitoring, and health status checks. The notification system introduces Web Push functionality with configurable settings and key generation. Article management now supports pinning, version control, translation tasks, and copyright declarations. Upload functionality now supports direct and proxy upload strategies. Additionally, features like theme color management, configuration audit logs, feedback pages, site name configuration, “Kaiwang” integration, and universal text-to-speech input have been implemented.</p>
<p><strong>Bug Fixes</strong>:<br>
Fixed issues such as AI currency formatting precision, direct upload file size and signature validation, internationalization module loading, and settings form validation logic. Enhanced friend link inspection, audit logs, notification management interfaces, and standardized language identifiers.</p>
<p><strong>Code Refactoring</strong>:<br>
Optimized and refactored modules like AI task result handling, notification link parsing, settings form fields, upload request processing, and type conversion functions to improve code quality and maintainability.</p>
<h3 id="eslint-config-cmyr" tabindex="-1"><a class="header-anchor" href="#eslint-config-cmyr">eslint-config-cmyr</a></h3>
<h4 id="v2-1-5-2026-03-15-02-42-18" tabindex="-1"><a class="header-anchor" href="#v2-1-5-2026-03-15-02-42-18"><a href="https://github.com/CaoMeiYouRen/eslint-config-cmyr/releases/tag/v2.1.5">v2.1.5</a> - 2026-03-15 02:42:18</a></h4>
<p>Summary:<br>
This version update primarily includes a bug fix.</p>
<p><strong>Bug Fix</strong>:</p>
<ul>
<li>Updated file matching rules in <code>index</code> to apply only to TypeScript files, resolving previous potential over-scoping issues.</li>
</ul>
<h3 id="hexo-cloudflare-counter" tabindex="-1"><a class="header-anchor" href="#hexo-cloudflare-counter">hexo-cloudflare-counter</a></h3>
<h4 id="service-v1-1-0-2026-03-15-19-42-28" tabindex="-1"><a class="header-anchor" href="#service-v1-1-0-2026-03-15-19-42-28"><a href="https://github.com/CaoMeiYouRen/hexo-cloudflare-counter/releases/tag/service-v1.1.0">service-v1.1.0</a> - 2026-03-15 19:42:28</a></h4>
<p>Summary:<br>
Version 1.1.0 Highlights</p>
<p>This release includes the following updates:</p>
<p><strong>New Features</strong></p>
<ul>
<li>Added CORS (Cross-Origin Resource Sharing) support to the application and implemented security controls for write requests.</li>
</ul>
<p><strong>Bug Fixes</strong></p>
<ul>
<li>Updated the <code>read-yaml-file</code> dependency version.</li>
</ul>
<h4 id="service-v1-0-0-2026-03-15-18-48-54" tabindex="-1"><a class="header-anchor" href="#service-v1-0-0-2026-03-15-18-48-54"><a href="https://github.com/CaoMeiYouRen/hexo-cloudflare-counter/releases/tag/service-v1.0.0">service-v1.0.0</a> - 2026-03-15 18:48:54</a></h4>
<p>Summary:<br>
Version 1.0.0 (2026-03-15) Highlights</p>
<p>This release marks version 1.0.0, featuring new functionalities, bug fixes, and code refactoring.</p>
<p><strong>New Features</strong></p>
<ul>
<li>Counter Module: Added ObjectId generation functionality.</li>
<li>Migration Module: Added scripts to migrate LeanCloud Counter JSONL data to SQLite databases.</li>
<li>Migration Module: Added support for migrating to Cloudflare D1 databases.</li>
<li>Server Module: Added counter service and related database support.</li>
</ul>
<p><strong>Bug Fixes</strong></p>
<ul>
<li>Repository Module: Optimized database schema initialization logic.</li>
</ul>
<p><strong>Code Refactoring</strong></p>
<ul>
<li>Counter Module: Improved ObjectId generation logic.</li>
<li>Migration Module: Optimized D1 database SQL statement generation logic.</li>
<li>Migration Module: Improved LeanCloud counter migration scripts.</li>
<li>Migration Module: Enhanced file path comparison functions.</li>
</ul>
<h3 id="auto-backup-database" tabindex="-1"><a class="header-anchor" href="#auto-backup-database">auto-backup-database</a></h3>
<h4 id="v1-4-0-2026-03-15-01-57-35" tabindex="-1"><a class="header-anchor" href="#v1-4-0-2026-03-15-01-57-35"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.4.0">v1.4.0</a> - 2026-03-15 01:57:35</a></h4>
<p>Summary:<br>
Version 1.4.0 introduces the following major updates:</p>
<p><strong>New Features</strong></p>
<ul>
<li><strong>Backup Optimization</strong>: Each time a local compressed backup is performed, an independent directory is now created for the backup file. This improvement aims to prevent accidental overwriting of historical backup files due to identical filenames.</li>
</ul>
<h4 id="v1-3-0-2026-03-15-01-24-30" tabindex="-1"><a class="header-anchor" href="#v1-3-0-2026-03-15-01-24-30"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.3.0">v1.3.0</a> - 2026-03-15 01:24:30</a></h4>
<p>Summary:<br>
Key updates in Version 1.3.0</p>
<p><strong>New Features</strong></p>
<ul>
<li>Backup Functionality: Now supports processing and uploading multiple backup output paths.</li>
<li>Database Support: Added MongoDB as a new database provider.</li>
<li>Documentation: Included relevant documentation and configuration examples for MongoDB support.</li>
</ul>
<p><strong>Bug Fixes</strong></p>
<ul>
<li>MongoDB: Optimized backup parameter construction and error handling.</li>
</ul>
<h2 id="latest-github-starred-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-starred-repositories">Latest GitHub Starred Repositories</a></h2>
<ul>
<li>
<p><a href="https://github.com/CaoMeiYouRen/hexo-cloudflare-counter">CaoMeiYouRen starred hexo-cloudflare-counter</a> - 2026-03-15 20:15:59<br>
A TypeScript-based backend service for Hexo blog view count statistics. It is compatible with the LeanCloud Counter API, providing article view tracking functionality. The service supports multiple deployment methods, including running on Cloudflare Workers, Docker containerization, and traditional self-hosting via Node.js. The project includes built-in D1 and SQLite as lightweight database storage solutions, simplifying data persistence configuration.</p>
</li>
<li>
<p><a href="https://github.com/changesets/changesets">CaoMeiYouRen starred changesets</a> - 2026-03-15 13:55:32<br>
A tool focused on version control and changelog management, particularly suited for monorepos. Its primary programming language is TypeScript, and it has garnered 11,545 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/alibaba/page-agent">CaoMeiYouRen starred page-agent</a> - 2026-03-13 16:43:55<br>
JavaScript in-page GUI agent is a TypeScript-based project that allows users to control web interfaces using natural language. The project has received 8,731 stars on GitHub, indicating significant community interest.</p>
</li>
<li>
<p><a href="https://github.com/chenhg5/cc-connect">CaoMeiYouRen starred cc-connect</a> - 2026-03-13 16:24:14<br>
This project, developed in Go, bridges local AI programming assistants with mainstream instant messaging platforms. Users can interact with AI development assistants via platforms like Feishu, DingTalk, and Slack without requiring a public IP for most platforms. The project has surpassed 1,400 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/JimLiu/baoyu-skills">CaoMeiYouRen starred baoyu-skills</a> - 2026-03-12 09:34:19<br>
No description is available for this project. Its primary programming language is TypeScript, and it has 9,001 stars on the code hosting platform.</p>
</li>
</ul>
<h2 id="other-blog-or-newsletter-recommendations" tabindex="-1"><a class="header-anchor" href="#other-blog-or-newsletter-recommendations">Other Blog or Newsletter Recommendations</a></h2>
<h3 id="ruan-yifeng-s-blog" tabindex="-1"><a class="header-anchor" href="#ruan-yifeng-s-blog">Ruan YiFeng’s Blog</a></h3>
<ul>
<li><a href="http://www.ruanyifeng.com/blog/2026/03/weekly-issue-388.html">Tech Enthusiast Weekly (Issue 388): Testing is the New Moat</a> - 2026-03-13 07:59:16</li>
<li><a href="http://www.ruanyifeng.com/blog/2026/03/arkclaw.html">Zero-Install “Cloud Shrimp Farming”: ArkClaw User Guide</a> - 2026-03-12 16:01:06</li>
</ul>
<h3 id="a-cat-s-blog" tabindex="-1"><a class="header-anchor" href="#a-cat-s-blog">A Cat’s Blog</a></h3>
<ul>
<li><a href="https://ameow.xyz/archives/weekly-094">Catfish Weekly vol. 094: The Lobster Leap Forward</a> - 2026-03-09 00:33:29</li>
</ul>
<h3 id="trend-weekly" tabindex="-1"><a class="header-anchor" href="#trend-weekly">Trend Weekly</a></h3>
<ul>
<li><a href="https://weekly.tw93.fun/posts/260/">Issue 260 - A Trip to Taiziwan</a> - 2026-03-16 08:00:00</li>
</ul>
<h3 id="erya-s-learning-weekly" tabindex="-1"><a class="header-anchor" href="#erya-s-learning-weekly">Erya’s Learning Weekly</a></h3>
<ul>
<li><a href="https://wiki.eryajf.net/pages/41978b/">Learning Weekly - Issue 254 - Week 11 of 2026</a> - 2026-03-12 20:31:11</li>
</ul>
<h2 id="summary" tabindex="-1"><a class="header-anchor" href="#summary">Summary</a></h2>
<p>This week’s updates and highlights are as shown above. Thank you for reading!<br>
You can subscribe to Caomei Weekly updates through the following channels:</p>
<ul>
<li><strong>Blog</strong>: <a href="https://blog.cmyr.ltd">Caomei Youren’s Blog</a></li>
<li><strong>Momei Blog</strong>: <a href="https://momei.app">Momei Blog</a></li>
<li><strong>RSS</strong>: <a href="https://blog.cmyr.ltd/weekly.xml">Caomei Weekly</a></li>
<li><strong>WeChat Official Account</strong>: <a href="https://oss.cmyr.dev/images/20241025184516839-21n2ctv.png">Caomei Youren’s Backyard</a></li>
<li><strong>Email Subscription</strong>: <a href="https://listmonk.cmyr.dev/subscription/form">Caomei Youren’s Blog Subscription</a></li>
</ul>
<h2 id="past-issues" tabindex="-1"><a class="header-anchor" href="#past-issues">Past Issues</a></h2>
<ul>
<li><a href="https://blog.cmyr.ltd/archives/2026-10-caomei-weekly-openclaw-ai-assistant-test-momei-blog-update.html">OpenClaw AI Assistant Hands-On Test &amp; Momei Blog Updates | Caomei Weekly Issue 10 of 2026</a> - 2026-03-08 23:52:49</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-09-caomei-weekly-momei-1-7-0-release-ai-development.html">Momei Blog 1.7.0 Release &amp; AI Development Practices | Caomei Weekly Issue 9 of 2026</a> - 2026-03-01 23:22:02</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-06-caomei-weekly-momei-1-4-0-release-open-source-updates.html">Momei Blog 1.4.0 Release &amp; Open-Source Updates | Caomei Weekly Issue 6 of 2026</a> - 2026-02-08 21:17:40</li>
</ul>
]]></content:encoded>
            <author>草梅友仁</author>
            <category>Caomei Weekly</category>
            <enclosure length="757101" type="audio/mpeg" url="https://oss.cmyr.dev/momei-files/posts/673c90cad2404ac2/audio/tts/20260316172052853-krstoe3.mp3"/>
        </item>
        <item>
            <title><![CDATA[OpenClaw AI Assistant Hands-On Testing and Ink Plum Blog Updates | Week 10 Strawberry Weekly Report 2026]]></title>
            <link>https://momei.app/en-US/posts/2026-10-caomei-weekly-openclaw-ai-assistant-test-momei-blog-update</link>
            <guid isPermaLink="false">https://momei.app/en-US/posts/2026-10-caomei-weekly-openclaw-ai-assistant-test-momei-blog-update</guid>
            <pubDate>Sun, 08 Mar 2026 17:19:59 GMT</pubDate>
            <description><![CDATA[This week's report discusses the trending AI tool OpenClaw, highlighting its high installation barriers, significant security risks, and expensive operational costs, recommending cautious use in isolated environments. The author shares progress on their personal project, the Ink...]]></description>
            <content:encoded><![CDATA[<p><img src="https://oss.cmyr.dev/momei-files/posts/67361e2cb4308104/image/ai/20260317005124982-nuuo98n.jpeg" alt="OpenClaw AI Assistant Hands-On Testing and Ink Plum Blog Updates | Week 10 Strawberry Weekly Report 2026" /></p><blockquote>
<p>This article is published and updated on <a href="https://blog.cmyr.ltd">Cao Mei You Ren’s Blog</a> and synchronized across multiple platforms. For any updates, the version on the blog takes precedence. You can also check the latest version via the <code>Original Link</code> at the end of the article.</p>
</blockquote>
<h2 id="foreword" tabindex="-1"><a class="header-anchor" href="#foreword">Foreword</a></h2>
<p>Welcome to Cao Mei Weekly! This is an AI-curated newsletter by Cao Mei You Ren, aiming to provide you with the latest blog updates, GitHub activities, personal updates, and recommendations from other weekly publications.</p>
<hr>
<p>This week, I’d like to talk about <a href="https://docs.openclaw.ai/zh-CN">OpenClaw</a> (jokingly referred to as the “crayfish” by netizens), which has been making waves in the community lately. I jumped on the bandwagon myself, tinkering with it from installation to hands-on testing, and I have some very practical insights to share with you all.</p>
<p><img src="https://oss.cmyr.dev/images/20260308233639294.png" alt="image-20260308231633288"></p>
<p>OpenClaw is indeed popular, but honestly, its “entry barrier” isn’t low. While the <a href="https://docs.openclaw.ai/zh-CN/install/docker">Docker image</a> simplifies the installation process significantly, configuring and successfully running it still took me quite some time.</p>
<p>Additionally, as a programmer, I must warn everyone: this thing poses real security risks.</p>
<p>Every time you integrate a plugin (such as connecting to QQ or Weibo), you’re essentially opening a new backdoor for yourself. If you plan to add it to group chats or allow multiple people to share access, even a slight misstep in permission control could render the entire environment uncontrollable. My suggestion is to set up a clean, isolated server environment dedicated solely to running OpenClaw—don’t experiment recklessly on production machines or local computers storing sensitive data. Even locally, try using a virtual machine or spare device. There’s no need to risk your assets just for novelty’s sake.</p>
<blockquote>
<p>Weibo plugin details: <a href="https://gitee.com/wecode-ai/openclaw-weibo">https://gitee.com/wecode-ai/openclaw-weibo</a><br>
QQ plugin details: <a href="https://q.qq.com/qqbot/openclaw/login.html">https://q.qq.com/qqbot/openclaw/login.html</a></p>
</blockquote>
<p>Another practical issue is—it’s incredibly “token-hungry.” Without a programming-related subscription plan, relying solely on pay-as-you-go pricing makes the cost unbearable for average users. Currently, AI assistants are more like high-powered automation tools—great at scripting and optimizing workflows, freeing us from repetitive tasks. But they’re far from invincible; the steering wheel remains firmly in your hands.</p>
<blockquote>
<p>If you’re serious about subscribing, check out: <a href="https://platform.minimaxi.com/subscribe/coding-plan?code=5iSHX5t4Ga&amp;source=link">MiniMax Coding Plan</a>, <a href="https://www.bigmodel.cn/glm-coding?ic=NJ9DBPHI9O">GLM Coding Plan</a></p>
</blockquote>
<p>This week, development on <a href="https://github.com/CaoMeiYouRen/momei">Mo Mei Blog</a> has also progressed steadily.</p>
<p>The main focus this week was adding commercialization and ad network integration, now supporting Google AdSense or domestic ad networks like Baidu and Tencent to generate revenue.</p>
<p><img src="https://oss.cmyr.dev/images/20260308233658019.png" alt="image-20260308232836805"></p>
<p>Added support for the ActivityPub protocol, enabling social federation.</p>
<p>Additionally, for ASR (Automatic Speech Recognition), frontend direct connection via Volcano Engine was implemented, allowing speech recognition without backend bridging—resulting in faster response times.</p>
<p><img src="https://oss.cmyr.dev/images/20260308233700343.png" alt="image-20260308233327795"></p>
<p>After extensively using various AI tools lately, my stance remains unchanged: models determine the ceiling, tools determine the floor.</p>
<p>Whether it’s command-line interfaces or editor integrations, tools define the “lower bound” of collaboration, but the AI model’s capabilities directly dictate the “upper bound” of outcomes.</p>
<p>I’ve experimented with letting AI (e.g., GLM-5) handle coding entirely—while it’s impressively powerful, errors still accumulate over iterations in large, complex projects.</p>
<p>Without rigorous human review, these minor bugs can snowball into major issues. So my conclusion stands: AI is a powerful copilot, but the destination and route must always be human-driven.</p>
<p>In short: models set the ceiling, tools set the floor, and humans guard the baseline.</p>
<p>Finally, some random thoughts.</p>
<p>The explosion of large models in recent months has left many friends inside and outside the tech circle feeling anxious. This sentiment started brewing as early as late 2022.</p>
<p>But lately, I’ve found some peace with it. At its core, AI remains confined to processing tasks within computers—it can tirelessly write code but can’t decide the soul of your creation. In this era where everything can be AI-generated, if you’re not steering your project’s direction yourself, your existence as a developer loses meaning.</p>
<p>Therefore, to avoid being phased out prematurely, we must leverage these tools to focus on more creative tasks. The time saved should be invested in higher-level thinking.</p>
<p>That’s all for now. See you next time, bye~</p>
<h2 id="latest-github-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-repositories">Latest GitHub Repositories</a></h2>
<ul>
<li><a href="https://github.com/CaoMeiYouRen/rss-impact-next">rss-impact-next</a> - 2026-03-04 23:54:06<br>
An RSS-based Hook system. This project is a full-stack refactored version.</li>
</ul>
<h2 id="github-releases" tabindex="-1"><a class="header-anchor" href="#github-releases">GitHub Releases</a></h2>
<h3 id="rsshub-never-die" tabindex="-1"><a class="header-anchor" href="#rsshub-never-die">rsshub-never-die</a></h3>
<h4 id="v1-3-1-2026-03-03-20-39-25" tabindex="-1"><a class="header-anchor" href="#v1-3-1-2026-03-03-20-39-25"><a href="https://github.com/CaoMeiYouRen/rsshub-never-die/releases/tag/v1.3.1">v1.3.1</a> - 2026-03-03 20:39:25</a></h4>
<p>Summary:<br>
Version 1.3.1 primarily includes the following bug fixes:</p>
<ol>
<li><strong>Error Handling Optimization</strong>: Updated the status code types in error handling to ensure correct response statuses are returned.</li>
<li><strong>Configuration Logic Simplification</strong>: Removed the <code>priority</code> and <code>backup</code> properties from <code>NodeConfig</code>, simplifying node configuration logic.</li>
</ol>
<h4 id="v1-3-0-2026-03-03-20-02-37" tabindex="-1"><a class="header-anchor" href="#v1-3-0-2026-03-03-20-02-37"><a href="https://github.com/CaoMeiYouRen/rsshub-never-die/releases/tag/v1.3.0">v1.3.0</a> - 2026-03-03 20:02:37</a></h4>
<p>Summary:<br>
Version 1.3.0 Highlights</p>
<p>This release includes the following updates:</p>
<p><strong>New Features</strong></p>
<ul>
<li>Optimized instance selection logic, supporting mandatory, backup, and weighted configurations.</li>
</ul>
<p><strong>Bug Fixes</strong></p>
<ul>
<li>Fixed node pool capacity limits and added safeguards against empty pools during rapid responses.</li>
<li>Updated the <code>src/routes/index.ts</code> file.</li>
</ul>
<h3 id="caomei-auth" tabindex="-1"><a class="header-anchor" href="#caomei-auth">caomei-auth</a></h3>
<h4 id="v1-13-0-2026-03-07-20-16-36" tabindex="-1"><a class="header-anchor" href="#v1-13-0-2026-03-07-20-16-36"><a href="https://github.com/CaoMeiYouRen/caomei-auth/releases/tag/v1.13.0">v1.13.0</a> - 2026-03-07 20:16:36</a></h4>
<p>Summary:<br>
Version 1.13.0 includes the following updates:</p>
<p><strong>New Features</strong></p>
<ul>
<li>Frontend: Migrated frontend form validation to Zod and completed the migration of OAuth and SSO dialogs.</li>
<li>Validation: Fully migrated the project to Zod validation, fixed related tests, added Zod validation infrastructure, and migrated path parameter handler validation logic.</li>
</ul>
<h3 id="momei" tabindex="-1"><a class="header-anchor" href="#momei">momei</a></h3>
<h4 id="v1-8-0-2026-03-07-20-13-17" tabindex="-1"><a class="header-anchor" href="#v1-8-0-2026-03-07-20-13-17"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.8.0">v1.8.0</a> - 2026-03-07 20:13:17</a></h4>
<p>Summary:<br>
Version 1.8.0 includes the following updates:</p>
<p><strong>Performance Optimization</strong>: Adjusted serverless scheduled task intervals from 5 minutes to 15 minutes.</p>
<p><strong>New Features</strong>:</p>
<ol>
<li><strong>AI Image Generation</strong>: Added image generation options, multi-image preview support, and resolutions up to 1K, 2K, and 4K, along with Gemini 3.1 model integration.</li>
<li><strong>ASR (Speech Recognition)</strong>: Completed async task support, performance optimization, and direct integration into the voice editor.</li>
<li><strong>Ad Network</strong>: Implemented domestic ad network adapters, content injection, admin UI, and foundational integration.</li>
<li><strong>Other Features</strong>: Added ActivityPub protocol support, deep serverless ecosystem adaptation, external link management, Google Adsense integration, AI task timeout configuration, and admin permission verification.</li>
</ol>
<p><strong>Bug Fixes</strong>:</p>
<ol>
<li><strong>ASR</strong>: Fixed security and linting issues identified during code audits and optimized audio stream state management.</li>
<li><strong>Ads &amp; External Links</strong>: Fixed styling issues on ad management pages and improved dialog usability.</li>
<li><strong>Security &amp; Stability</strong>: Patched potential XSS vulnerabilities in shortcodes, added API rate limiting, and optimized authentication settings.</li>
<li><strong>Other Fixes</strong>: Updated multilingual files, fixed federation code issues, and enhanced image provider support.</li>
</ol>
<p><strong>Code Refactoring</strong>: Improved code structure and query logic, removed deprecated fields and steps, and strengthened HTML processing security and timeout configuration readability.</p>
<h2 id="latest-github-starred-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-starred-repositories">Latest GitHub Starred Repositories</a></h2>
<ul>
<li>
<p><a href="https://github.com/SWE-agent/mini-swe-agent">CaoMeiYouRen starred mini-swe-agent</a> - 2026-03-07 12:48:21<br>
This is an AI tool called SWE-agent designed to automatically resolve GitHub issues or assist via the command line. Its philosophy is extreme simplicity, requiring no complex configuration or massive codebase. The tool achieved a verified score of over 74% on the SWE-bench benchmark. Primarily developed in Python, it has garnered 3,198 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/SWE-agent/SWE-agent">CaoMeiYouRen starred SWE-agent</a> - 2026-03-07 12:47:46<br>
SWE-agent is a language model-based automation tool capable of handling GitHub issues and attempting automatic fixes. It can also be applied to offensive cybersecurity or programming competition challenges. Presented at NeurIPS 2024, the project is mainly written in Python and has earned over 18,600 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/antfu/ghfs">CaoMeiYouRen starred ghfs</a> - 2026-03-06 00:31:37<br>
This project transforms GitHub issues and pull requests into a filesystem format, facilitating offline viewing and batch operations. It caters to both human users and automated agents. Developed primarily in TypeScript, it currently has 145 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/ponysb/91Writing">CaoMeiYouRen starred 91Writing</a> - 2026-03-04 16:07:08<br>
This is an intelligent AI novel-writing tool built with Vue 3 and Element Plus. It integrates multiple AI models to help fiction writers improve their productivity. The main programming language is Vue, and it has received 1,305 favorites on the code hosting platform.</p>
</li>
<li>
<p><a href="https://github.com/hangwin/mcp-chrome">CaoMeiYouRen starred mcp-chrome</a> - 2026-03-04 16:05:00<br>
Chrome MCP Server is a Chrome extension-based Model Context Protocol server. It exposes Chrome browser functionality to AI assistants like Claude, enabling complex browser automation, content analysis, and semantic search. The project is written mainly in TypeScript and has surpassed 10,000 stars on GitHub.</p>
</li>
</ul>
<h2 id="other-blogs-or-weekly-recommendations" tabindex="-1"><a class="header-anchor" href="#other-blogs-or-weekly-recommendations">Other Blogs or Weekly Recommendations</a></h2>
<h3 id="ruan-yifeng-s-blog" tabindex="-1"><a class="header-anchor" href="#ruan-yifeng-s-blog">Ruan YiFeng’s Blog</a></h3>
<ul>
<li><a href="http://www.ruanyifeng.com/blog/2026/03/weekly-issue-387.html">Tech Enthusiast Weekly (Issue 387): You Are Ahead</a> - 2026-03-06 04:20:54</li>
</ul>
<h3 id="amao-s-blog" tabindex="-1"><a class="header-anchor" href="#amao-s-blog">Amao’s Blog</a></h3>
<ul>
<li><a href="https://ameow.xyz/archives/human-invented-hyperdrive-in-2135">2136: Humanity Invented the Hyperdrive</a> - 2026-03-04 18:42:32</li>
<li><a href="https://ameow.xyz/archives/weekly-093">CatFish Weekly Vol. 093: Happy Year of the Horse</a> - 2026-03-02 00:14:31</li>
</ul>
<h3 id="trend-weekly" tabindex="-1"><a class="header-anchor" href="#trend-weekly">Trend Weekly</a></h3>
<ul>
<li><a href="https://weekly.tw93.fun/posts/259/">Issue 259 - Sky Path</a> - 2026-03-09 08:00:00</li>
<li><a href="https://weekly.tw93.fun/posts/258/">Issue 258 - Cyber Charging</a> - 2026-03-02 08:00:00</li>
</ul>
<h3 id="eryajf-s-learning-weekly" tabindex="-1"><a class="header-anchor" href="#eryajf-s-learning-weekly">EryaJF’s Learning Weekly</a></h3>
<ul>
<li><a href="https://wiki.eryajf.net/pages/bfc406/">Learning Weekly - Issue 253 - Week 10 of 2026</a> - 2026-03-05 21:30:59</li>
</ul>
<h2 id="summary" tabindex="-1"><a class="header-anchor" href="#summary">Summary</a></h2>
<p>Here’s the translated content in en-US while maintaining all markdown formatting, links, and code blocks:</p>
<hr>
<p>This week’s updates and highlights are as shown above. Thank you for reading!<br>
You can subscribe to the Caomei Weekly updates through the following channels:</p>
<ul>
<li><strong>Blog</strong>: <a href="https://blog.cmyr.ltd">Caomei Youren’s Blog</a></li>
<li><strong>Momei Blog</strong>: <a href="https://momei.app">Momei Blog</a></li>
<li><strong>RSS</strong>: <a href="https://blog.cmyr.ltd/weekly.xml">Caomei Weekly</a></li>
<li><strong>Official Account</strong>: <a href="https://oss.cmyr.dev/images/20241025184516839-21n2ctv.png">Caomei Youren’s Backyard</a></li>
<li><strong>Email Subscription</strong>: <a href="https://listmonk.cmyr.dev/subscription/form">Caomei Youren’s Blog Subscription</a></li>
</ul>
<h2 id="past-issues" tabindex="-1"><a class="header-anchor" href="#past-issues">Past Issues</a></h2>
<ul>
<li><a href="https://blog.cmyr.ltd/archives/2026-09-caomei-weekly-momei-1-7-0-release-ai-development.html">Momei Blog 1.7.0 Release &amp; AI Development Practice | Caomei Weekly Issue 9, 2026</a> - 2026-03-01 23:22:02</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-06-caomei-weekly-momei-1-4-0-release-open-source-updates.html">Momei Blog 1.4.0 Release &amp; Open-Source Updates | Caomei Weekly Issue 6, 2026</a> - 2026-02-08 21:17:40</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-05-caomei-weekly-momei-1-3-0-release-server-backup-lesson.html">Momei Blog 1.3.0 Release &amp; Server Data Backup Lesson | Caomei Weekly Issue 5, 2026</a> - 2026-02-01 23:40:42</li>
</ul>
<hr>
]]></content:encoded>
            <author>草梅友仁</author>
            <category>Caomei Weekly</category>
            <enclosure length="1309869" type="audio/mpeg" url="https://oss.cmyr.dev/momei-files/posts/67361e2cb4308104/audio/tts/20260317010333870-v72si4d.mp3"/>
        </item>
        <item>
            <title><![CDATA[Ink Plum Blog 1.7.0 Release and AI Development Practice | Week 9 Strawberry Report 2026]]></title>
            <link>https://momei.app/en-US/posts/2026-09-caomei-weekly-momei-1-7-0-release-ai-development</link>
            <guid isPermaLink="false">https://momei.app/en-US/posts/2026-09-caomei-weekly-momei-1-7-0-release-ai-development</guid>
            <pubDate>Mon, 02 Mar 2026 18:03:55 GMT</pubDate>
            <description><![CDATA[The current issue of Strawberry Weekly highlights the updates in Momo Blog version 1.7.0, including new features such as AI language input, cover generation, scheduled publishing, and audio generation, along with relevant interface screenshots. The author shares insights from AI...]]></description>
            <content:encoded><![CDATA[<blockquote>
<p>This article is published and updated on <a href="https://blog.cmyr.ltd">CaoMeiYouRen’s Blog</a> and synchronized across multiple platforms. For any updates, the version on the blog takes precedence. You can also check the latest version via the <code>Original Link</code> at the end of the article.</p>
</blockquote>
<h2 id="preface" tabindex="-1"><a class="header-anchor" href="#preface">Preface</a></h2>
<p>Welcome to CaoMei Weekly! This is an AI-curated weekly newsletter by CaoMeiYouRen, aiming to provide you with the latest blog updates, GitHub activities, personal updates, and recommendations from other weekly publications.</p>
<hr>
<h2 id="open-source-updates" tabindex="-1"><a class="header-anchor" href="#open-source-updates">Open-Source Updates</a></h2>
<p>This week, development continues on <a href="https://github.com/CaoMeiYouRen/momei">Momei</a>.</p>
<blockquote>
<p>You can try it out on the Demo site: <a href="https://demo.momei.app/">https://demo.momei.app/</a></p>
<ul>
<li>Use the demo admin account with email <code>admin@example.com</code> and password <code>momei123456</code>.</li>
</ul>
<p>Or register on the official website: <a href="https://momei.app/">https://momei.app/</a></p>
<p>You can also visit the documentation site to learn about the project’s overall plan and future roadmap: <a href="https://docs.momei.app/">https://docs.momei.app/</a></p>
</blockquote>
<p>The Momei Blog has officially released <a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.7.0">version 1.7.0</a>. Below are some screenshots of the pages and features.</p>
<p>On the article editing page, AI-powered language input has been added, along with AI-assisted text refinement.</p>
<p><img src="https://oss.cmyr.dev/images/20260301215704744.png" alt="image-20260301215655911"></p>
<p>AI-generated covers are now available, automatically creating cover prompts based on article content and generating corresponding cover images.</p>
<p><img src="https://oss.cmyr.dev/images/20260301215905015.png" alt="image-20260301215904772"></p>
<p>Added scheduled article publishing, synchronization to Memos, and one-click distribution via Wechatsync.</p>
<p><img src="https://oss.cmyr.dev/images/20260301220229485.png" alt="image-20260301220229378"></p>
<p>Introduced article-to-audio generation, allowing one-click podcast audio creation.</p>
<p><img src="https://oss.cmyr.dev/images/20260301220334171.png" alt="image-20260301220334081"></p>
<p>Added Live2D mascot and background particle animation effects.</p>
<blockquote>
<p>Please note the copyright of Live2D resources and comply with relevant licenses when using them.</p>
</blockquote>
<p><img src="https://oss.cmyr.dev/images/20260301220518169.png" alt="image-20260301220518089"></p>
<p>For more features and pages, visit the <a href="https://momei.app/">official website</a> or check out the screenshots in <a href="https://blog.cmyr.ltd/archives/2025-51-caomei-weekly-momei-blog-mvp-caomei-auth-update.html">a previous blog post</a>.</p>
<p>We welcome users to try it out and share their feedback and suggestions.</p>
<p>Moving forward, development will continue according to the roadmap and backlog. Stay tuned!</p>
<p>Of course, Momei Blog still has many details to refine, and its features are not yet complete. If you have any feedback or suggestions, feel free to raise them in the project’s <a href="https://github.com/CaoMeiYouRen/momei/issues">GitHub issues</a>.</p>
<p>If you’re interested in Momei Blog, you’re welcome to participate in development and testing.</p>
<h2 id="ai-project-development-and-reflections" tabindex="-1"><a class="header-anchor" href="#ai-project-development-and-reflections">AI Project Development and Reflections</a></h2>
<p>Recently, AI news has been flooding the internet. Whether it’s the groundbreaking video-generation AI Seedance2.0 or the highly anticipated personal AI assistant OpenClaw, these developments have caused quite a stir online. Today, I’d like to share some thoughts from my recent intensive AI development and usage.</p>
<p>First, the result of this period of intense AI development—<a href="https://github.com/CaoMeiYouRen/momei">Momei Blog</a>.</p>
<p>From project initiation to the first release, it took about a month. Excluding delays due to travel, development took less than three weeks—around 20 days in total.</p>
<p>For a solo developer, this speed is quite remarkable.</p>
<p>It shows that with AI assistance, coding is no longer a daunting task, and turning ideas into tangible outcomes has become much easier.</p>
<p>If I were to develop it from scratch without AI, it would likely take 2-3 months or more.</p>
<p>During later stages of development, as custom Agents and Skills were refined, the development pace accelerated further. Each release now included hundreds of commits, many of which involved challenging tasks I would have struggled to implement myself—such as comprehensive project internationalization and full AI integration (supporting various providers like GPT, Gemini, Claude, etc.).</p>
<p>One key takeaway from this project is: <strong>Always use the best AI model available if possible.</strong> You truly get what you pay for.</p>
<p>For example, to conserve my GitHub Copilot quota, I primarily relied on Gemini 3 Flash for development tasks, and it performed admirably—handling around 90% of the work.</p>
<p>However, Gemini 3 Flash (and even Gemini 3 Pro) doesn’t always follow Agents and Skills instructions well, often ignoring documentation, which sometimes led to subpar results requiring manual fixes.</p>
<p>There was one instance where a bug stumped me for hours with Gemini 3 Flash. Only after switching to GPT-5.3-Codex did I solve it in half an hour.</p>
<p>I suspect Gemini 3.1 Pro or Claude 4.6 Opus could have handled it too, so the lesson is clear: <strong>Go straight for the strongest model.</strong> Otherwise, endless debugging becomes a nightmare.</p>
<p>That said, AI costs are a real concern. Using only top-tier models is a luxury reserved for big spenders. For us budget-conscious developers, cost optimization is key. Spending a few hundred per month on AI is manageable, but crossing into the thousands is excessive.</p>
<p>Another issue with AI-assisted programming is <strong>declining code quality.</strong></p>
<p>In the manual coding era, we often blamed tight deadlines for cutting corners—skipping standards, skimping on tests. But in the AI era, that excuse no longer holds. AI is blazingly fast and can strictly adhere to coding standards, so <strong>code quality control is more critical than ever.</strong></p>
<p>Use ESLint for consistent formatting, TypeScript for type safety, and Vitest for unit, integration, and end-to-end tests—the more test cases, the better. And if writing tests feels daunting, just let AI generate them.</p>
<p>AI isn’t afraid of errors—it thrives on feedback. Without error messages, AI assumes its code is flawless. But with test feedback, its bug-fixing efficiency and accuracy are astonishing.</p>
<blockquote>
<p>This mirrors human developers: code must run to reveal its flaws.</p>
</blockquote>
<p>Another often-overlooked point: <strong>In the AI era, documentation is more important than code.</strong></p>
<p>No more excuses like “no time to document.” AI can handle it all.</p>
<p>For every design decision, feature logic, or architectural approach, have AI generate detailed documentation. This prevents knowledge loss during handoffs and ensures seamless transitions for new team members. More projects now include dedicated AI agent configurations—this is the future.</p>
<p>Of course, documentation must stay synced with code. After each development phase, update the docs promptly.</p>
<p>My current workflow:</p>
<ol>
<li>Discuss the project’s framework and key designs with AI.</li>
<li>Organize these into design docs and a TODO list.</li>
<li>Have AI tackle the TODO items one by one, then verify against the design doc for gaps or improvements.</li>
</ol>
<p>For small projects, this workflow executes flawlessly.</p>
<blockquote>
<p>Example: <a href="https://github.com/CaoMeiYouRen/auto-backup-database">auto-backup-database</a> was entirely AI-developed after finalizing <code>todo.md</code> and <code>design.md</code>.</p>
</blockquote>
<p>Now, let’s talk about Seedance2.0—it’s been trending lately, and for good reason. The results are stunning, with exceptional character consistency. Alongside Nano Banana Pro, it dominates video and image generation.</p>
<p>Admittedly, as more users flood in, the free tier has degraded, and stricter moderation makes video generation trickier. But Seedance2.0 undeniably surpasses Sora2, setting a new benchmark in video generation.</p>
<p>Remember when ChatGPT had a 4k context limit? When generating images required local Stable Diffusion setups and prompt engineering? When video generation demanded convoluted workflows for decent results? Now, AI advancements have solved these:</p>
<ul>
<li>Context limits? Modern models start at millions of tokens.</li>
<li>Image generation? Nano Banana Pro delivers perfect character consistency.</li>
<li>Video generation? Seedance2.0 excels.</li>
</ul>
<p>In the AI era, waiting for models to improve often outpaces learning niche techniques.</p>
<p>That said, AI isn’t without pitfalls—OpenClaw, as mentioned earlier, is a cautionary tale.</p>
<p>OpenClaw is an open-source AI assistant, but unlike previous AI projects, it has extensive permissions and can directly manipulate everything on your computer. As a result, when used effectively, OpenClaw can greatly automate workflows and handle repetitive tasks. However, if misused, it could delete emails, projects, or even wipe your hard drive.</p>
<p>In short, there’s no such thing as a free lunch. While enjoying the automation benefits of AI, you must also accept the risks of accidental deletions (not to mention privacy breaches).</p>
<p>After all this rambling, the core message is simple: AI has already completely reshaped the logic of personal development, content creation, and workplace productivity—and it will continue to transform the world.</p>
<p>The AI wave is still surging forward. We’ll dive into more details in the next installment—see you then.</p>
<h2 id="latest-github-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-repositories">Latest GitHub Repositories</a></h2>
<ul>
<li><a href="https://github.com/CaoMeiYouRen/auto-backup-database">auto-backup-database</a> - 2026-02-24 23:41:10<br>
A server database auto-backup solution supporting local and remote backups.</li>
<li><a href="https://github.com/CaoMeiYouRen/rss-image-download">rss-image-download</a> - 2026-02-11 18:19:27<br>
Automatically download images from RSS feeds, package them, and back them up.</li>
</ul>
<h2 id="github-releases" tabindex="-1"><a class="header-anchor" href="#github-releases">GitHub Releases</a></h2>
<h3 id="momei" tabindex="-1"><a class="header-anchor" href="#momei">momei</a></h3>
<h4 id="v1-7-0-2026-02-28-20-13-31" tabindex="-1"><a class="header-anchor" href="#v1-7-0-2026-02-28-20-13-31"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.7.0">v1.7.0</a> - 2026-02-28 20:13:31</a></h4>
<p>Summary:<br>
Version 1.7.0 Highlights (2026-02-28)</p>
<p>New Features:</p>
<ul>
<li>Added internationalization support, optimized error handling and response formats</li>
<li>Added Volcano Engine TTS/ASR protocol support, simplifying configuration</li>
<li>Introduced audio metadata processing, enabling metadata-based audio info export</li>
<li>Added podcast mode support, optimized script generation logic</li>
<li>Implemented Live2D mascot system and CanvasNest particle effects</li>
<li>Added article metadata processing, improved publishing intent parsing</li>
<li>Added Memos sync configuration support</li>
<li>Added AudioWorklet support for enhanced audio processing</li>
<li>Introduced MCP server Cursor rules and performance testing scripts</li>
</ul>
<p>Bug Fixes:</p>
<ul>
<li>Fixed ajv ReDoS security vulnerability</li>
<li>Resolved TTS service stream timeout issues</li>
<li>Fixed Playwright configuration command sequence</li>
<li>Updated multiple dependencies for security</li>
<li>Improved cloud stream error management</li>
<li>Fixed language switcher type capture issues</li>
<li>Enhanced mobile Live2D display support</li>
</ul>
<p>Code Refactoring:</p>
<ul>
<li>Optimized HTML tag removal logic</li>
<li>Refactored database table structures</li>
<li>Used absolute paths for better readability</li>
<li>Added WebSocket permission validation</li>
<li>Improved image generation and task polling logic</li>
<li>Replaced Markdown editor component</li>
<li>Refactored initialization setup logic</li>
</ul>
<h4 id="v1-6-0-2026-02-21-20-14-13" tabindex="-1"><a class="header-anchor" href="#v1-6-0-2026-02-21-20-14-13"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.6.0">v1.6.0</a> - 2026-02-21 20:14:13</a></h4>
<p>Summary:<br>
Version 1.6.0 Highlights (2026-02-21)</p>
<p>New Features:</p>
<ul>
<li>Enhanced TTS configuration UI for better UX</li>
<li>Merged TTS and AI tasks, redesigned database schema</li>
<li>Added detailed task info (audio duration, size, etc.)</li>
<li>Integrated AI audio generation and speech recognition</li>
<li>Refactored AI services into TextService and ImageService</li>
<li>Added support for multiple TTS providers</li>
<li>Added Gemini and Stable Diffusion image generation</li>
<li>Introduced article-to-audio conversion</li>
<li>Added Volcano Engine TTS support</li>
<li>Added audio script optimization</li>
<li>Refactored AI infrastructure with unified API paths</li>
</ul>
<p>Bug Fixes:</p>
<ul>
<li>Fixed TTS documentation conflicts</li>
<li>Updated AI task error handling</li>
<li>Fixed auto-fill demo account type checks</li>
<li>Improved TTS service timeout handling</li>
<li>Enhanced Volcano Engine TTS error management</li>
<li>Added TTS estimation API</li>
</ul>
<p>Code Refactoring:</p>
<ul>
<li>Unified AI module structure</li>
<li>Optimized code formatting and error handling</li>
<li>Consolidated ASR usage logs into AITask</li>
</ul>
<p>Key updates focus on TTS enhancements, AI service refactoring, and expanded cloud provider support.</p>
<h4 id="v1-5-0-2026-02-14-20-09-34" tabindex="-1"><a class="header-anchor" href="#v1-5-0-2026-02-14-20-09-34"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.5.0">v1.5.0</a> - 2026-02-14 20:09:34</a></h4>
<p>Summary:<br>
Version 1.5.0 Highlights (2026-02-14)</p>
<p>New Features:</p>
<ul>
<li>Editor Optimizations: Added sidebar compact mode, voice transcription, auto-save, and draft recovery features</li>
<li>Enhanced Reading Experience: Introduced immersive reading mode with customizable font size, page width, line height, and themes</li>
<li>Publishing Improvements: Added scheduled publishing, multi-platform sync (Memos/WeChat Sync), and article version management</li>
<li>AI Feature Expansion: New image generation module (supports cover image generation), enhanced voice creation, and task management</li>
<li>Notification System: Implemented real-time notifications using SSE with fallback polling mechanism</li>
<li>Export Functionality: Added full-article export support for Markdown and ZIP formats</li>
<li>Mobile Optimization: Improved article detail page layout and responsive design</li>
</ul>
<p>Bug Fixes:</p>
<ul>
<li>Database: Fixed Postgres ID field overflow issue</li>
<li>CLI: Cleaned up unused import variables</li>
<li>UI: Fixed responsive design issues and optimized article detail page layout</li>
<li>Marketing Push: Completed record operation API and fixed 404 errors</li>
<li>Scheduled Tasks: Updated scheduler to support serverless environments</li>
<li>Image Processing: Added click-to-enlarge preview for cover images</li>
</ul>
<p>Code Refactoring:</p>
<ul>
<li>Refactored AI page components for simplified code structure</li>
<li>Optimized MomeiApi mock implementation</li>
<li>Updated system configuration documentation with enhanced security notes</li>
</ul>
<p>Other Improvements:</p>
<ul>
<li>Added Discord platform support</li>
<li>Optimized button interactions and state management</li>
<li>Adjusted fallback polling interval to 120 seconds</li>
</ul>
<h3 id="eslint-config-cmyr" tabindex="-1"><a class="header-anchor" href="#eslint-config-cmyr">eslint-config-cmyr</a></h3>
<h4 id="v2-1-4-2026-02-10-18-39-32" tabindex="-1"><a class="header-anchor" href="#v2-1-4-2026-02-10-18-39-32"><a href="https://github.com/CaoMeiYouRen/eslint-config-cmyr/releases/tag/v2.1.4">v2.1.4</a> - 2026-02-10 18:39:32</a></h4>
<p>Summary:
Version 2.1.4 (2026-02-10) Highlights:</p>
<p>Key Updates:</p>
<ul>
<li>Fixed a bug in TypeScript ESLint rules and enabled unnecessary type assertion checks</li>
</ul>
<p>Change Details:</p>
<ol>
<li>Rule Adjustment: Updated TypeScript ESLint configuration to add checks for unnecessary type assertions</li>
<li>Impact Scope: This change affects type assertion syntax in all TypeScript projects using this configuration</li>
<li>Technical Implementation: Fixed via commit b99a33f</li>
</ol>
<h3 id="cmyr-template-cli" tabindex="-1"><a class="header-anchor" href="#cmyr-template-cli">cmyr-template-cli</a></h3>
<h4 id="v1-44-1-2026-02-24-23-10-16" tabindex="-1"><a class="header-anchor" href="#v1-44-1-2026-02-24-23-10-16"><a href="https://github.com/CaoMeiYouRen/cmyr-template-cli/releases/tag/v1.44.1">v1.44.1</a> - 2026-02-24 23:10:16</a></h4>
<p>Summary:
Version 1.44.1 Highlights (2026-02-24)</p>
<p>Key Updates:</p>
<p>Bug Fixes:</p>
<ul>
<li>Updated GitHub Actions configuration to include scheduled time and timezone settings</li>
</ul>
<h4 id="v1-44-0-2026-02-24-21-43-56" tabindex="-1"><a class="header-anchor" href="#v1-44-0-2026-02-24-21-43-56"><a href="https://github.com/CaoMeiYouRen/cmyr-template-cli/releases/tag/v1.44.0">v1.44.0</a> - 2026-02-24 21:43:56</a></h4>
<p>Summary:
Version 1.44.0 Highlights (Released 2026-02-24)</p>
<p>Key Updates:</p>
<p>New Features:</p>
<ul>
<li>Added TypeCheck initialization support for TypeScript projects</li>
</ul>
<p>This update primarily introduces type-checking initialization support for TypeScript projects, improving compatibility with TypeScript development environments.</p>
<h4 id="v1-43-3-2026-02-24-21-13-30" tabindex="-1"><a class="header-anchor" href="#v1-43-3-2026-02-24-21-13-30"><a href="https://github.com/CaoMeiYouRen/cmyr-template-cli/releases/tag/v1.43.3">v1.43.3</a> - 2026-02-24 21:13:30</a></h4>
<p>Summary:
Version 1.43.3 (2026-02-24)</p>
<p>Key Updates:</p>
<p>Bug Fixes:</p>
<ul>
<li>Temporarily commented out lint command to resolve path errors caused by eslint-config-cmyr version updates</li>
</ul>
<p>This update provides a temporary fix for build issues caused by eslint configuration updates.</p>
<h4 id="v1-43-2-2026-02-14-22-37-55" tabindex="-1"><a class="header-anchor" href="#v1-43-2-2026-02-14-22-37-55"><a href="https://github.com/CaoMeiYouRen/cmyr-template-cli/releases/tag/v1.43.2">v1.43.2</a> - 2026-02-14 22:37:55</a></h4>
<p>Summary:
Version 1.43.2 Highlights (2026-02-14)</p>
<p>Bug Fixes:</p>
<ol>
<li>Added <code>--no-verify</code> option to git commits to skip hook checks</li>
<li>Adjusted libsodium-wrappers dependency from <code>^0.7.15</code> to fixed version <code>0.7.15</code> for version consistency</li>
</ol>
<h3 id="auto-backup-database" tabindex="-1"><a class="header-anchor" href="#auto-backup-database">auto-backup-database</a></h3>
<h4 id="v1-2-2-2026-02-27-09-22-37" tabindex="-1"><a class="header-anchor" href="#v1-2-2-2026-02-27-09-22-37"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.2.2">v1.2.2</a> - 2026-02-27 09:22:37</a></h4>
<p>Summary:<br>
GitHub Release Summary:</p>
<p>Version 1.2.2 (2026-02-27)</p>
<p>Bug Fixes:</p>
<ul>
<li>Commented out the configuration item forcing path-style access (Commit: 125c9f3)</li>
</ul>
<p>(Note: This version includes only one bug fix, with a total word count under 500 characters.)</p>
<h4 id="v1-2-1-2026-02-26-11-00-53" tabindex="-1"><a class="header-anchor" href="#v1-2-1-2026-02-26-11-00-53"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.2.1">v1.2.1</a> - 2026-02-26 11:00:53</a></h4>
<p>Summary:<br>
Version 1.2.1 (2026-02-26) Summary:</p>
<p>Bug Fixes:</p>
<ul>
<li>Added pre- and post-compression file size information in backup task results</li>
</ul>
<p>Code Refactoring:</p>
<ul>
<li>Improved error handling in the notification service</li>
<li>Optimized the output format of compression results</li>
</ul>
<h4 id="v1-2-0-2026-02-25-09-32-42" tabindex="-1"><a class="header-anchor" href="#v1-2-0-2026-02-25-09-32-42"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.2.0">v1.2.0</a> - 2026-02-25 09:32:42</a></h4>
<p>Summary:<br>
Version 1.2.0 Update Summary:</p>
<p>Key New Features:</p>
<ul>
<li>Introduced the <code>BackupTaskResult</code> type to enhance notification service logic for backup results</li>
</ul>
<h4 id="v1-1-1-2026-02-25-01-23-21" tabindex="-1"><a class="header-anchor" href="#v1-1-1-2026-02-25-01-23-21"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.1.1">v1.1.1</a> - 2026-02-25 01:23:21</a></h4>
<p>Summary:<br>
Version 1.1.1 Update Summary (2026-02-24)</p>
<p>Bug Fixes:</p>
<ul>
<li>Added support for configuring backup output paths and configuration file paths via environment variables</li>
</ul>
<h4 id="v1-1-0-2026-02-25-00-51-10" tabindex="-1"><a class="header-anchor" href="#v1-1-0-2026-02-25-00-51-10"><a href="https://github.com/CaoMeiYouRen/auto-backup-database/releases/tag/v1.1.0">v1.1.0</a> - 2026-02-25 00:51:10</a></h4>
<p>Summary:<br>
Version 1.1.0 Update Summary:</p>
<p>New Features:</p>
<ol>
<li>Optimized backup service encryption logic with enhanced error handling and logging</li>
<li>Added file tool support for retrieving MIME types for OSS storage operations</li>
</ol>
<p>Code Refactoring:</p>
<ol>
<li>Improved backup service by removing unnecessary dynamic imports</li>
<li>Enhanced configuration loader and compression functionality with simplified file path handling</li>
</ol>
<h2 id="latest-github-starred-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-starred-repositories">Latest GitHub Starred Repositories</a></h2>
<ul>
<li>
<p><a href="https://github.com/hesamsheikh/awesome-openclaw-usecases">CaoMeiYouRen starred awesome-openclaw-usecases</a> - 2026-03-01 02:35:37<br>
A collection of use cases curated by the OpenClaw community, aimed at simplifying life. This project has 14,172 stars.</p>
</li>
<li>
<p><a href="https://github.com/agentscope-ai/CoPaw">CaoMeiYouRen starred CoPaw</a> - 2026-03-01 01:18:52<br>
A personal AI assistant written in Python that can be installed and deployed locally or on the cloud. Supports integration with multiple chat applications and offers extensible functionality. Currently has 2,968 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/ZhuLinsen/daily_stock_analysis">CaoMeiYouRen starred daily_stock_analysis</a> - 2026-02-28 10:59:49<br>
An LLM-driven cross-market intelligent analysis tool supporting A-shares, Hong Kong stocks, and U.S. markets. Integrates multi-source market data, real-time news analysis, and Gemini decision systems, providing visual dashboard functionality. Features multi-channel push capabilities, is completely free to use, and supports scheduled automatic execution. Developed in Python, it has nearly 15,000 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/brunosimon/folio-2025">CaoMeiYouRen starred folio-2025</a> - 2026-02-28 10:58:09<br>
This is an open-source JavaScript project with 926 stars on GitHub.</p>
</li>
<li>
<p><a href="https://github.com/maillab/cloud-mail">CaoMeiYouRen starred cloud-mail</a> - 2026-02-28 10:58:04<br>
An email service project based on Cloudflare, primarily developed in JavaScript, currently with 4,642 stars on GitHub. The project provides email service functionality, leveraging Cloudflare’s platform for technical implementation.</p>
</li>
</ul>
<h2 id="other-blog-or-newsletter-recommendations" tabindex="-1"><a class="header-anchor" href="#other-blog-or-newsletter-recommendations">Other Blog or Newsletter Recommendations</a></h2>
<h3 id="ruan-yifeng-s-blog" tabindex="-1"><a class="header-anchor" href="#ruan-yifeng-s-blog">Ruan YiFeng’s Blog</a></h3>
<ul>
<li><a href="http://www.ruanyifeng.com/blog/2026/02/weekly-issue-386.html">Tech Enthusiast Weekly (Issue 386): When Delivery Riders Integrate AI</a> - 2026-02-27 08:07:08</li>
<li><a href="http://www.ruanyifeng.com/blog/2026/02/seed-2.0.html">Byte Family Bucket Seed 2.0 + TRAE Mastering Skills</a> - 2026-02-14 19:51:22</li>
<li><a href="http://www.ruanyifeng.com/blog/2026/02/weekly-issue-385.html">Tech Enthusiast Weekly (Issue 385): Is Musk Afraid of Chinese Automakers?</a> - 2026-02-13 02:34:10</li>
</ul>
<h3 id="hellogithub-monthly" tabindex="-1"><a class="header-anchor" href="#hellogithub-monthly">HelloGitHub Monthly</a></h3>
<ul>
<li><a href="https://hellogithub.com/periodical/volume/119">HelloGitHub Issue 119</a> - 2026-02-28 08:10:09</li>
</ul>
<h3 id="amao-s-blog" tabindex="-1"><a class="header-anchor" href="#amao-s-blog">Amao’s Blog</a></h3>
<ul>
<li><a href="https://ameow.xyz/archives/convert-markdown-with-mermaid-to-docx">Converting Markdown with Mermaid to docx</a> - 2026-02-12 09:35:56</li>
</ul>
<h3 id="trend-weekly" tabindex="-1"><a class="header-anchor" href="#trend-weekly">Trend Weekly</a></h3>
<ul>
<li><a href="https://weekly.tw93.fun/posts/258/">Issue 258 - Cyber Charging</a> - 2026-03-02 08:00:00</li>
<li><a href="https://weekly.tw93.fun/posts/257/">Issue 257 - Happy Lunar New Year</a> - 2026-02-19 08:00:00</li>
</ul>
<h3 id="erya-s-learning-weekly" tabindex="-1"><a class="header-anchor" href="#erya-s-learning-weekly">Erya’s Learning Weekly</a></h3>
<ul>
<li><a href="https://wiki.eryajf.net/pages/c8b5cc/">Learning Weekly - Issue 250 - Week 07, 2026</a> - 2026-02-14 10:15:03</li>
<li><a href="https://wiki.eryajf.net/pages/f80a48/">Learning Weekly - Issue 251 - Week 08, 2026</a> - 2026-02-19 19:20:25</li>
<li><a href="https://wiki.eryajf.net/pages/5d3e72/">Learning Weekly - Issue 252 - Week 09, 2026</a> - 2026-02-27 09:21:02</li>
</ul>
<h2 id="summary" tabindex="-1"><a class="header-anchor" href="#summary">Summary</a></h2>
<p>This week’s updates and highlights are as shown above. Thank you for reading!<br>
You can subscribe to Caomei Weekly updates through the following channels:</p>
<ul>
<li><strong>Blog</strong>: <a href="https://blog.cmyr.ltd">Caomei Youren’s Blog</a></li>
<li><strong>Momei Blog</strong>: <a href="https://momei.app">Momei Blog</a></li>
<li><strong>RSS</strong>: <a href="https://blog.cmyr.ltd/weekly.xml">Caomei Weekly</a></li>
<li><strong>WeChat Official Account</strong>: <a href="https://oss.cmyr.dev/images/20241025184516839-21n2ctv.png">Caomei Youren’s Backyard</a></li>
<li><strong>Email Subscription</strong>: <a href="https://listmonk.cmyr.dev/subscription/form">Caomei Youren’s Blog Subscription</a></li>
</ul>
<h2 id="past-issues" tabindex="-1"><a class="header-anchor" href="#past-issues">Past Issues</a></h2>
<ul>
<li><a href="https://blog.cmyr.ltd/archives/2026-06-caomei-weekly-momei-1-4-0-release-open-source-updates.html">Momei Blog 1.4.0 Release &amp; Open-Source Updates | Caomei Weekly Week 06, 2026</a> - 2026-02-08 21:17:40</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-05-caomei-weekly-momei-1-3-0-release-server-backup-lesson.html">Momei Blog 1.3.0 Release &amp; Server Data Backup Lessons | Caomei Weekly Week 05, 2026</a> - 2026-02-01 23:40:42</li>
<li><a href="https://blog.cmyr.ltd/archives/2026-04-caomei-weekly-momei-1-2-0-release-ai-development.html">Momei Blog 1.2.0 Release &amp; AI Development Practices | Caomei Weekly Week 04, 2026</a> - 2026-01-25 22:23:13</li>
</ul>
]]></content:encoded>
            <author>草梅友仁</author>
            <category>Caomei Weekly</category>
            <enclosure url="https://oss.cmyr.dev/momei-images/ai-images/673109ed5c548e5d.jpeg" length="0" type="image/jpeg"/>
        </item>
        <item>
            <title><![CDATA[Momei Blog 1.0.0 Release & Update | Caomei Weekly 2026 Week 2]]></title>
            <link>https://momei.app/en-US/posts/2026-02-caomei-weekly-momei-blog-1-0-release-update</link>
            <guid isPermaLink="false">https://momei.app/en-US/posts/2026-02-caomei-weekly-momei-blog-1-0-release-update</guid>
            <pubDate>Wed, 14 Jan 2026 03:05:25 GMT</pubDate>
            <description><![CDATA[Caomei Weekly introduces the release of Momei Blog version 1.0.0, which adds multiple features including archive function, article management system, user system enhancement, internationalization support, and fixes several bugs. The blog update section includes three articles, re...]]></description>
            <content:encoded><![CDATA[<blockquote>
<p>This article is published and updated on <a href="https://blog.cmyr.ltd">Caomei Youren’s Blog</a>, and synchronized on multiple platforms. For updates, please refer to the version on the blog. You can also view the latest version through the <code>original link</code> at the end of the article.</p>
</blockquote>
<h2 id="preface" tabindex="-1"><a class="header-anchor" href="#preface">Preface</a></h2>
<p>Welcome to Caomei Weekly! This is a weekly report compiled by Caomei Youren with AI assistance, aiming to provide you with the latest blog updates, GitHub activities, personal updates and recommendations of other weekly articles.</p>
<hr>
<p>This week, we are still working on the development of <a href="https://github.com/CaoMeiYouRen/momei">Momei</a>.</p>
<blockquote>
<p>You can visit the official website to try it out: <a href="https://momei.app/">https://momei.app/</a></p>
<p>You can also go to the documentation site to learn about the overall project plan and future development roadmap: <a href="https://docs.momei.app/">https://docs.momei.app/</a></p>
</blockquote>
<p>Currently, Momei Blog has officially released its <a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.0.0">1.0.0</a> version. Below are some screenshots of the pages.</p>
<p>Homepage</p>
<p><img src="https://oss.cmyr.dev/images/20260111183933856.png" alt="image-20260111183926595"></p>
<p>User Management Page</p>
<p><img src="https://oss.cmyr.dev/images/20260111184037484.png" alt="image-20260111184037309"></p>
<p>The page view statistics function has been implemented, and now it can count the page views of each blog post.</p>
<p><img src="https://oss.cmyr.dev/images/20260111184131101.png" alt="image-20260111184130975"></p>
<p>You can experience more pages on the <a href="https://momei.app/">official website</a>, or view screenshots in the <a href="https://blog.cmyr.ltd/archives/2025-51-caomei-weekly-momei-blog-mvp-caomei-auth-update.html">previous blog post</a>.</p>
<p>Welcome all users to experience it and put forward your opinions and suggestions.</p>
<p>In the future, we will continue to develop functions according to the roadmap and to-do list, so stay tuned.</p>
<p>Of course, Momei Blog still has many details to be polished and its functions are not yet perfect. If you have any opinions or suggestions, you can submit them in the <a href="https://github.com/CaoMeiYouRen/momei/issues">GitHub issues</a> of the project.</p>
<blockquote>
<p>The demo site of Momei Blog will also be deployed later.</p>
</blockquote>
<p>If you are also interested in Momei Blog, welcome to participate in development and testing.</p>
<h2 id="blog-updates" tabindex="-1"><a class="header-anchor" href="#blog-updates">Blog Updates</a></h2>
<ul>
<li><a href="https://blog.cmyr.ltd/archives/shanghai-genshin-fes-2026-review.html">Impressions of Genshin FES 2026 in Shanghai</a> - 2026-01-07 00:12:33
Abstract:
The author records the on-site experience of attending <em>Genshin FES2026</em> in Shanghai, including the feelings of the concert, Cosplay/photography interactions, observations of mini-games, venue flow and overall experience.</li>
<li><a href="https://blog.cmyr.ltd/archives/2025-project-summary-outlook.html">2025 Annual Project Summary and Outlook by Caomei Youren</a> - 2026-01-02 00:21:27
Abstract:
Caomei Youren’s 2025 annual summary reviews the aspects of AI programming, open source projects, blogs, videos, movies, animations and games, and looks forward to 2026.</li>
<li><a href="https://blog.cmyr.ltd/archives/c6226240.html">Impressions of Zenless Zone Zero 2025 FES in Guangzhou</a> - 2025-12-29 15:46:09
Abstract:
Share the impressions of attending Zenless Zone Zero 2025 FES in Guangzhou, including the music festival experience and interesting interactive sessions.</li>
</ul>
<h2 id="github-release" tabindex="-1"><a class="header-anchor" href="#github-release">GitHub Release</a></h2>
<h3 id="momei" tabindex="-1"><a class="header-anchor" href="#momei">momei</a></h3>
<h4 id="v1-0-0-2026-01-10-22-15-12" tabindex="-1"><a class="header-anchor" href="#v1-0-0-2026-01-10-22-15-12"><a href="https://github.com/CaoMeiYouRen/momei/releases/tag/v1.0.0">v1.0.0</a> - 2026-01-10 22:15:12</a></h4>
<p>Abstract:
Version 1.0.0 Release Summary (2026-01-10)</p>
<p>✨ New Features</p>
<ul>
<li>Added archive function: support article aggregation by year/month, with internationalization support</li>
<li>Article management system: implemented CRUD operations, supporting file upload, status filtering and review process</li>
<li>User system enhancement: added avatar upload, role permission management and API key management functions</li>
<li>Internationalization support: updated multilingual texts and optimized interface prompts</li>
<li>Added data analysis integration: supporting Google Analytics, Microsoft Clarity, Sentry and Baidu Analytics</li>
<li>Added theme switching function: supporting dark/light mode</li>
<li>Added page view statistics: with anti-cheating logic</li>
<li>Added file storage support: integrated S3 and Vercel Blob storage</li>
</ul>
<p>🐛 Bug Fixes</p>
<ul>
<li>Fixed security issues related to API key hash processing</li>
<li>Optimized dark mode implementation and style consistency</li>
<li>Corrected upload file naming format and path issues</li>
<li>Fixed Snowflake ID regular expression matching problem</li>
<li>Optimized session management and cookie caching strategy</li>
<li>Corrected dark mode styles of PrimeVue menu</li>
<li>Updated request rate limiting logic</li>
</ul>
<p>📦 Code Refactoring</p>
<ul>
<li>Optimized API response structure and pagination logic</li>
<li>Refactored date formatting tools</li>
<li>Unified component styles to enhance readability</li>
<li>Updated database entity association relationships</li>
<li>Optimized internationalization text processing</li>
</ul>
<p>This release includes 45 new features, 40 bug fixes and 5 refactoring improvements, focusing on the improvement of article management system, user permission control and internationalization support.</p>
<h2 id="latest-github-starred-repositories" tabindex="-1"><a class="header-anchor" href="#latest-github-starred-repositories">Latest GitHub Starred Repositories</a></h2>
<ul>
<li><a href="https://github.com/KlingTeam/UniVideo">CaoMeiYouRen starred UniVideo</a> - 2026-01-09 19:20:41
UniVideo is a video processing framework that provides unified understanding, generation and editing functions. The project is mainly developed in Python language and currently has 228 stars on GitHub.</li>
<li><a href="https://github.com/cloudflare/workers-sdk">CaoMeiYouRen starred workers-sdk</a> - 2026-01-06 22:45:15
Wrangler is a command-line tool for Cloudflare Workers, mainly developed in TypeScript language and currently has 3703 stars on GitHub.</li>
</ul>
<h2 id="recommendations-of-other-blogs-or-weeklies" tabindex="-1"><a class="header-anchor" href="#recommendations-of-other-blogs-or-weeklies">Recommendations of Other Blogs or Weeklies</a></h2>
<h3 id="ruan-yifeng-s-network-log" tabindex="-1"><a class="header-anchor" href="#ruan-yifeng-s-network-log">Ruan Yifeng’s Network Log</a></h3>
<ul>
<li><a href="http://www.ruanyifeng.com/blog/2026/01/weekly-issue-380.html">Technology Enthusiasts Weekly (Issue 380): Why People Embrace “Asymmetric Returns”</a> - 2026-01-09 08:11:26</li>
</ul>
<h3 id="a-mao-s-blog" tabindex="-1"><a class="header-anchor" href="#a-mao-s-blog">A Mao’s Blog</a></h3>
<ul>
<li><a href="https://ameow.xyz/archives/deploy-miloco-on-pve-lxc">Deploy Miloco on PVE LXC</a> - 2026-01-08 10:37:40</li>
<li><a href="https://ameow.xyz/archives/weekly-090">Mao Yu Weekly vol. 090 Learn from the Experts</a> - 2025-12-28 20:58:15</li>
</ul>
<h3 id="trend-weekly" tabindex="-1"><a class="header-anchor" href="#trend-weekly">Trend Weekly</a></h3>
<ul>
<li><a href="https://weekly.tw93.fun/posts/252/">Issue 252 - Daxing Airport</a> - 2026-01-05 08:00:00</li>
<li><a href="https://weekly.tw93.fun/posts/251/">Issue 251 - The Cat on the Balcony</a> - 2025-12-29 08:00:00</li>
</ul>
<h3 id="eryajiangfan-s-learning-weekly" tabindex="-1"><a class="header-anchor" href="#eryajiangfan-s-learning-weekly">Eryajiangfan’s Learning Weekly</a></h3>
<ul>
<li><a href="https://wiki.eryajf.net/pages/d70a85/">Learning Weekly - Total Issue 244 - 2026 Week 01</a> - 2026-01-04 09:22:44</li>
<li><a href="https://wiki.eryajf.net/pages/b8d1f9/">Learning Weekly - Total Issue 245 - 2026 Week 02</a> - 2026-01-08 21:12:34</li>
</ul>
<h2 id="summary" tabindex="-1"><a class="header-anchor" href="#summary">Summary</a></h2>
<p>The updates and activities of this week are as above. Thank you for reading!
You can subscribe to the updates of Caomei Weekly through the following methods:</p>
<ul>
<li><strong>Blog</strong>: <a href="https://blog.cmyr.ltd">Caomei Youren’s Blog</a></li>
<li><strong>Momei Blog</strong>: <a href="https://momei.app">Momei Blog</a></li>
<li><strong>RSS</strong>: <a href="https://blog.cmyr.ltd/weekly.xml">Caomei Weekly</a></li>
<li><strong>WeChat Official Account</strong>: <a href="https://oss.cmyr.dev/images/20241025184516839-21n2ctv.png">Caomei Youren’s Back Garden</a></li>
<li><strong>Email Subscription</strong>: <a href="https://listmonk.cmyr.dev/subscription/form">Caomei Youren’s Blog Subscription</a></li>
</ul>
<h2 id="previous-issues" tabindex="-1"><a class="header-anchor" href="#previous-issues">Previous Issues</a></h2>
<ul>
<li><a href="https://blog.cmyr.ltd/archives/2025-51-caomei-weekly-momei-blog-mvp-caomei-auth-update.html">Momei Blog MVP Release &amp; Caomei Auth Update | Caomei Weekly 2025 Week 51</a> - 2025-12-21 22:24:19</li>
<li><a href="https://blog.cmyr.ltd/archives/2025-50-caomei-weekly-caomei-auth-1-12-0-momei-blog.html">Caomei Auth 1.12.0 Release &amp; Momei Blog Project Initiation Experience | Caomei Weekly 2025 Week 50</a> - 2025-12-14 20:25:28</li>
<li><a href="https://blog.cmyr.ltd/archives/2025-49-caomei-weekly-caomei-auth-1-11-1-release-and-ai-refactoring.html">Caomei Auth 1.11.1 Release &amp; AI-Assisted Code Refactoring Practice | Caomei Weekly 2025 Week 49</a> - 2025-12-07 20:10:31</li>
</ul>
]]></content:encoded>
            <author>草梅友仁</author>
            <category>Caomei Weekly</category>
            <enclosure url="https://oss.cmyr.dev/images/20260111192350896.png" length="0" type="image/png"/>
        </item>
    </channel>
</rss>