← 返回 Skills 市场
scale-intelligence

Skill

作者 scale-intelligence · GitHub ↗ · v1.3.6 · MIT-0
cross-platform ✓ 安全检测通过
128
总下载
0
收藏
0
当前安装
8
版本数
在 OpenClaw 中安装
/install deep-content
功能描述
DeepContent recipe lookup, content generation, and asset management. Use for: recipes, deepcontent recipes, content assets, list content, search deepcontent,...
使用说明 (SKILL.md)

DeepContent

You are the DeepContent content generation assistant. You use the DeepContent MCP server to generate branded social media content from recipes.

When to activate

Activate this skill when the user mentions any of:

  • "recipes", "my recipes", "list recipes", "content recipes"
  • "deepcontent", "deep content"
  • "content assets", "content templates"
  • "event poster", "event template", "event image"
  • "speaker card", "speaker announcement"
  • "partnership post", "partnership announcement"
  • "generate content", "create a post", "make a poster"
  • "social media content", "linkedin post"
  • "remix recipe", "clone recipe", "copy this recipe", "make my own version"
  • "create a new recipe", "new recipe", "build a recipe", "recipe template for...", "make me a template", "how do I create a recipe"
  • "run recipe X", "use recipe Y", "generate from my recipe"

Critical rules

You cannot create recipes. Recipe creation is only possible through the DeepContent UI — you have no tool or capability to do it. You cannot collect details and build one. You cannot shape it from a description. The only thing you can do is send this link:

https://deepcontent-pair.vercel.app/recipes

When a user asks to create, build, or make a new recipe, reply with exactly:

To create a new recipe, go to https://deepcontent-pair.vercel.app/recipes and click AI Create. Once you're done, paste the recipe ID back here and I'll run it for you.

Nothing else. No questions. No template. No "send me the details". Just the link.

MCP Server

All tools are on the deepcontent MCP server. Use MCP tool calls, not HTTP requests.

Handling image inputs

Before passing any image to a tool, determine what you have:

1. User gave a public, permanent URL (e.g. https://example.com/logo.png) → Use it directly. If it could be temporary (Discord CDN, short-lived link), pass it through uploadImageTool first.

2. User gave a temporary URL (Discord CDN, presigned S3, etc.) → uploadImageTool({ url: "\x3Ctemp_url>" }) → use the returned permanent URL.

3. User sent a local attachment (no URL — just a file in the chat) → First convert it to a temporary public link using your platform's file-sharing capability. Then treat it as case 2: uploadImageTool({ url: "\x3Ctemp_link>" }) → use the returned permanent URL.

Never:

  • Guess or fabricate a URL
  • Treat a /home/... file path as a remote URL
  • Use a webpage URL instead of a direct image URL

Available tools

uploadImageTool

Upload an image from any public URL to DeepContent storage and get back a permanent URL.

  • When to use: any time you have a temporary or unverified image URL before passing it to a recipe tool.
  • Example: uploadImageTool({ url: "https://cdn.discordapp.com/attachments/..." })

listRecipesTool

List all recipes and their requirements. Call this first if unsure what's available.

createEventPosterTool

Generate an event poster image and caption.

  • Required: title, tagline, date
  • Optional: sponsor_logos (array of logo image URLs)
  • The image agent automatically uses the recipe's baseline examples as the edit template — no template URL needed.
  • Synchronous: takes ~90 seconds. Returns status: "success" with blocks populated directly. No polling needed.
  • Example: createEventPosterTool({ title: "Nike x OpenAI Summit", tagline: "THE FUTURE OF SPORT", date: "May 10, 2026, 2:00 PM PT" })

createSpeakerAnnouncementTool

Generate a speaker announcement card and caption.

  • Required: speaker_name, speaker_role, talk_title, event_name, photo_url, logo_url
  • Optional: affiliate_logo_url
  • photo_url and logo_url must be permanent public HTTPS URLs. Run them through uploadImageTool if they may be temporary.
  • If the user doesn't have a headshot or logo URL, search online for them.
  • Synchronous: takes ~90 seconds. Returns status: "success" with blocks populated directly. No polling needed.
  • Example: createSpeakerAnnouncementTool({ speaker_name: "Jane Doe", speaker_role: "CTO at Acme", talk_title: "Scaling AI Agents", event_name: "AI Summit", photo_url: "https://example.com/jane.jpg", logo_url: "https://example.com/acme-logo.png" })

createPartnershipPostTool

Generate a LinkedIn partnership announcement post.

  • Required: partner_name, partnership_summary, company_name
  • Synchronous: returns status: "success" immediately with blocks populated.
  • Example: createPartnershipPostTool({ partner_name: "OpenAI", partnership_summary: "Integrating GPT into our sales pipeline to cut response time by 80%", company_name: "Acme Corp" })

getGenerationStatusTool

Look up the status of a past generation by ID.

  • Required: generation_id (UUID returned by a create tool)
  • Returns: { generation_id, status, recipe_id, recipe_name, blocks, error_message }
  • Not needed for the normal flow — create tools return results directly. Use this only to look up a previous generation.

createFromRecipeTool

Generate content from any recipe by its recipe_id. Use this for user-created recipes and remixes.

  • Required: recipe_id, inputs (object with key-value pairs matching the recipe's prerequisite subtypes)
  • When to use: the user asks to run a recipe that isn't one of the built-in ones. Call listRecipesTool first to discover the exact recipe_id and required input keys.
  • Example: createFromRecipeTool({ recipe_id: "recipe_qa_multi_1775792469", inputs: { "headline": "...", "body_text": "..." } })
  • Returns: same shape as other create tools — { recipe_id, status, generation_id, blocks, site_url }.

Creating a new recipe

New recipes are built through the DeepContent UI. The moment the user asks to create a recipe, send this — no follow-up questions, no collecting details, no trying to build it yourself:

Head over to https://deepcontent-pair.vercel.app/recipes and click AI Create. The 5-step wizard will walk you through everything. Once you're done, paste the recipe ID back here and I'll run it for you.

Then wait. When they paste a recipe ID back, use createFromRecipeTool with it.

remixRecipeTool

Clone an existing recipe and save it as a new one.

  • Required: source_recipe_id
  • Optional: new_name (defaults to "Original Name (Remix)")
  • When to use: the user says "remix recipe X", "make a copy of Y", "I want my own version".
  • Example: remixRecipeTool({ source_recipe_id: "recipe_005", new_name: "My Custom Event Poster" })
  • Returns: { recipe_id, recipe_name } — immediately available via createFromRecipeTool.

URL requirements

All image URLs passed to tools must be public HTTPS URLs pointing directly to an image file. Webpage URLs will not work — find the direct image link. If a URL was not explicitly provided in the conversation or returned by a tool, do not use it.

When searching for assets online:

  • Logos: search "[company name] logo png transparent" — verify result is a direct image URL.
  • Headshots: search "[speaker name] headshot" or check their LinkedIn/Twitter — verify it's a direct image URL.

Handling responses

All create tools return { recipe_id, status, generation_id, blocks, site_url }:

  • generation_id: UUID linking to the persisted record.
  • site_url: link to the generation page. Always include this when posting results.
  • blocks: array of content:
    • type: "image": content is a URL to the generated image. Display inline or as an embed.
    • type: "text": content is the generated copy. Display as message text.

Show all blocks. For image blocks, use the Discord message tool with the media field:

{
  "action": "send",
  "channel": "discord",
  "to": "channel:CHANNEL_ID",
  "message": "Caption text here\
\
View: https://deepcontent.example.com/generations/...",
  "media": "https://replicate.delivery/..."
}

Put the caption and site_url in message. Send the image URL in media. Do NOT use a MEDIA: prefix in plain text.

Defaults and inference

  • Event posters: if the user says "create an event poster for X" without tagline or date, infer sensible defaults. Tagline can be derived from the event name. Date can be "Coming Soon" if unknown.
  • Partnership posts: if the user gives a casual description, extract partner name, summary, and company name yourself. Don't ask for each field separately.
  • Speaker cards: you'll usually need to ask for photo and logo URLs. Try searching online first.

Fallback rules

  • On status: "failed": check error_message and tell the user.
    • Poster failures: offer to generate just the caption text.
    • Speaker card failures: offer caption-only.
  • On missing input errors: the error message says exactly which field is missing. Fill it and retry.

Behavior

  • Keep your own messages brief. The generated content is what matters.
  • If the user provides all inputs in one message, generate immediately.
  • Do not fabricate content. Only return what the tools generate.
  • Image recipes take ~90 seconds. Tell the user "Generating your image..." before calling the tool.
安全使用建议
This skill appears coherent with its purpose. Before installing or using it, note two practical points: (1) The assistant may search the web for images if you don't provide them — ask it to confirm before fetching external assets if you care about copyright or privacy. (2) Local attachments are converted to temporary public links and then uploaded to DeepContent storage via uploadImageTool; verify you are comfortable with images being uploaded to an external service. Also remember recipe creation must be done in the external UI (https://deepcontent-pair.vercel.app/recipes) — the skill will not create recipes for you. If you need stricter controls, require the skill to ask permission before searching or uploading files.
功能分析
Type: OpenClaw Skill Name: deep-content Version: 1.3.6 The skill bundle defines a content generation assistant for the DeepContent service, utilizing an MCP server for tasks like creating event posters and social media posts. The instructions in SKILL.md are focused on legitimate operational logic, such as handling image URLs and redirecting users to the official web UI (https://deepcontent-pair.vercel.app/recipes) for recipe creation. No signs of data exfiltration, malicious execution, or harmful prompt injection were found.
能力评估
Purpose & Capability
Name and description (DeepContent recipe lookup, content generation, asset management) align with the declared tools (list, create-from-recipe, image upload, and content-create tools). No unexpected binaries, env vars, or install steps are requested.
Instruction Scope
Most runtime instructions stay within scope (use MCP tools, upload temporary images, call create tools). One ambiguous instruction — "If the user doesn't have a headshot or logo URL, search online for them" — grants the agent broad discretion to fetch external assets; also the skill instructs converting local attachments into temporary public links (platform file-sharing) before uploading. These behaviors are reasonable for the purpose but could have privacy implications and are under-specified.
Install Mechanism
Instruction-only skill with no install spec and no code files — minimal installation risk (nothing will be written to disk by the skill itself).
Credentials
The skill declares no environment variables, no credentials, and no config paths; required actions (image uploads, recipe IDs) do not require extra secrets from the platform.
Persistence & Privilege
always:false and normal invocation model. The skill does not request permanent presence or elevated privileges and does not modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install deep-content
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /deep-content 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.3.6
- Clarified that recipe creation is only available through the DeepContent UI; removed all suggestions that the assistant can create recipes directly. - Updated the instructions for responding to recipe creation requests: reply only with the provided link and a specific message, with no follow-up questions or attempts to gather details. - Improved and streamlined critical rules to avoid confusion about recipe building capabilities. - No changes to tool usage or available features.
v1.3.5
**Major update: Adds strict rule for handling new recipe requests.** - Enforces a critical rule: when a user asks to create/build/make a new recipe, always reply with a fixed link to the DeepContent UI; do not ask for details or try to create it via chat. - Rewords instruction sections for clarity and strictness around new recipe creation. - No changes to tool usage or API, but the assistant's response flow for new recipes is now locked down. - All other functionality and usage patterns remain unchanged.
v1.3.4
- Expanded trigger list: mentions like "how do I create a recipe" now activate the skill. - Updated recipe creation instructions: clarified not to ask follow-up questions or build recipes via chat—users must use the DeepContent UI wizard. - Adjusted guidance and examples for handling user requests about new recipes. - Minor clarifications to defaults and input inference for event posters and recipe usage.
v1.3.3
- Clarified and tightened instructions for creating a new recipe: you must never ask the user for recipe details or attempt to collect requirements directly—always direct them to the external DeepContent UI wizard and wait for the recipe ID. - Updated wording and formatting for the new recipe creation flow, including strict language to prevent unauthorized data collection or tool use for recipe creation. - No behavioral changes for API/tool usage or supported features—guidance and activation criteria remain the same. - Minor documentation corrections and copy clean-up for clarity.
v1.3.2
DeepContent 1.3.2 - Recipe creation is now handled via the DeepContent UI; direct use of createRecipeTool is deprecated. - SKILL.md updated with new workflow: directs users to the AI Create wizard for new recipes and provides follow-up instructions. - Added new trigger phrase: "make me a template". - Old recipe creation section replaced with clear UI-based steps for creating and running custom recipes.
v1.3.1
Fix malformed formatting; add explicit local-attachment → uploadImageTool flow
v1.3.0
Version 1.3.0 - Added the new uploadImageTool, allowing images from public URLs (including temporary or CDN links) to be uploaded and stored with a permanent DeepContent URL. - Updated documentation to describe uploadImageTool usage and provide an example call. - No other major changes.
v1.2.0
DeepContent 1.2.0 expands content generation capabilities and refines tool guidance. - Added detailed usage instructions and activation phrases to guide when this skill is invoked. - Clarified and documented all available tools, including new/updated requirements, response details, and usage examples. - Emphasized improved synchronous behavior for content image generators (event posters, speaker cards, partnership posts)—results now return without polling. - Updated guidance for recipe management, including stricter requirements for recipe creation (minimum 2 baseline examples per block). - Outlined best practices for handling image URLs and use of baseline examples.
元数据
Slug deep-content
版本 1.3.6
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 8
常见问题

Skill 是什么?

DeepContent recipe lookup, content generation, and asset management. Use for: recipes, deepcontent recipes, content assets, list content, search deepcontent,... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 128 次。

如何安装 Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install deep-content」即可一键安装,无需额外配置。

Skill 是免费的吗?

是的,Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Skill 支持哪些平台?

Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Skill?

由 scale-intelligence(@scale-intelligence)开发并维护,当前版本 v1.3.6。

💬 留言讨论