diff --git a/src/components/VideoEmbed.astro b/src/components/VideoEmbed.astro
index 54de916..c3af5e6 100644
--- a/src/components/VideoEmbed.astro
+++ b/src/components/VideoEmbed.astro
@@ -3,17 +3,26 @@ import { YouTube } from '@astro-community/astro-embed-youtube'
interface Props {
youtubeId: string
- bilibiliUrl: string
+ bilibiliUrl?: string
}
const { youtubeId, bilibiliUrl } = Astro.props
---
-
+
-
+ {
+ bilibiliUrl && (
+
+ )
+ }
diff --git a/src/content/posts/ep72.mdx b/src/content/posts/ep72.mdx
new file mode 100644
index 0000000..834bdb1
--- /dev/null
+++ b/src/content/posts/ep72.mdx
@@ -0,0 +1,64 @@
+---
+type: podcast-episode
+status: published
+slug: /posts/ep72
+guid: 72
+title: "EP72 YoooClaw:给 AI 一具身体"
+subtitle: "从通知总结、会议记录到个人 Context,聊聊软硬件结合的 AI Agent"
+publicationDate: 2026-07-31 14:00:00
+author: AnnatarHe
+season: 3
+episodeNumber: 72
+episodeType: full
+excerpt: "EP72 YoooClaw:给 AI 一具身体——从通知总结、会议记录到个人 Context,聊聊软硬件结合的 AI Agent"
+url: https://youtu.be/7mbOHd_EWZw
+size: 0
+duration: 0
+explicit: false
+youtubeId: 7mbOHd_EWZw
+categories:
+ - YoooClaw
+ - OpenClaw
+ - AIAgent
+ - AI硬件
+ - 智能硬件
+ - 人工智能
+ - 个人AI
+ - 语音助手
+ - 通知总结
+ - 会议记录
+ - 大模型
+ - GLM52
+ - DeepSeek
+ - AppleIntelligence
+ - 软硬件结合
+ - AI助手
+ - Context
+ - 科技产品
+ - AsyncTalk
+---
+
+### 📕 Shownotes
+
+当 AI Agent 不再只存在于聊天框里,它会变成什么?
+
+本期体验一款很有意思的软硬件结合产品——YoooClaw。它像一个吸附在手机背面的“小型 AI 硬件”,可以通过语音直接向 OpenClaw 下达任务,还能读取并总结手机通知、通过 RGB 灯带反馈重要消息,以及录制对话、识别不同发言者并生成会议总结。
+
+它还支持切换 DeepSeek、GLM 5.2 等不同模型。但比具体功能更值得讨论的,是 YoooClaw 所代表的产品方向:
+
+模型可以替换,App 和 Agent 框架也可以替换,但持续积累的个人上下文、稳定存在的硬件入口,以及从信息感知到任务执行的完整闭环,可能才是 AI 时代真正的护城河。
+
+某种意义上,YoooClaw 就是在尝试给 OpenClaw 一具真实的“身体”。
+
+当然,目前的产品仍然存在不少问题:任务结果展示不够完善、系统推送和定时任务尚未形成完整闭环,位置等上下文也没有得到充分利用。更重要的是,当一个设备能够读取通知、录制音频并长期积累个人信息时,隐私和数据安全将成为无法回避的问题。
+
+这期视频会聊到:
+
+- YoooClaw 如何通过硬件与 OpenClaw 交互
+- AI 通知总结与 Apple Intelligence 的体验差异
+- 录音、发言人识别和会议总结
+- 为什么持续积累的 Context 如此重要
+- 硬件入口为什么可能成为 AI 产品的商业护城河
+- YoooClaw 当前的产品缺陷与隐私风险
+
+你认为这种软硬件结合的 AI Agent,会成为下一代个人 AI 助手的主流形态吗?
diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro
index 814e591..c074eae 100644
--- a/src/pages/posts/[...slug].astro
+++ b/src/pages/posts/[...slug].astro
@@ -111,17 +111,21 @@ const imgUrl = `${Astro.site?.origin}${post.id}-og.png`;
{new Intl.DateTimeFormat().format(frontData.publicationDate)}
-
-
- 小宇宙 - {frontData.title}
-
-
-
+ {
+ frontData.xyzLink && (
+
+
+ 小宇宙 - {frontData.title}
+
+
+
+ )
+ }
{
frontData.draftLink && (
@@ -148,13 +152,22 @@ const imgUrl = `${Astro.site?.origin}${post.id}-og.png`;
}
-
-
+ {
+ post.data.xyzLink && (
+ <>
+
+
+ >
+ )
+ }
{
- frontData.youtubeId && frontData.biliUrl && (
+ frontData.youtubeId && (
<>
-
+
>
)
@@ -201,4 +214,4 @@ const imgUrl = `${Astro.site?.origin}${post.id}-og.png`;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
-
\ No newline at end of file
+