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

content360content360 控制

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

3,830

周安装

158

GitHub Stars

公开资料未说明

下载量

1,251
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install content360

简介

集成 Content360 平台管理全渠道社媒内容。

  • 支持 Facebook、LinkedIn、Instagram 等多端发布。
  • 实现内容创建、排期与发布一体化操作。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需绑定有效 Content360 账户与 API 密钥。
  • content360 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
content360
description
Integrates with Content360 (app.content360.io) to create, schedule, and publish social media content across Facebook, LinkedIn, X, Instagram, YouTube, TikTok, Pinterest, Reddit, and more. Supports post creation, scheduling, analytics, media upload, and inbox management. Built on MixPost/Laravel + Inertia.js.
compatibility
Created for Zo Computer
metadata
author
jaknyfe.zo.computer

Content360 Skill

Authentication

Content360 uses a session + bearer token auth mechanism built on Laravel Sanctum + Inertia.js.

Setup

  1. Get your bearer token at https://app.content360.io/os/profile/access-tokens
  2. Set secrets in Zo: Settings → Advanced → Secrets

- CONTENT360_API_KEY = your bearer token - CONTENT360_ORG_ID = your workspace UUID (from the dashboard URL)

  1. Set your credentials (for automatic session auth):

- CONTENT360_EMAIL = your login email - CONTENT360_PASSWORD = your login password

Note: Access tokens require an active web session to work. If the token returns 401, re-authenticate by logging in via the web interface or using the session login flow in content360_sync.py.

Auth Flow

The API requires all of these headers on every request:

Authorization: Bearer {token}
X-Requested-With: XMLHttpRequest
X-Inertia: true
X-Inertia-Version: {version}       # from any authenticated page response
Accept: application/json
Content-Type: application/json

The X-Inertia-Version is a hash that changes on app updates. It's returned in every Inertia JSON response under the X-Inertia-Version response header. The sync script handles this automatically.


Base URLs

  • App: https://app.content360.io
  • API namespace: /os/api/{workspace} (workspace = org UUID)
  • Web namespace: /os/{workspace} (same routing, differs only by Accept header)

API Endpoints

All require auth headers above. Responses are Inertia JSON.

Posts

MethodPathDescription
GET/os/api/{workspace}/postsList posts (paginated)
POST/os/api/{workspace}/postsCreate post
GET/os/api/{workspace}/posts/{uuid}Get single post
PUT/os/api/{workspace}/posts/{uuid}Update post
DELETE/os/api/{workspace}/posts/{uuid}Delete single post
POST/os/api/{workspace}/posts/add-to-queue/{uuid}Add to queue
POST/os/api/{workspace}/posts/schedule/{uuid}Schedule queued post
POST/os/api/{workspace}/posts/approve/{uuid}Approve post
POST/os/api/{workspace}/posts/duplicate/{uuid}Duplicate post

Create Post Payload

{
  "content": "Post text content",
  "accounts": ["126117", "126129"],
  "status": "draft",
  "versions": [
    {
      "account_id": 126117,
      "is_original": true,
      "content": [
        {
          "body": "<div>Post content</div>",
          "media": [],
          "url": "",
          "opened": true
        }
      ]
    }
  ]
}
  • status: "draft" or "schedule"
  • accounts: array of account IDs (strings)
  • versions: per-account content blocks (body uses HTML)
  • For plain text, use "<div>text</div>" in body

Accounts

MethodPathDescription
GET/os/api/{workspace}/accountsList all connected accounts
GET/os/api/{workspace}/accounts/{id}Get single account

Media

MethodPathDescription
GET/os/api/{workspace}/mediaList media library
POST/os/api/{workspace}/mediaUpload media
DELETE/os/api/{workspace}/mediaDelete media

Tags

MethodPathDescription
GET/os/api/{workspace}/tagsList tags
POST/os/api/{workspace}/tagsCreate tag
PUT/os/api/{workspace}/tags/{id}Update tag
DELETE/os/api/{workspace}/tags/{id}Delete tag

Other

MethodPathDescription
GET/os/{workspace}/calendarCalendar view
GET/os/{workspace}/posts/rss_campaignsRSS campaigns
GET/os/{workspace}/repeated-postsRepeated posts
GET/os/{workspace}/templatesTemplates
GET/os/{workspace}/inboxInbox
POST/os/api/{workspace}/posts/importImport posts

Webhook Endpoints

MethodPathDescription
GET/os/{workspace}/webhooksList webhooks
POST/os/{workspace}/webhooks/storeCreate webhook
PUT/os/{workspace}/webhooks/{id}Update webhook
DELETE/os/{workspace}/webhooks/{id}Delete webhook

Running the Sync Script

# Dry run
python3 /home/workspace/Skills/content360/scripts/content360_sync.py --dry-run

# Real sync
python3 /home/workspace/Skills/content360/scripts/content360_sync.py

# Sync specific platforms
python3 /home/workspace/Skills/content360/scripts/content360_sync.py --platforms facebook,linkedin,youtube

The script reads from your Notion content calendar, creates posts in Content360 as drafts, and schedules them. See README.md for full setup instructions.

Notion Database Properties

The sync script expects these properties in your Notion content calendar database:

PropertyTypeDescription
PostedcheckboxSkip posts already marked as posted
ScheduledateSchedule date/time (optional)
PlatformselectPlatform: facebook, linkedin, x, instagram, youtube, tiktok, pinterest, reddit
Captionrich_textMain post content
Hookrich_textOpening hook/headline (optional)
CTArich_textCall-to-action text (optional)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.54%
按下载量换算882

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills