tangyang/skills · Archived

meitu-ai

meitu-ai 工?

First seen Mar 19, 2026

Installation

$ npx skills add tangyang/skills --skill meitu-ai

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tangyang/skills.

npx skills add tangyang/skills

Browse all from tangyang/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,327 B
  • docs SUMMARY.md 165 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 22 installs

SKILL.md

meitu-ai

Purpose

统一提供 meitu-ai 命令能力,避免在每个场景 Skill 中重复维护安装与参数规范。

Built-in commands

  • video-motion-transfer(动作迁移)
  • image-edit(图片编辑)
  • image-generate(图片生成)
  • image-upscale(图片超清)
  • image-virtual-tryon(试衣)
  • image-to-video(图生视频)
  • image-face-swap(换头像)
  • image-cutout(抠图)

Runtime setup

Install:

pipx install --force meitu-ai

Credentials (one of two):

  1. Env vars:
export OPENAPI_ACCESS_KEY="..."
export OPENAPI_SECRET_KEY="..."
  1. File:

~/.openapi/credentials.json

{
  "accessKey": "...",
  "secretKey": "..."
}

Execution

python3 "{baseDir}/scripts/run_command.py" --command "<built-in-command>" --input-json '<json object>'

Output

Unified JSON:

  • ok
  • command
  • task_id
  • media_urls
  • result

Notes for scenario skills

  • 场景 Skill 应优先通过本 Skill 的 scripts/run_command.py 调用能力。
  • 场景 Skill 里只保留业务上下文、触发时机和最小输入说明。