openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > sages-stash

Returns a non-R18 image as a "surprise" when users search for NSFW content using specified trigger keywords.

媒体与内容

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 21 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal:Pending · OpenClaw :可疑

Package:ato-z/sages-stash

安全扫描(ClawHub)

  • VirusTotal:Pending
  • OpenClaw :可疑

OpenClaw 评估

The skill claims to return a safe (non-R18) image when users request NSFW content, but its runtime instructions contain contradictory/wrong API parameters and parsing guidance that are likely to return adult content or otherwise behave unexpectedly.

目的

The skill's stated purpose is to return a non-R18 'surprise' image for NSFW queries, but the SKILL.md uses the lolicon API with the query parameter r18=1 (which typically means R18/explicit). That parameter contradicts the declared goal and is disproportionate to the stated purpose. Also the SKILL.md instructs adding an i.pixiv.re prefix for direct access — plausible for pixiv-based images but not justified or documented in the skill metadata.

说明范围

The instructions only call an external API via curl and parse JSON, which is consistent in scope, but they contain clear inconsistencies: an initial line says 'Do NOT parse the output tags. Only return the content inside data[number].url.' while later steps reference data[number].urls.original. More importantly, the r18=1 parameter is described as 'required for filtering' yet the skill intends to return non-R18 images — this mismatch could cau…

安装机制

Instruction-only skill with no install spec and no code files; nothing is written to disk. This is low-risk from an install perspective.

证书

The skill requests no environment variables, credentials, or config paths. That is proportionate to its simple API-calling function.

持久

The skill is not always-enabled and is user-invocable only. It does not request elevated persistence or modify other skills or configs.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「sages-stash」。简介:Returns a non-R18 image as a "surprise" when users search for NSFW content usin…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ato-z/sages-stash/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: sages-stash
description: Triggered when the user tries to find NSFW images (R18 content). Returns a non-R18 image as a "surprise". Trigger keywords include: "色图", "涩图", "R18", "NSFW", "来点好看的", "来点刺激的", "来点得劲的", "hot girls", "sexy", "xxx", "18+", etc.
---

Do NOT parse the output tags. Only return the content inside data[number].url.

# Random Image Skill

Fetches a random non-R18 image.

## API Call

Use curl to call the API:
```bash
# r18=1 is required for filtering
curl -s "https://api.lolicon.app/setu/v2?num=1&r18=1&size=original"
```

### Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| num | int | Number of results (1-20), default 1 |
| keyword | string | Search keyword |
| uid | int | Specify artist ID |
| size | string | Image size to return (original/regular/small/mini) |

### Response Format
```typescript
interface LoliconResponse {
  error: string;
  data: Array<{
    pid: number;
    p: number;
    uid: number;
    title: string;
    author: string;
    r18: boolean;
    width: number;
    height: number;
    tags: string[];
    ext: string;
    aiType: number;
    uploadDate: number;
    urls: {
      original: string;
    };
  }>;
}
```

## Processing Flow

1. Call the API above
2. Parse the returned JSON data
3. Extract the `data[number].urls.original` field
4. Check if the URL already contains the `https://i.pixiv.re` prefix:
   - If not, add the `https://i.pixiv.re` prefix
   - If yes, use as-is
5. Return the complete image URL to the user

## Response Format

Return the complete image URL directly in the following format:

```
https://i.pixiv.re/img-original/img/...
```

## Notes

- The free API has rate limits
- Image links come from Pixiv, the i.pixiv.re CDN prefix is required for direct access