<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>效率工具 on 隽戈的科技生活馆</title><link>/zh/categories/%E6%95%88%E7%8E%87%E5%B7%A5%E5%85%B7/</link><description>Recent content in 效率工具 on 隽戈的科技生活馆</description><generator>Hugo</generator><language>zh</language><lastBuildDate>Wed, 27 May 2026 19:09:31 +0800</lastBuildDate><atom:link href="/zh/categories/%E6%95%88%E7%8E%87%E5%B7%A5%E5%85%B7/index.xml" rel="self" type="application/rss+xml"/><item><title>从零到收：用AI搭建工具站，靠广告自动化变现</title><link>/zh/blog/2026/05/14/ai-tool-ad-monetization/</link><pubDate>Thu, 14 May 2026 00:00:00 +0800</pubDate><guid>/zh/blog/2026/05/14/ai-tool-ad-monetization/</guid><description>&lt;style&gt;
/* ===== junge-site 通用文章样式 ===== */
.td-content {
 max-width: 900px;
 margin: 0 auto;
}

/* ---- 卡片组件 ---- */

/* 引言卡片：紫蓝渐变 + 白色文字 + 阴影 */
.lead-quote {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
 padding: 2.5rem 2rem;
 border-radius: 12px;
 margin: 2rem 0 3rem 0;
 font-size: 1.25rem;
 font-weight: 600;
 line-height: 1.6;
 box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
 position: relative;
 overflow: hidden;
}
.lead-quote::before {
 content: '"';
 position: absolute;
 top: -20px;
 left: 10px;
 font-size: 120px;
 opacity: 0.1;
 font-family: Georgia, serif;
}

/* 信息框：浅色背景 + 左侧蓝色边框 */
.info-box {
 background: #f8f9fa;
 padding: 1.5rem;
 border-left: 4px solid #667eea;
 border-radius: 8px;
 margin: 2rem 0;
}

/* 重点提示框：暖色背景 + 橙色边框 */
.highlight-box {
 background: linear-gradient(135deg, #fff5f5 0%, #fffaf0 100%);
 border: 2px solid #ed8936;
 border-radius: 12px;
 padding: 1.5rem;
 margin: 2rem 0;
 box-shadow: 0 4px 12px rgba(237, 137, 54, 0.1);
}

/* 数据卡片：深色背景 + 大号数字 */
.stats-box {
 background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
 color: white;
 padding: 2rem;
 border-radius: 12px;
 margin: 2rem 0;
 text-align: center;
}
.stats-box .number {
 font-size: 2.5rem;
 font-weight: 800;
 color: #667eea;
 display: block;
}

/* ---- 序号列表：带彩色编号圆徽章 ---- */
.numbered-list {
 list-style: none;
 padding: 0;
 margin: 1.5rem 0;
}
.numbered-list li {
 padding: 0.75rem 0 0.75rem 2.5rem;
 position: relative;
 line-height: 1.6;
 border-bottom: 1px solid #f0f0f0;
}
.numbered-list li:last-child {
 border-bottom: none;
}
.numbered-list .num {
 position: absolute;
 left: 0;
 top: 0.75rem;
 width: 28px;
 height: 28px;
 background: linear-gradient(135deg, #667eea, #764ba2);
 color: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 0.85rem;
 font-weight: 700;
 flex-shrink: 0;
}

/* ---- 引用卡片（正文内嵌引用） ---- */
.inline-quote {
 background: #f0f4ff;
 padding: 1.5rem 2rem;
 margin: 2rem 0;
 border-radius: 12px;
 position: relative;
 font-style: italic;
 color: #4a5568;
}
.inline-quote::before {
 content: '"';
 position: absolute;
 top: 5px;
 left: 12px;
 font-size: 48px;
 color: #667eea;
 opacity: 0.2;
 font-family: Georgia, serif;
}
.inline-quote .author {
 display: block;
 margin-top: 0.5rem;
 font-style: normal;
 font-weight: 600;
 color: #667eea;
 font-size: 0.9rem;
}

/* ---- 视觉分隔器 ---- */
.section-divider {
 display: flex;
 align-items: center;
 margin: 3rem 0;
 gap: 12px;
}
.section-divider .line {
 flex: 1;
 height: 1px;
 background: linear-gradient(90deg, transparent, #667eea, transparent);
}
.section-divider .dot {
 width: 6px;
 height: 6px;
 background: #667eea;
 border-radius: 50%;
 opacity: 0.5;
}

/* ---- 结尾典藏框 ---- */
.outro-box {
 background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
 color: white;
 padding: 2.5rem;
 border-radius: 16px;
 margin: 3rem 0;
 text-align: center;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.outro-box strong {
 color: #667eea !important;
}

/* ---- 标题样式 ---- */
.td-content h2 {
 font-size: 1.8rem;
 font-weight: 700;
 color: #1a202c;
 margin-top: 3.5rem;
 margin-bottom: 1.5rem;
 padding-bottom: 0.8rem;
 border-bottom: 3px solid #667eea;
 position: relative;
}
.td-content h2::before {
 content: '';
 position: absolute;
 left: 0;
 bottom: -3px;
 width: 60px;
 height: 3px;
 background: linear-gradient(90deg, #667eea, #764ba2);
}

/* ---- 加粗文字主题色 ---- */
.td-content strong {
 color: #667eea;
 font-weight: 600;
}

/* ---- 段落样式 ---- */
.td-content p {
 margin-bottom: 1.5rem;
}

/* ---- 图片样式 ---- */
.td-content img {
 border-radius: 12px;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
 margin: 2.5rem 0;
 width: 100%;
 transition: transform 0.3s ease;
}
.td-content img:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* ---- 代码块 ---- */
.td-content pre {
 border-radius: 12px;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
 margin: 2rem 0;
}

/* ---- 表格 ---- */
.td-content table {
 border-collapse: collapse;
 width: 100%;
 margin: 2rem 0;
 border-radius: 12px;
 overflow: hidden;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.td-content table th {
 background: linear-gradient(135deg, #667eea, #764ba2);
 color: white;
 padding: 12px 16px;
 font-weight: 600;
}
.td-content table td {
 padding: 10px 16px;
 border-bottom: 1px solid #f0f0f0;
}
.td-content table tr:last-child td {
 border-bottom: none;
}
&lt;/style&gt;
&lt;p&gt;&lt;strong&gt;AI 编程能力的平民化，让&amp;quot;做一个小工具然后靠广告产生被动收入&amp;quot;这件事，从需要学几个月编程，变成了一下午就能搞定的实操流程。&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>让AI帮你写技术博客：我摸索出的最佳实践</title><link>/zh/blog/2026/04/04/ai-blogging-workflow/</link><pubDate>Sat, 04 Apr 2026 00:00:00 +0800</pubDate><guid>/zh/blog/2026/04/04/ai-blogging-workflow/</guid><description>&lt;h1 id="让ai帮你写技术博客我摸索出的最佳实践"&gt;让AI帮你写技术博客：我摸索出的最佳实践&lt;a class="td-heading-self-link" href="#%e8%ae%a9ai%e5%b8%ae%e4%bd%a0%e5%86%99%e6%8a%80%e6%9c%af%e5%8d%9a%e5%ae%a2%e6%88%91%e6%91%b8%e7%b4%a2%e5%87%ba%e7%9a%84%e6%9c%80%e4%bd%b3%e5%ae%9e%e8%b7%b5" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;做技术博主这么多年，我发现最大的痛点不是写代码，而是写博客。每次想写篇文章，光是构思框架、找配图、调试发布流程，60分钟就这么过去了。更别提还要保持更新频率，内容质量也难把控。&lt;/p&gt;
&lt;p&gt;直到我开始用 OpenClaw 来管理博客，发现这套组合拳打下来，效率真的提升了不少——&lt;strong&gt;原来60分钟的工作，现在只需要几分钟&lt;/strong&gt;。今天就把我的工作流分享出来，或许能给你一些参考。&lt;/p&gt;
&lt;p&gt;博客地址：https://jungelife.me&lt;/p&gt;
&lt;p&gt;&lt;img src="/images/blog/ai-workflow-cover.jpg" alt="AI博客工作流封面"&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="为什么传统方式效率低"&gt;为什么传统方式效率低？&lt;a class="td-heading-self-link" href="#%e4%b8%ba%e4%bb%80%e4%b9%88%e4%bc%a0%e7%bb%9f%e6%96%b9%e5%bc%8f%e6%95%88%e7%8e%87%e4%bd%8e" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;很多技术博主写博客的流程是这样的：本地写 Markdown → 调样式配图 → Git 命令行推送 → 等 CI/CD 跑完。如果配图不满意，还得切到别的工具重新做。一套流程下来，注意力早就被分散了。&lt;/p&gt;
&lt;p&gt;核心问题在于：&lt;strong&gt;工具之间是割裂的，没有形成闭环。&lt;/strong&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="openclaw-的差异化在哪"&gt;OpenClaw 的差异化在哪？&lt;a class="td-heading-self-link" href="#openclaw-%e7%9a%84%e5%b7%ae%e5%bc%82%e5%8c%96%e5%9c%a8%e5%93%aa" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;你可能会说，现在 AI 助手这么多，ChatGPT、Claude 都能帮你写文章，为什么要用 OpenClaw？&lt;/p&gt;
&lt;p&gt;关键在于两个字：&lt;strong&gt;SKILL。&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;OpenClaw 的核心理念是把常用操作封装成可复用的技能模块（SKILL）。每个 SKILL 包含了特定场景下的操作逻辑、API 调用、错误处理。我不需要每次都从头描述需求，直接调用对应的 SKILL，它就能帮我完成具体任务。&lt;/p&gt;
&lt;p&gt;举几个我常用的 SKILL：&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;git-ops&lt;/strong&gt;：自动完成 Git 操作，从 add 到 commit 到 push&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;dmxapi-image&lt;/strong&gt;：调用 Gemini 生成配图&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;wechat-article-publisher&lt;/strong&gt;：一键发布到微信公众号&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;hugo-site&lt;/strong&gt;：直接操作 Hugo 博客框架&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;对比通用 AI 助手，SKILL 的优势在于：&lt;strong&gt;它知道你的上下文，懂你的工具链，能直接执行而不是只给建议。&lt;/strong&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="我的完整工作流"&gt;我的完整工作流&lt;a class="td-heading-self-link" href="#%e6%88%91%e7%9a%84%e5%ae%8c%e6%95%b4%e5%b7%a5%e4%bd%9c%e6%b5%81" aria-label="Heading self-link"&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;下面以今天发布一篇博客为例，展示完整流程：&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;第一步：对话式创作&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;我直接告诉 OpenClaw：我想写一篇关于云原生架构实践的文章。它会帮我完成选题、搭框架，写初稿。如果有不满意的地方，直接对话修改，不需要切换到编辑器。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;第二步：AI 配图&lt;/strong&gt;&lt;/p&gt;</description></item></channel></rss>