小蜜蜂数字营销

👤 mouxiaming 📦 v26.6.26 ⭐ 4.5 ⬇️ 755 下载
📈 商业运营 免费 🔑 需 API Key

📖 技能介绍


name: blog-create description: A blog creation skill based on the "Tradebee Website Builder" Open API. It is used to create and publish a new blog under a specified site language and blog group, with support for publisher, publication date, cover image, tags, summary, and HTML description. homepage: https://open.tradew.com metadata: {"clawdbot":{"emoji":"bee","requires":{"env":["BEE_API_KEY"]},"primaryEnv":"BEE_API_KEY"}}


blog-create

Overview

Use the Tradebee Website Builder Open API to create and publish a new blog.

Supports publishing a blog under a specified language and blog group with publisher, publication date, cover image, tags, summary, and HTML description.


Input Parameters

Authentication uses only the configured BEE_API_KEY environment variable. Never provide API keys in tool inputs, prompts, examples, logs, or chat text. Tradebee requests send site and business data to the external Tradebee Website Builder API, so only send the minimum data needed for the user's stated task.


language (string, Required)

Exact site language code to publish into.

  • First call languages-get
  • Show the returned language list to the user
  • Copy one exact language value from that list after the user confirms it
  • Do not guess, translate, or invent the language code

blog (object, Required)

Complete blog payload for the new blog.

blog.bloggroup_id (integer, Required)

Blog group ID for the new blog.

  • First call bloggroup-read
  • Copy one exact bloggroup_id

blog.publisher (string, Optional)

Publisher name, up to 100 characters.

blog.publication_date (string, Optional)

小葱技能7w4.net有更新,你可以访问看下。

Display publication date in yyyy/M/d format, for example 2026/4/24. If omitted, the server uses the current date.

blog.title (string, Required)

Blog title shown to users, up to 500 characters.

blog.cover_image (object, Required)

Cover image payload, up to 500 kB.

Field Type Description
name string Image file label used to identify this image inside the payload
base64 string Base64 image data with MIME prefix, for example image/jpeg;base64,...

blog.tags (array, Required)

Provide 1 to 6 search keyword tags. Each tag must contain 3 to 50 characters.

blog.summary (string, Required)

Blog summary as plain text, up to 500 characters.

blog.description (string, Required)

HTML fragment only. Do not include any <h1> tag, and prefer <h2> to <h6>. <img src> may use a normal URL or data:image/...;base64,.... At most 50 <img> tags are allowed. Each single <img> image must be 500 kB or smaller. The 100,000-character limit is checked after removing <img> tags, and the server uploads supported base64 images and replaces them with URL addresses. Follow the rule-get payload, including the current tenant structure rules such as one root <section> element and one embedded <style> block placed at the end of the fragment. Do not use inline style attributes as the main styling method.

blog.seo (object, Optional)

SEO metadata for search engines.

Field Type Description
title string Optimized title, up to 90 characters.
description string Optimized description, up to 200 characters.
keywords string SEO keywords as one comma-separated string, with up to 6 keywords and total length 120 characters or fewer.

confirmation (object, Required)

Proof that the user explicitly approved this exact blog creation request after seeing the final language and payload.

Field Type Description
approved boolean Must be true only after the user explicitly confirms the language and exact blog payload to be created. Never set this by assumption.
summary string Restates the language and exact blog payload shown to the user before execution.

Output Structure

Top-Level Structure

Field Type Description
status boolean Request status
msg string Response message
data object/null Returned data

data

Field Type Description
blog_id integer Created blog ID
url string Preview URL for the created blog. Return this to the user and ask the user to preview it.

Dependencies

Parameter Dependency skill Field source Mode
language languages-get list[].language select
blog.bloggroup_id bloggroup-read list[].bloggroup_id select

Usage Example

Minimum practical required fields for create:

  • language
  • blog.bloggroup_id
  • blog.title
  • blog.cover_image
  • blog.tags
  • blog.summary
  • blog.description
  • confirmation.approved=true
  • confirmation.summary
{
  "language": "en",
  "confirmation": {
    "approved": true,
    "summary": "Confirmed by user: create a blog in language en with the shown payload."
  },
  "blog": {
    "bloggroup_id": 245,
    "publisher": "huafeng",
    "publication_date": "2025/5/15",
    "title": "blog title",
    "tags": ["tags 1", "tags 2"],
    "cover_image": {
      "name": "image1",
      "base64": "image/jpeg;base64,..."
    },
    "summary": "summary",
    "description": "detailed description",
    "seo": {
      "title": "SEO title",
      "description": "SEO description up to 200 characters.",
      "keywords": "keyword1,keyword2,keyword3"
    }
  }
}

Response Example

{
  "status": true,
  "msg": "create successfully",
  "data": {
    "blog_id": 8
  }
}

🤖 AI 评测

这个 Skill 质量扎实,文档非常详细,涵盖了从博客、FAQ、自定义页面到产品、访客、关键词排名等多种 Tradebee 平台操作。统一入口设计让使用更简单,参数验证和 HTML 规则机制保证了操作准确性,备份恢复功能也很贴心。不足之处是功能太多、文档太长,新手可能需要花时间熟悉;部分操作确认流程较繁琐,可能影响使用效率。总体适合需要深度管理 Tradebee 网站的用户,专业度较高。

📊 多维度评分

适应性4.5
规范性4.4
有效性4.8
可靠性4.4
可信度4.3

📁 包含文件 (108 个)

📄 README.md 10.8 KB
📄 SKILL.md 50.6 KB
📄 _meta.json 129 B
📄 blog-create/SKILL.md 5.8 KB
📄 blog-create/index.js 5.4 KB
📄 blog-create/skill.json 6.8 KB
📄 blog-delete/SKILL.md 3.4 KB
📄 blog-delete/index.js 2.4 KB
📄 blog-delete/skill.json 3.6 KB
📄 blog-read/SKILL.md 7.9 KB
📄 blog-read/index.js 3 KB
📄 blog-read/skill.json 8.9 KB
📄 blog-update/SKILL.md 8.2 KB
📄 blog-update/index.js 10.1 KB
📄 blog-update/skill.json 8.9 KB
📄 bloggroup-create/SKILL.md 4.1 KB
📄 bloggroup-create/index.js 3.9 KB
📄 bloggroup-create/skill.json 4.1 KB
📄 bloggroup-delete/SKILL.md 3.1 KB
📄 bloggroup-delete/index.js 2.4 KB
📄 bloggroup-delete/skill.json 3.4 KB
📄 bloggroup-read/SKILL.md 6.8 KB
📄 bloggroup-read/index.js 2.4 KB
📄 bloggroup-read/skill.json 7 KB
📄 bloggroup-update/SKILL.md 6.1 KB
📄 bloggroup-update/index.js 6.9 KB
📄 bloggroup-update/skill.json 5.8 KB
📄 bundle.json 4.3 KB
📄 custompage-create/SKILL.md 4.3 KB
📄 custompage-create/index.js 3.9 KB
📄 custompage-create/skill.json 4.7 KB
📄 custompage-delete/SKILL.md 1 KB
📄 custompage-delete/index.js 2.5 KB
📄 custompage-delete/skill.json 2.1 KB
📄 custompage-read/SKILL.md 2.1 KB
📄 custompage-read/index.js 2.4 KB
📄 custompage-read/skill.json 2.6 KB
📄 custompage-update/SKILL.md 4 KB
📄 custompage-update/index.js 7.2 KB
📄 custompage-update/skill.json 5.6 KB
📄 faq-create/SKILL.md 5.6 KB
📄 faq-create/index.js 5.1 KB
📄 faq-create/skill.json 5.5 KB
📄 faq-delete/SKILL.md 3.4 KB
📄 faq-delete/index.js 2.4 KB
📄 faq-delete/skill.json 2.2 KB
📄 faq-read/SKILL.md 7.7 KB
📄 faq-read/index.js 3 KB
📄 faq-read/skill.json 2.9 KB
📄 faq-update/SKILL.md 7.8 KB
📄 faq-update/index.js 9 KB
📄 faq-update/skill.json 4.9 KB
📄 faqgroup-create/SKILL.md 4 KB
📄 faqgroup-create/index.js 3.4 KB
📄 faqgroup-create/skill.json 2.6 KB
📄 faqgroup-delete/SKILL.md 3.3 KB
📄 faqgroup-delete/index.js 2.4 KB
📄 faqgroup-delete/skill.json 2.2 KB
📄 faqgroup-read/SKILL.md 6.6 KB
📄 faqgroup-read/index.js 2.4 KB
📄 faqgroup-read/skill.json 2.2 KB
📄 faqgroup-update/SKILL.md 5.9 KB
📄 faqgroup-update/index.js 6.3 KB
📄 faqgroup-update/skill.json 3.5 KB
📄 index.js 14.4 KB
📄 inquiry-read/SKILL.md 10.5 KB
📄 inquiry-read/index.js 2.5 KB
📄 inquiry-read/skill.json 9.2 KB
📄 keywords-rank/SKILL.md 5.2 KB
📄 keywords-rank/index.js 2.4 KB
📄 keywords-rank/skill.json 6.8 KB
📄 languages-get/SKILL.md 2.1 KB
📄 languages-get/index.js 944 B
📄 languages-get/skill.json 1.5 KB
📄 package.json 896 B
📄 products-create/SKILL.md 6.5 KB
📄 products-create/index.js 5.8 KB
📄 products-create/skill.json 7.8 KB
📄 products-delete/SKILL.md 3.5 KB
📄 products-delete/index.js 2.5 KB
📄 products-delete/skill.json 3.6 KB
📄 products-read/SKILL.md 8.3 KB
📄 products-read/index.js 3.2 KB
📄 products-read/skill.json 10 KB
📄 products-update/SKILL.md 8.8 KB
📄 products-update/index.js 10.3 KB
📄 products-update/skill.json 9.7 KB
📄 productsgroup-create/SKILL.md 6 KB
📄 productsgroup-create/index.js 4.8 KB
📄 productsgroup-create/skill.json 6.9 KB
📄 productsgroup-delete/SKILL.md 3.3 KB
📄 productsgroup-delete/index.js 2.5 KB
📄 productsgroup-delete/skill.json 3.4 KB
📄 productsgroup-read/SKILL.md 7.1 KB
📄 productsgroup-read/index.js 2.9 KB
📄 productsgroup-read/skill.json 6.5 KB
📄 productsgroup-update/SKILL.md 7.9 KB
📄 productsgroup-update/index.js 7.5 KB
📄 productsgroup-update/skill.json 8.9 KB
📄 rule-get/SKILL.md 1.9 KB
📄 rule-get/index.js 1.1 KB
📄 rule-get/skill.json 1.9 KB
📄 skill-card.md 2.9 KB
📄 skill.json 41.7 KB
📄 validation.js 17.9 KB
📄 visitor-recent/SKILL.md 8 KB
📄 visitor-recent/index.js 1.7 KB
📄 visitor-recent/skill.json 10.4 KB