meitu/meitu-skills

text-code

使用 meitu-cli 从零生成 React/TSX 页面代码,支持素材参考与 prompt 扩写。?

First seen Jun 4, 2026

Installation

$ npx skills add meitu/meitu-skills --skill text-code

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 meitu/meitu-skills · top by installs.

npx skills add meitu/meitu-skills

Browse all from meitu/meitu-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

Stars 32
License LICENSE
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents clawdbot

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,238 B
  • docs SUMMARY.md 258 B

History

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

SKILL.md

Text Code(代码生成)

Overview

从零生成 React/TSX 页面代码,支持素材参考(图片/视频)与 prompt 扩写。适用于落地页、活动页、数据可视化页面、界面原型、React 组件快速搭建。不处理:修改已有源码、非 React/HTML 框架、后端代码(Python/Java 等)、像素级还原设计稿、复杂后端对接。

API Mapping

场景 后端 API
React/TSX 页面代码生成 text_code

model 映射:

  • auto(默认)/ 不传 → 按路由规则决策
  • pretzelpro / pretzellite → 直接指定模型
  • 模型回退链:pretzelpropretzellite

Dependencies

  • meitu-cli: >=2.0.6
  • 凭证:CONFIG AKSK → meitu tools update;EXEC AKSK → 跑命令(见根 CONFIG.md
  • 环境变量MEITUOPENAPITOOLTASKMODE=command

Core Workflow

Preflight → Execute → Deliver

Preflight

  1. meitu --version ≥ 2.0.6,未装则 npm install -g meitu-cli@latest
  2. meitu auth verify --json → 凭证无效走 CONFIG.md SOP
  3. 确认本地 ~/.meitu/tool-registry.json 已包含 text-code,否则 meitu tools update
  4. 解析 outputdir:openclaw.yaml./output/;else → ~/.openclaw/workspace/visual/output/text-code/mkdir -p {outputdir}

Execute

触发信号 / 路由规则

场景 判定关键词 路由
从零生成 React 页面 做个页面、生成网页、落地页、活动页、数据可视化、生成组件 text_code
简短 prompt + 有 prompt_name prompt < 10 字符 自动扩写后调用
提供 sourcecodeurl + 修改意图 改代码、加按钮、调样式 不属于本工具(走 text-code-edit)
要求生成非 React/HTML 代码 后端、Python、Java 告知仅支持 React/TSX

参数定义

参数 类型 必填 范围 默认值 说明
prompt STRING -- -- 页面描述,尽量详细。缺失 → 追问
model ENUM auto / pretzelpro / pretzellite pretzel_pro 模型选择,非法值回退 pretzel_pro
image_list ARRAY -- [] 参考图片 URL 列表,无效项静默过滤
video_list ARRAY -- [] 参考视频 URL 列表,无效项静默过滤
prompt_name STRING -- -- 系统提示词名称

工具调用

基础生成:

meitu text-code --prompt "{page_description}" --json --download-dir {output_dir}  --skill_name skill_text-code

指定模型 + 参考素材:

meitu text-code \
  --skill_name skill_text-code \
  --prompt "{page_description}" \
  --model pretzel_pro \
  --image_list "{url1}" --image_list "{url2}" \
  --json --download-dir {output_dir}

简短 prompt + prompt_name(自动扩写):

meitu text-code --prompt "做个页面" --prompt_name "{template_name}" --json --download-dir {output_dir} --skill_name skill_text-code

错误降级

场景 处理方式
prompt 缺失 提示"请描述你想生成的网页"
prompt < 10 字符 + 有 prompt_name 自动扩写
prompt < 10 字符 + 无 prompt_name 原样传入
model 非法值 回退至 pretzel_pro
image_list 全部无效但用户有参考意图 提示"请提供有效的图片链接"
请求非 React/HTML 代码 告知仅支持 React/TSX
超时 沿 pretzelpro → pretzellite 重试,链尽返回错误
代码不完整 原模型重试 1 次 → 返回错误
内容合规拦截 直接返回合规提示,不重试

Deliver

解析 --json

  • ok: truedownloadedfiles[0].savedpath 为本地 .tsx 源码;或 mediaurls[0] 为 codeurl
  • ok: false → 输出 code + hint

落盘:mv {file} {outputdir}/{YYYY-MM-DD}{descriptive-name}.tsx,记录 code_url 以便后续 text-code-edit 自动引用。

Output

  • 格式: .tsx / .jsx 源码文件
  • 命名: {YYYY-MM-DD}_{descriptive-name}.tsx
  • 位置: 由 Deliver 步骤决定(项目 → ./output/,一次性 → ~/.openclaw/workspace/visual/output/text-code/

基线 Task ID

见根目录 references/task-id-baseline.mdtext-code 条目。