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

replizrepliz 搜索

Agent Skill

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

总安装

25,386

周安装

1,037

GitHub Stars

3

下载量

8,130
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install repliz

简介

Repliz 社交媒体管理 API 集成用于账号日程与评论管理。

  • 支持多平台内容调度和互动自动化处理。
  • 通过 clawhub 安装后,配置 REPLIZ_ACCESS_TOKEN 即可调用。
  • 注意接口调用频率限制和授权有效期。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • repliz 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
repliz
description
Repliz social media management API integration. Use when working with Repliz to manage social media accounts, schedules, and comments. Requires REPLIZ_ACCESS_KEY and REPLIZ_SECRET_KEY environment variables.
homepage
https://repliz.com
metadata
{"clawdbot":{"emoji":"📱","requires":{"bins":["curl"],"env":["REPLIZ_ACCESS_KEY","REPLIZ_SECRET_KEY"]},"primaryEnv":"REPLIZ_ACCESS_KEY"}}

Repliz API Skill

Prerequisites & Setup

Before using this skill, you must complete the following setup steps:

1. Register/Login to Repliz

  • Register: Visit https://repliz.com/register to create a new account
  • Login: Visit https://repliz.com/login to sign in to your existing account

2. Connect Social Media Accounts

After logging in, connect your social media accounts:

  • Go to your Repliz dashboard
  • Add and connect accounts like Instagram, Threads, TikTok, Facebook, LinkedIn, or YouTube
  • Ensure the accounts show as "connected" before proceeding

3. Obtain API Credentials

To get your Access Key and Secret Key for Basic Authentication:

  1. Navigate to https://repliz.com/user/setting/api
  2. Generate or copy your Access Key and Secret Key
  3. Store these credentials securely - they grant access to post, delete, and manage your social media content

4. Configure Environment Variables

This skill requires the following environment variables to be set:

export REPLIZ_ACCESS_KEY="your-access-key-here"
export REPLIZ_SECRET_KEY="your-secret-key-here"

## Authentication

All API requests require **Basic Authentication** in the header:
- **Username**: $REPLIZ_ACCESS_KEY
- **Password**: $REPLIZ_SECRET_KEY
- **Base URL**: `https://api.repliz.com`

## API Endpoints

### Accounts

**GET /public/account**
- Query params: `page` (default 1), `limit` (default 10), `search` (optional)
- Returns list of connected social media accounts
- Fields: `_id`, `generatedId`, `name`, `username`, `picture`, `isConnected`, `type` (instagram/threads/tiktok/etc), `userId`, `createdAt`, `updatedAt`

**GET /public/account/{_id}**
- Get account details by ID (use `_id` field from account list)
- Returns full account info including `token.access` for posting

---

### Schedules

**GET /public/schedule**
- Query params: `page`, `limit`, `accountIds` (can be repeated)
- Returns scheduled posts

**GET /public/schedule/{_id}**
- Get schedule details by ID

**POST /public/schedule**
- Create new scheduled post. Request body varies by type:

Text post (Facebook, Threads):

{ "title": "", "description": "Your post text", "type": "text", "medias": [], "scheduleAt": "2026-02-14T10:35:09.658Z", "accountId": "680affa5ce12f2f72916f67e" }


Image post (Facebook, Instagram, Threads, TikTok, LinkedIn):

{ "title": "", "description": "Caption", "type": "image", "medias": [{"type": "image", "thumbnail": "url", "url": "url", "alt": "description"}], "scheduleAt": "2026-02-14T10:35:09.658Z", "accountId": "680affa5ce12f2f72916f67e" }


Video post (Facebook, Instagram, Threads, TikTok, YouTube, LinkedIn):

{ "title": "Hello there, this is from Repliz", "description": "Hello there, this is from Repliz", "type": "video", "medias": [ { "type": "video", "thumbnail": "thumbnail-url", "url": "video-url" } ], "scheduleAt": "2026-02-14T10:35:09.658Z", "accountId": "680affa5ce12f2f72916f67e" }


Album post (Facebook, Instagram, Threads, TikTok, LinkedIn):

{ "title": "Hello there, this is from Repliz", "description": "Hello there, this is from Repliz", "type": "album", "medias": [ { "type": "image", "thumbnail": "thumbnail-url-1", "url": "image-url-1", "alt": "alt-image-1" }, { "type": "image", "thumbnail": "thumbnail-url-2", "url": "image-url-2", "alt": "alt-image-2" }, { "type": "image", "thumbnail": "thumbnail-url-99", "url": "image-url-99", "alt": "alt-image-99" }, ], "scheduleAt": "2026-02-14T10:35:09.658Z", "accountId": "680affa5ce12f2f72916f67e" }


Story post (Facebook, Instagram):

{ "title": "", "description": "", "type": "story", "medias": [ { "type": "image or video", // you can choose "thumbnail": "thumbnail-url", "url": "media-url" } ], "scheduleAt": "2026-02-14T10:35:09.658Z", "accountId": "680affa5ce12f2f72916f67e" }


Instagram post with additional info:

{ "title": "Hello there, this is from Repliz", "description": "Hello there, this is from Repliz", "type": "video", "medias": [ { "type": "video", "thumbnail": "thumbnail-url", "url": "video-url" } ], "additionalInfo": { "collaborators": [ "usernameCollab1", "usernameCollab2", "usernameCollab3" ] }, "scheduleAt": "2026-02-14T10:35:09.658Z", "accountId": "680affa5ce12f2f72916f67e" }


Nested/Thread post (Threads):

{ "title": "", "description": "First Post", "type": "text", "medias": [], "scheduleAt": "2026-02-14T10:35:09.658Z", "accountId": "680affa5ce12f2f72916f67e", "replies": [ {"title": "", "description": "Second Post reply First Post", "type": "text", "medias": []}, {"title": "", "description": "Third Post reply Second Post", "type": "text", "medias": []} ] }


**DELETE /public/schedule/{_id}**
- Delete scheduled post (cannot be recovered)

---

### Comment Queue

**GET /public/queue**
- Query params: `page`, `limit`, `search`, `status` (pending/resolved/ignored), `accountIds` (can be repeated)
- Returns comment queue from social media

**GET /public/queue/{_id}**
- Get queue item details

**POST /public/queue/{_id}**
- Reply to comment (automatically marks as resolved)

{ "text": "Your reply" }


---

## Error Handling

- `401`: Invalid authorization header
- `404`: Not found
- `500`: Internal server error

## Notes

- `accountId` for posting comes from `_id` field in account list
- `scheduleAt` uses ISO 8601 format with timezone (e.g., `2026-02-14T10:35:09.658Z`)
- Queue status can be: pending, resolved, ignored

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.96%
按下载量换算6,745

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills