From 58cbfdfbe5e43e30e20a8c608d35fb9d78fe0cce Mon Sep 17 00:00:00 2001 From: AnnatarHe Date: Wed, 11 Feb 2026 01:23:02 +0800 Subject: [PATCH 1/2] feat(posts): add EP52 Opus 4.6 podcast episode Add new episode discussing Opus 4.6 capabilities and its potential impact on SaaS. Also update xyzLink schema to allow empty strings for episodes pending platform links. Co-Authored-By: Claude Opus 4.6 --- src/content/config.ts | 2 +- src/content/posts/ep52.mdx | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 src/content/posts/ep52.mdx diff --git a/src/content/config.ts b/src/content/config.ts index 5abf2cf..6318be2 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -9,7 +9,7 @@ const posts = defineCollection({ publicationDate: z.date(), categories: z.array(z.string()), status: z.enum(['draft', 'pending', 'published']), - xyzLink: z.string().url().optional(), + xyzLink: z.union([z.string().url(), z.literal("")]).optional(), draftLink: z.string().url().optional(), youtubeId: z.string().optional(), biliUrl: z.string().optional(), diff --git a/src/content/posts/ep52.mdx b/src/content/posts/ep52.mdx new file mode 100644 index 0000000..bcf23a8 --- /dev/null +++ b/src/content/posts/ep52.mdx @@ -0,0 +1,31 @@ +--- +type: podcast-episode +status: published +slug: /posts/ep52 +guid: 52 +title: EP52 Opus 4.6 很强,那它能干掉 SaaS 吗? +subtitle: Opus 4.6 很强,那它能干掉 SaaS 吗? +publicationDate: 2026-02-11 11:20:00 +author: AnnatarHe +season: 3 +episodeNumber: 52 +episodeType: full +excerpt: EP52 Opus 4.6 很强,那它能干掉 SaaS 吗? +url: "" +size: 0 +duration: 0 +explicit: false +xyzLink: "" +youtubeId: nVvAlFRK2Ak +biliUrl: "" +categories: + - ai + - programming +--- + +### 📕 Shownotes + +Opus 4.6 发布,带来了 1M Context Window, Agent Teams, fast model, effort 参数 +那么,它是否真的强到足以真正冲击高度发展的软件开发行业,能否真的打击到专业 SaaS 平台? + +BGM by Otologic From 5b83547925730930db92139ea782abdaadb49c13 Mon Sep 17 00:00:00 2001 From: AnnatarHe Date: Wed, 11 Feb 2026 23:29:21 +0800 Subject: [PATCH 2/2] feat(posts): add platform links for EP52 episode Co-Authored-By: Claude Opus 4.6 --- src/content/posts/ep52.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/posts/ep52.mdx b/src/content/posts/ep52.mdx index bcf23a8..43f79d5 100644 --- a/src/content/posts/ep52.mdx +++ b/src/content/posts/ep52.mdx @@ -11,13 +11,13 @@ season: 3 episodeNumber: 52 episodeType: full excerpt: EP52 Opus 4.6 很强,那它能干掉 SaaS 吗? -url: "" +url: https://www.xiaoyuzhoufm.com/episode/698bf7ffe33e1b1e6c03b51c size: 0 duration: 0 explicit: false -xyzLink: "" +xyzLink: https://www.xiaoyuzhoufm.com/episode/698bf7ffe33e1b1e6c03b51c youtubeId: nVvAlFRK2Ak -biliUrl: "" +biliUrl: https://www.bilibili.com/video/BV1yvFXzuEfY categories: - ai - programming