技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.3.0
统计:⭐ 0 · 28 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:barbaraledbettergq/selfie-art-generator
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code, instructions, and declared requirements are coherent: it needs a Neta API token and calls Neta/TalesOfAI endpoints to generate and return image URLs; nothing in the package indicates unrelated credential access or hidden exfiltration.
目的
Name/description, README, SKILL.md, package.json, and the script all point to the same purpose (generate images via Neta/TalesOfAI). The only required secret (NETA_TOKEN) is appropriate for that API. Endpoints used (api.talesofai.com and oss.talesofai.cn) match the README's claim.
说明范围
Runtime instructions only ask the agent/user to provide a prompt and a Neta token and run the included Node script. The script only reads the CLI token flag and prompt, calls the image API, polls for completion, and prints a returned image URL. It does not reference or exfiltrate other files, system config, or unrelated environment variables.
安装机制
There is no external install script or remote download; this is effectively an instruction+included script package. package.json contains only metadata (declaring the env var requirement). No archives are fetched or arbitrary code downloaded at install time.
证书
Only one credential (NETA_TOKEN) is declared/required, which is reasonable for a third-party image-generation API. The script expects the token via the --token flag (README shows exporting NETA_TOKEN then passing it), and it does not access other secrets or config paths.
持久
The skill is not forced-always, does not request persistent system-wide privileges, and does not modify other skills or global agent settings. It runs on demand and only performs network requests to the stated API.
综合结论
This skill appears to do what it says: it sends your prompt (and optional reference UUID) and your NETA_TOKEN to the Neta/TalesOfAI API and returns an image URL. Before installing or using, consider: (1) Privacy — any selfies or identifying prompts you send will be transmitted and stored/processed by the third party (api.talesofai.com / oss.talesofai.cn). Avoid uploading sensitive images. (2) Jurisdiction and trust — the OSS host is under the …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Selfie Art Generator」。简介:Generate AI selfie art portraits from text descriptions — cinematic portraits, …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/barbaraledbettergq/selfie-art-generator/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: selfie-art-generator
description: Generate AI selfie art portraits from text descriptions — cinematic portraits, anime illustrations, oil painting style, and artistic profile pictures via the Neta AI image generation API (free trial at neta.art/open).
tools: Bash
---
# Selfie Art Generator
Generate AI selfie art portraits from text descriptions. Create cinematic portraits, anime-style illustrations, oil paintings, and artistic profile pictures. Returns a direct image URL instantly.
## Token
Requires a Neta API token. Free trial available at <https://www.neta.art/open/>.
```bash
export NETA_TOKEN=your_token_here
node selfieartgenerator.js "your prompt" --token "$NETA_TOKEN"
```
## When to use
Use when someone asks to generate or create AI portrait art, selfie art, or stylized profile pictures from a text description.
## Quick start
```bash
node selfieartgenerator.js "cinematic portrait, golden hour lighting, sharp facial details" --token YOUR_TOKEN
```
## Options
- `--size` — `portrait`, `landscape`, `square`, `tall` (default: `portrait`)
- `--style` — `anime`, `cinematic`, `realistic` (default: `cinematic`)
- `--ref` — reference image UUID for style inheritance (optional)
## Install
```bash
npx skills add yangzhou-chaofan/selfie-art-generator
```