publish-weekly

0
0
Source

使用 Payload REST API 将周刊写入 CMS(发布为草稿),通过 users API Key 认证。

Install

mkdir -p .claude/skills/publish-weekly && curl -L -o skill.zip "https://mcp.directory/api/skills/download/4988" && unzip -o skill.zip -d .claude/skills/publish-weekly && rm skill.zip

Installs to .claude/skills/publish-weekly

About this skill

Publish Weekly(草稿发布)

此技能用于将本地生成的周刊 Markdown 文件发布到 Payload CMS 的 weekly 集合中,并保持为 草稿status: draft)。

前置条件

  • 环境变量 PAYLOAD_API_KEY:来自 Payload users 集合为某个用户生成的 API Key。
  • 环境变量 PAYLOAD_BASE_URL(推荐):Payload/Next.js 服务的公开地址(例如 http://localhost:3000)。

输入

/weekly 命令的参数块中获取:

  • week_id:如 Y26W12(写入 issueNumber
  • title:写入 title
  • filename:周刊 Markdown 文件名(从工作目录读取该文件内容,写入 content
  • current_date:写入 publishDate(ISO 日期字符串)

可选:

  • summary:周刊描述/摘要(写入 summary)。若未提供则从 content 提炼。
  • tags:标签(字符串数组,例如 ["模型", "工具"])。写入 tags 数组字段。
  • links:链接列表(对象数组,形如 [{ label, url }]),写入 links

发布目标

  • Collection: weekly
  • REST Endpoint:
    • 查询:GET {BASE_URL}/api/weekly?where[issueNumber][equals]={week_id}&limit=1
    • 创建:POST {BASE_URL}/api/weekly
    • 更新:PATCH {BASE_URL}/api/weekly/{id}

认证方式(HTTP Header)

必须使用 Payload 的 API Key 认证头:

Authorization: users API-Key {PAYLOAD_API_KEY}
Content-Type: application/json

字段映射

发布/更新时写入以下字段:

  • title(text, required): {title}
  • summary(textarea, required):
    • 若提供了 {summary}:直接使用
    • 否则:从 content 提炼 1-2 句话(不超过 200 字);如果文章开头已包含“摘要/导语”,优先复用
  • content(textarea, required): 读取 {filename} 的完整 Markdown 内容
  • issueNumber(text, required, unique): {week_id}
  • status(select, required): 固定写入 draft
  • publishDate(date, required): {current_date}(建议 YYYY-MM-DD

可选字段(若无就留空/不传):

  • links(array): {links},元素结构为 { label: string, url: string }
  • tags(array): 将 {tags}(字符串数组)转换为 [{ value: string }]

请求 Body 示例

{
  "title": "Agili 的 AIGC 周刊(Y26W12)",
  "issueNumber": "Y26W12",
  "publishDate": "2026-03-25",
  "status": "draft",
  "summary": "本期聚焦推理模型的工程化落地,以及一批值得试用的生产力工具。",
  "content": "# ...完整 Markdown...",
  "links": [{ "label": "在线阅读", "url": "https://aigc-weekly.agi.li" }],
  "tags": [{ "value": "模型" }, { "value": "工具" }]
}

行为约束

  1. 幂等:优先按 issueNumber == week_id 查询:
    • 若已存在:用 PATCH 更新(覆盖 title/summary/content/publishDate/status/links/tags)。
    • 若不存在:用 POST 创建。
  2. 保持草稿:无论是创建还是更新,都必须写入 status: "draft"
  3. 产物落盘:将创建/更新成功的响应 JSON 保存为 published/{week_id}.json,用于后续恢复与审计。
  4. 失败可诊断:若请求失败,输出:HTTP 状态码、响应 body(若有)、请求的 URL(不要泄露 PAYLOAD_API_KEY)。

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

643969

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

591705

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318398

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

339397

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

451339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.