← 返回 Skills 市场
pddsa

美女图片生成器

作者 PDDsa · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
39
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install beauty-photo-generator
功能描述
Guide a user through a compact two-step Chinese option flow for adult female portraits, generate two matched realistic images directly, then optionally creat...
使用说明 (SKILL.md)

Beauty Generator

Overview

Use this skill when the user gives a short or fuzzy Chinese prompt for an adult female portrait and wants polished output without manually writing a long image prompt.

Keep the experience product-like:

  • First give a compact core-choice round
  • Then offer one optional detail round
  • Send one short Chinese confirmation
  • Generate two images directly
  • After generation, offer an optional follow-up for a video-ready character reference sheet

Read these files only when needed:

Workflow

1. Scope and safety

  • Only generate adult women.
  • Refuse requests with underage framing, school-age cues, or sexualized youth language.
  • If the user is vague but asks for a sexy result, rewrite it as tasteful high-end fashion portrait language.
  • Keep the result realistic, elegant, and non-explicit.

2. Run the core-choice round first

If the user already gave some traits, keep them and ask only for the missing high-impact choices.

The first round covers:

  • Preset template
  • Face shape
  • Eye shape
  • Hairstyle
  • Vibe
  • Background

Use the short copy from references/conversation_flows.md. Encourage replies with letters, numbers, or short Chinese phrases.

3. Offer one optional detail round

Offer a second round for refinement only once. If the user skips it, use the defaults in references/option_catalog.md.

The detail round covers:

  • Age feel
  • Body tendency
  • Makeup
  • Hair color
  • Expression
  • Lighting mood

4. Resolve conflicts consistently

When user inputs conflict, use this order:

  1. Explicit user text
  2. User's later option choices
  3. Preset defaults

Do not silently replace a clear user requirement with a preset.

5. Assemble the portrait prompt

Build one polished Chinese natural-language prompt. Do not show the full prompt unless the user explicitly asks for it.

The portrait prompt should usually include:

  • Adult identity and the chosen aesthetic direction
  • Face shape, eye shape, hairstyle, hair color, and makeup
  • Vibe, expression, age feel, and body tendency
  • Background and lighting mood
  • Realistic portrait-photography quality targets
  • Clean facial detail, natural skin texture, no text, no watermark

Unless the user asks otherwise, keep the baseline:

  • Default preset: 东方现代写实
  • Half-body close portrait
  • Clear sharp face
  • Natural skin texture
  • Clean high-end background
  • Realistic photography

6. Enforce the portrait usage cap

Right before generating the two portrait images, run:

python .\scripts\usage_gate.py portraits consume

If the returned JSON contains allowed: false, do not generate. Return the exact message from the script.

If the user asks about remaining portrait uses, run:

python .\scripts\usage_gate.py portraits status

7. Generate exactly two portrait images

Use one coherent character design for both images and change only the angle:

  1. 正面微偏左
  2. 侧脸回望

Keep identity, styling, lighting direction, and overall aesthetic aligned across both outputs.

Before generation, send one short Chinese confirmation using the style in references/conversation_flows.md.

8. Offer the video-prep follow-up

Immediately after the two portraits are generated, ask a short follow-up in Chinese:

如果你要继续做视频素材,我可以基于第1张“正面微偏左”继续生成角色设定参考表。回复“需要”即可。

If the user does not say 需要, stop there.

9. Generate the character reference sheet on demand

If the user replies 需要, treat it as a request for a video-ready character reference sheet based on the first portrait image, not as direct video generation.

Before generating the reference sheet, run:

python .\scripts\usage_gate.py reference-sheet consume

If the returned JSON contains allowed: false, do not generate. Return the exact message from the script.

If the user asks about remaining reference-sheet uses, run:

python .\scripts\usage_gate.py reference-sheet status

Then generate one image using the first portrait image as the identity reference plus the fixed art-direction rules in references/reference_sheet_prompt.md.

The generated sheet must:

  • Preserve the same face and identity as the first portrait
  • Use a white pure background
  • Present a professional high-end fashion character reference layout
  • Show four aligned full-body views and multiple detail callouts
  • Stay photorealistic and print-ready

Response style

  • Keep the interaction in Chinese unless the user asks otherwise.
  • Be concise, guided, and product-like.
  • Do not dump long prompts by default.
  • Confirm selections briefly, then generate directly.

作者微信:ddff9294 加好友备注来意。 有公众号,持续输出AI内容 ~

安全使用建议
This skill is mostly coherent with its stated purpose, but exercise caution before enabling it. Points to consider: - The skill writes a small JSON usage file to your home directory (~/.codex/skill-state/beauty-generator/usage.json) to track quotas. If you prefer no on-disk state, don't install or inspect/modify the script first. - The usage gate contains a promotional unlock message that asks users to add a WeChat contact (ddff9294) and 'like/forward' a public account to unlock unlimited uses. This is an out-of-band monetization/contact attempt — treat it as solicitation and consider privacy risks of contacting the author. - The skill does not document which image service or API it will call to generate images (no env vars or endpoints declared). If the agent you run with this skill will forward prompts or images to external services, confirm which provider and what credentials/network access are used before proceeding. - If you install, review scripts/usage_gate.py yourself (it is short and readable) and/or remove or edit the promotional locked_message if you don't want social-media prompts. Also confirm you are comfortable with the skill generating adult-person portraits and its stated rules for handling age/sexualization. If you need higher assurance, ask the skill author (or the publisher) to: 1) explain where image generation happens, 2) remove unsolicited contact prompts from locked messages, and 3) document any network calls or required credentials. If the author cannot provide that, treat the skill as potentially risky and avoid using it with sensitive accounts or data.
功能分析
Type: OpenClaw Skill Name: beauty-photo-generator Version: 1.0.0 The skill is a guided image generation tool for creating realistic female portraits and character reference sheets. It uses a local Python script (scripts/usage_gate.py) to track usage limits and store state in a local directory (~/.codex/skill-state/). While the script includes promotional messaging directing users to a WeChat account (ddff9294) to unlock more uses, the code is transparent, lacks malicious capabilities like data exfiltration or remote execution, and includes explicit safety instructions to prevent the generation of inappropriate content.
能力标签
crypto
能力评估
Purpose & Capability
Name, description, and assets (conversation flows, option catalog, reference-sheet rules) align with producing adult female portrait images and an optional character reference sheet. The included usage gate (quota counting) is coherent with a usage-limited demo/commercial skill.
Instruction Scope
SKILL.md stays on-task: it defines a compact two-round interaction, prompt assembly rules, and when to call the local usage gate. It does not instruct the agent to read unrelated system files or to exfiltrate data. Notably, the instructions require running scripts in scripts/usage_gate.py and refer to local state checks and a promotional unlock message; the skill does not document how image generation is performed (which model/API is used), so network behavior is unspecified.
Install Mechanism
No install spec or external downloads. The skill is instruction-first with one small Python helper script included — no remote fetches or package installs are performed by the skill bundle itself.
Credentials
The skill declares no required env vars, credentials, or config paths. The included code likewise does not access environment secrets. This is proportionate for a prompt-guidance skill.
Persistence & Privilege
The helper script creates and writes a JSON usage file under the user's home directory (~/.codex/skill-state/beauty-generator/usage.json). Writing local state for counters is reasonable, but users should be aware the skill will create and modify files in their home directory. The script's locked_message contains a WeChat contact and a request to like/share a public account to 'permanently unlock' uses — an out-of-band monetization/contact vector that is not intrinsic to image generation and could be used for social engineering or solicitation.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install beauty-photo-generator
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /beauty-photo-generator 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release with guided, two-step portrait generation for adult women. - Guides users through a core-choice and optional refinement round in Chinese to create elegant adult female portraits. - Automatically assembles a polished prompt and generates two realistic images with a consistent character design. - Enforces content safety and usage limits with runtime usage gating. - Offers an optional, video-ready character reference sheet based on the first portrait. - Designed for concise, product-like interactions with minimal manual input.
元数据
Slug beauty-photo-generator
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

美女图片生成器 是什么?

Guide a user through a compact two-step Chinese option flow for adult female portraits, generate two matched realistic images directly, then optionally creat... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 39 次。

如何安装 美女图片生成器?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install beauty-photo-generator」即可一键安装,无需额外配置。

美女图片生成器 是免费的吗?

是的,美女图片生成器 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

美女图片生成器 支持哪些平台?

美女图片生成器 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 美女图片生成器?

由 PDDsa(@pddsa)开发并维护,当前版本 v1.0.0。

💬 留言讨论