# Send Repliz Api to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "repliz",
    "name": "Repliz Api",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/staryone/repliz",
    "canonicalUrl": "https://clawhub.ai/staryone/repliz",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/repliz",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=repliz",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "repliz",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T03:42:23.721Z",
      "expiresAt": "2026-05-15T03:42:23.721Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=repliz",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=repliz",
        "contentDisposition": "attachment; filename=\"repliz-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "repliz"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/repliz"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/repliz",
    "downloadUrl": "https://openagent3.xyz/downloads/repliz",
    "agentUrl": "https://openagent3.xyz/skills/repliz/agent",
    "manifestUrl": "https://openagent3.xyz/skills/repliz/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/repliz/agent.md"
  }
}
```
## Documentation

### 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:

Navigate to https://repliz.com/user/setting/api
Generate or copy your Access Key and Secret Key
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):
\`\`\`json
{
  "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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: staryone
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T03:42:23.721Z
- Expires at: 2026-05-15T03:42:23.721Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/repliz)
- [Send to Agent page](https://openagent3.xyz/skills/repliz/agent)
- [JSON manifest](https://openagent3.xyz/skills/repliz/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/repliz/agent.md)
- [Download page](https://openagent3.xyz/downloads/repliz)