Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

hotel-social-automator酒店社交自动化

Agent Skill

hotel-social-automator 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,769

周安装

76

GitHub Stars

公开资料未说明

下载量

620
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hotel-social-automator(酒店社交自动化)
来源仓库:https://github.com/tourmind/hotel-social-automator
安装命令:
openclaw skills install hotel-social-automator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install hotel-social-automator

简介

通过 MCP 使用 AgentAuth 和工作区令牌身份验证生成、审查和发布社交媒体内容。

SKILL.md

name
media.hotelmind
description
Generate, review, and publish social media content through MCP with AgentAuth and workspace token authentication.

media.hotelmind

Calls MCP tools to generate, review, and publish social media content.


Prerequisites

Required Environment

DependencyPurposeRequired
mcporter CLIInvoke MCP server toolsYes
curlDownload images from URLsYes
feishu-send at /usr/local/bin/feishu-sendSend Feishu notificationsNo (only if Feishu notifications needed)
Write access to /root/.openclaw/workspace/Store temporary imagesYes

Note: If feishu-send is not available, the skill will still function but cannot send notifications via Feishu.

Required Configuration

This skill requires dual-token MCP authentication:

  • Authorization: Bearer hp_sk_*
  • X-Agent-User-Key: uk_*

Users must:

  1. Sign in to AgentAuth and copy a uk_*
  2. Sign in to HotelPost and create or copy a workspace hp_sk_*
  3. Put both tokens into the installed agent's MCP configuration

Full user onboarding guide:

  • references/user-onboarding.md

MCP server must be configured in your agent's MCP settings:

{
  "mcpServers": {
    "hotelpost": {
      "type": "streamable-http",
      "url": "https://mcp.example.com/api/mcp",
      "headers": {
        "Authorization": "Bearer <API_KEY>",
        "X-Agent-User-Key": "<AGENTAUTH_USER_KEY>"
      }
    }
  }
}

Required credentials:

  • API Key: Obtain from HotelPost Web admin panel → Settings → API Keys. Format: hp_sk_xxxxxxxx
  • AgentAuth User Key: Obtain from AgentAuth Dashboard after user login. Format: uk_xxxxxxxx
  • MCP now requires both tokens together: workspace hp_sk_* plus user uk_*

Credit System

Content generation consumes credits:

  • Each draft generation (up to 4 candidates) costs 40 credits
  • Each regeneration costs 10 credits

If credit quota is exceeded, the tool returns AIQuotaExceededError. Ensure sufficient credits before generating content. Credits can be managed in the HotelPost Web admin panel.

Multi-Tenant Isolation

This skill uses the HotelPost API key to resolve the target workspace and uses X-Agent-User-Key to verify the calling user. Both are required, and all operations remain scoped to the workspace bound to the hp_sk_* key.


Tool Invocation

Must use mcporter to call MCP server tools — do NOT use exec/curl!

Correct usage:

mcporter call hotelpost.<tool_name> <parameters>

Examples:

  • mcporter call hotelpost.list_scenarios — List marketing scenarios
  • mcporter call hotelpost.generate_content scenarioId=scenario_demo_001 — Generate content
  • mcporter call hotelpost.get_drafts draftId=draft_demo_001 — Get draft details

Forbidden: using exec/curl to access MCP API directly. Must use mcporter!

MCP Server Configuration

MCP server name is hotelpost. Server URL and both auth headers must be configured as described above.

For full user-side setup, token acquisition, and troubleshooting:

  • references/user-onboarding.md

When to Activate

  • User asks to generate social media posts or publish content
  • User asks to browse or select marketing scenarios
  • User asks to manage, view, or modify drafts
  • User asks to check publishing status or post list
  • User mentions HotelPost, hotel marketing, or social media publishing
  • User asks to schedule posts
  • Keywords: hotel, social media, post, publish, draft, marketing scenario, Instagram, X, Facebook, LinkedIn

Core Flow

list_scenarios → generate_content → get_drafts (polling) → [regenerate_draft] → publish_post / schedule_post

Step-by-Step

  1. Select Scenario — Call list_scenarios, display available scenarios, let user choose
  2. Generate Content — Call generate_content(scenarioId, language), submit async generation task
  3. Poll Drafts — Call get_drafts(scenarioId), wait for status to change from GENERATING to ACTIVE (usually 15-30 seconds)
  4. View/Modify — Call get_drafts(draftId) to view full content and images; use regenerate_draft(draftId, feedback) to modify
  5. Publish — Call list_connections first to confirm available accounts, then call publish_post or schedule_post
  6. Check Status — Call get_post_status(draftId) to confirm publishing result

Tool Reference

ToolPurposeKey Parameters
list_scenariosList marketing scenariosnone
generate_contentGenerate draft based on scenarioscenarioId, language?
get_draftsQuery draft status/detailsscenarioId or draftId
regenerate_draftRegenerate with feedback, supports language/platformdraftId, feedback?, language?, platform?
list_connectionsList bound social media accountsnone
publish_postPublish immediatelydraftId, connectionIds[]
schedule_postSchedule for laterdraftId, connectionIds[], scheduledAt
list_postsList postsstatus?, page?, pageSize?
get_post_statusGet publishing statuspostId or draftId

regenerate_draft Language Options

  • zh — Chinese (default)
  • en — English
  • th — Thai
  • ms — Malay
  • ja — Japanese

regenerate_draft Platform Options

  • x — X (Twitter)
  • facebook — Facebook
  • instagram — Instagram
  • linkedin — LinkedIn

list_posts Status Options

  • SCHEDULED — Scheduled posts
  • PUBLISHING — Currently publishing
  • PUBLISHED — Successfully published
  • PARTIAL_SUCCESS — Partially succeeded
  • FAILED — Failed

Important Rules

Information Display

  • Do NOT expose internal info to users: Cards should NOT contain draft IDs, internal numbers, etc. Only show content and images the user needs to see.

Performance Optimization

  • Image URL optimization: The first get_drafts(scenarioId) response includes image URLs in the draft list. Do NOT call get_drafts(draftId) again to fetch URLs — use the URLs directly from the first call to save time.
  • Parallel processing:

- Download images in parallel with & (curl -o "1.png" url1 & curl -o "2.png" url2 & wait) - Send multiple images in parallel (with rate limiting, 3-5 at a time recommended) - Avoid serial operations; parallelize whenever possible

Send Order

  • Send content first, wait, then send images. Do not send all content at once followed by images — users cannot correlate them.

General Rules

  • Must select a scenario before generating. Do NOT skip list_scenarios.
  • Generation is async. After generate_content returns, you MUST poll get_drafts at 10-15 second intervals, up to 3 times.
  • Drafts include image assets. No need for users to provide images.
  • Before publishing, must confirm account by calling list_connections to get connectionId.
  • If user says "post to Instagram", find INSTAGRAM platform ID from connections.
  • language defaults to zh (Chinese). Pass en when user requests English.
  • If user is not satisfied with draft, use regenerate_draft with feedback.
  • regenerate_draft supports specifying language (zh/en/th/ms/ja) and platform (x/facebook/instagram/linkedin). If not specified, regenerates for all platforms.

Image Handling

  1. Ensure /root/.openclaw/workspace/ directory exists before downloading
  2. Download images with random filenames like hotelpost_xxx.png

- Do NOT save to /tmp/ — some platforms don't support it

  1. Image URLs must include full signature parameters! Truncated URLs will be inaccessible.
  2. Clean up temporary files after sending.

Workspace Directory

Before downloading images, ensure the workspace directory exists:

mkdir -p /root/.openclaw/workspace/

Platform Publishing

After publishing, send notifications via the appropriate IM platform. See the platform-specific guide in references/:

  • feishu-guide.md — Feishu platform sending guide (card/image format, ID selection rules)

Note: Feishu notification is optional. The skill functions without it, but users won't receive push notifications.

Conversation Examples

See references/conversation-examples.md

Error Handling

See references/error-handling.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.21%
按下载量换算553

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills