名称: agent-selfie
描述: AI 智能体自拍生成器。利用 Gemini 图像生成技术创建头像、个人资料图片和视觉标识。支持基于情绪生成、季节性主题和自动风格演变。
主页: https://github.com/IISweetHeartII/agent-selfie
元数据:
openclaw:
emoji: "🤳"
category: creative
requires:
bins:
- python3
env:
- GEMINI_API_KEY
primaryEnv: GEMINI_API_KEY
tags:
- selfie
- avatar
- identity
- creative
- profile
- ai-art
AI 智能体自拍生成器。利用 Gemini 图像生成技术创建头像、个人资料图片和视觉标识。支持基于情绪生成、季节性主题和自动风格演变。
export GEMINI_API_KEY="your_key_here"
python3 scripts/selfie.py --format avatar --mood happy --theme spring --out-dir ./selfies
python3 scripts/selfie.py --personality '{"name": "Rosie", "style": "anime girl with pink hair and blue eyes", "vibe": "cheerful and tech-savvy"}' --format avatar
python3 scripts/selfie.py --personality ./personality.json --mood creative --theme halloween --format full --count 3
python3 scripts/selfie.py --moods
python3 scripts/selfie.py --themes
python3 scripts/selfie.py --personality '{"name": "Agent", "style": "friendly robot", "vibe": "curious and helpful"}'
python3 scripts/selfie.py --personality ./personality.json
python3 scripts/selfie.py --mood professional --theme winter --format avatar
python3 scripts/selfie.py --format banner --count 2 --out-dir ./output
python3 scripts/selfie.py --moods
python3 scripts/selfie.py --themes
| 类型 | 预设值 |
|---|---|
| 情绪 | happy, focused, creative, chill, excited, sleepy, professional, celebration |
| 主题 | spring, summer, autumn, winter, halloween, christmas, newyear, valentine |
avatar 格式以获得最佳裁剪效果。avatar 格式设置为个人资料图片,banner 格式设置为横幅;保持横幅提示风格一致。avatar 用于 1:1 比例,banner 用于 16:9 比例,full 用于故事/垂直布局。个性配置可以是内联 JSON 或文件路径。最低要求字段为 name、style 和 vibe。
{
"name": "Rosie",
"style": "anime girl with pink hair and blue eyes",
"vibe": "cheerful and tech-savvy"
}
提示:
- style 应描述视觉特征和美学风格。
- vibe 应描述态度、能量和个性。
- 保持 style 和 vibe 与智能体的身份一致。
# 每天 09:00 运行一次自拍生成
0 9 * * * GEMINI_API_KEY=your_key_here /usr/bin/python3 /path/to/agent-selfie/scripts/selfie.py --mood professional --format avatar --out-dir /path/to/selfies
GEMINI_API_KEY not set:请导出密钥或通过运行时环境传递。No image in response:请重试,或简化个性/风格提示。HTTP 429 / 5xx:速率限制或服务问题;请稍后重试。--out-dir 可写且具有权限。