Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

myreels-apimyreels API 文档

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

210

周安装

9

GitHub Stars

1

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:myreels-api(myreels API 文档)
来源仓库:https://github.com/myreelsai/skills
仓库路径:skills/myreels-api
安装命令:
npx skills add https://github.com/myreelsai/skills --skill myreels-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/myreelsai/skills --skill myreels-api

简介

myreels-api 用于辅助 API 设计、接口文档和请求响应结构说明。

  • 适合梳理 endpoint、生成 OpenAPI 草稿、检查字段命名或辅助前后端联调。
  • 使用时需确认业务语义、鉴权方式、分页和错误处理规则,避免凭空补字段。
  • 建议从现有代码、schema 或接口样例中提取事实,确保接口定义准确。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

MyReels API Integration Guide

Prerequisites

  • An active subscription is required for generation and task query endpoints.
  • Create an AccessToken in myreels.ai/developer.
  • Result URLs are not stored for you permanently. Save them on your side.
  • GET https://api.myreels.ai/api/v1/models/api was verified on March 18, 2026 and currently does not require Authorization.

Installation

npx skills add https://github.com/myreelsai/skills --skill myreels-api -g

Remove -g for a project-level install.

Authentication

Use:

Authorization: Bearer YOUR_ACCESS_TOKEN

Recommended Flow

0. Load live model metadata first

Before mapping user intent to request fields, call:

GET https://api.myreels.ai/api/v1/models/api

Prioritize these fields:

  • modelName
  • name
  • tags
  • description
  • estimatedCost
  • displayConfig.estimatedTime
  • userInputSchema
  • userInputSchema.<param>.label
  • userInputSchema.<param>.description
  • userInputSchema.<param>.default
  • userInputSchema.<param>.options

Display cost as points:

  • use estimatedCost as the display points field

For natural-language requests such as "stronger motion", "disable prompt extension", or "higher human fidelity", map user intent from label and description, not from field names alone.

1. Submit a task

POST https://api.myreels.ai/generation/:modelName
Content-Type: application/json
Authorization: Bearer YOUR_ACCESS_TOKEN

:modelName must be the actual modelName, not the slug.

Example:

{
  "prompt": "A cinematic portrait with soft studio lighting"
}

Example success response:

{
  "status": "ok",
  "message": "Successfully created task",
  "data": { "taskID": "task_xxx" }
}

2. Query task status

GET https://api.myreels.ai/query/task/:taskID
Authorization: Bearer YOUR_ACCESS_TOKEN

Example completed response:

{
  "status": "ok",
  "message": "Successfully obtained task info",
  "data": {
    "status": "completed",
    "progress": 100,
    "resultUrls": [{ "url": "https://cdn.example.com/result.png" }]
  }
}

Task states:

  • pending
  • processing
  • completed
  • failed

Polling guidance:

  • image generation / image editing: 10 seconds
  • video generation: 30 seconds to 1 minute

Query rate limit:

  • 60 requests per minute

Response Rules

  • If the upstream response includes code, Worker uses it as the final HTTP status.
  • If upstream does not include code, Worker falls back to the upstream HTTP status.
  • Check the final HTTP status first.
  • If the HTTP status is 2xx, then inspect status.
  • For task queries, check data.status after status === "ok".

Public paths:

  • POST /generation/:modelName
  • GET /query/task/:taskID
  • GET|POST /api/v1/*

Model Categories

CategoryTagsDescription
Image and editingt2i / i2i / i2etext-to-image, image-to-image, image editing
Videot2v / i2vtext-to-video, image-to-video, avatar/video motion
Speech and musict2a / m2atext-to-speech, music generation

Use the live schema described in references/models.md for current models, parameters, defaults, options, and field descriptions.

References

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

Codex

37.3%
按下载量换算27

Claude

29.52%
按下载量换算22

Cursor

17.54%
按下载量换算13

Gemini CLI

8.81%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills