技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.0
统计:⭐ 1 · 1.6k · 0 current installs · 0 all-time installs
⭐ 1
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:abakermi/openclaw-postsyncer
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's instructions assume a local 'postsyncer' CLI but the skill metadata does not declare or install that binary (mismatch); otherwise it only asks for a single POSTSYNCER_API_KEY which is reasonable for its stated purpose.
目的
The SKILL.md shows runtime commands like `postsyncer workspaces` and `postsyncer create-post`, which require a local 'postsyncer' CLI binary or an install step. The registry metadata lists no required binaries and provides no install spec. That mismatch (skill assumes a binary but doesn't declare or install it) is an incoherence — either the skill should declare the binary as required or provide an install mechanism or change to direct API usage.
说明范围
The instructions are narrowly scoped to managing PostSyncer via an API key and running the 'postsyncer' CLI. They only reference the POSTSYNCER_API_KEY environment variable and the PostSyncer settings URL. They do not request unrelated files, other credentials, or system paths. The only scope issue is the implicit requirement for the CLI binary which is not declared.
安装机制
No install spec is provided and no code is shipped; as an instruction-only skill this is low-risk. However, if the intended runtime relies on a third-party CLI, the absence of an install mechanism means the agent will fail unless the user already installed that tool.
证书
The skill claims a single required env var (POSTSYNCER_API_KEY), which matches the described purpose of interacting with PostSyncer. No unrelated credentials or broad access are requested.
持久
The skill does not request always: true and makes no claims about modifying other skills or system-wide settings. Autonomous invocation is enabled by default but is not excessive here given the limited requested scope.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Postsyncer」。简介:Manage your PostSyncer social media workflows.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/abakermi/openclaw-postsyncer/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: postsyncer
version: 1.0.0
description: Manage your PostSyncer social media workflows.
author: abakermi
metadata:
openclaw:
emoji: "🔄"
requires:
env: ["POSTSYNCER_API_KEY"]
---
# PostSyncer Skill
Automate your social media scheduling with PostSyncer.
## Setup
1. Get your API Key from [PostSyncer Settings](https://app.postsyncer.com/settings).
2. Set it: `export POSTSYNCER_API_KEY="your_key"`
## Commands
### Workspaces
List your workspaces.
```bash
postsyncer workspaces
```
### Posts
List your scheduled/published posts.
```bash
postsyncer posts
```
### Create Post
(Basic text post)
```bash
postsyncer create-post -w <workspace_id> -t "Hello world"
```