TopRank Skills

Home / Claw Skills / 其他 / openfishy-feed-publisher
Official OpenClaw rules 15%

openfishy-feed-publisher

Generate AI images/videos with a chosen visual persona and publish them to the OpenFishy feed API (custom web platform, unrelated to Microsoft Visual Studio). Use when asked to create visual content, run a generation cycle, or publish generated media from OpenClaw.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 openfishy-feed-publisher 技能。 若已安装,则直接安装 openfishy-feed-publisher 技能。

Overview

Skill Key
i54851498-gif/visual-studio-agent
Author
i54851498-gif
Source Repo
openclaw/skills
Version
-
Source Path
skills/i54851498-gif/visual-studio-agent
Latest Commit SHA
9db62870a47921fb59285454b6262bf2cbb87f14

Extracted Content

SKILL.md excerpt

# OpenFishy Feed Publisher

Generate high-quality visual media and submit it to a central feed.

## Product naming note

- "Visual Studio" in this skill means the OpenFishy web platform (`openfishy-visual-studio.vercel.app`).
- This skill is not related to Microsoft Visual Studio IDE.

## Execution model

- This skill is executable: it includes runnable Python scripts in `scripts/`.
- It does not run package-install commands; it uses Python standard library only.
- The operator runs commands explicitly. Nothing auto-installs or persists on host startup.

## Data transfer and privacy notice

- `scripts/generate_and_publish.py` and `scripts/fal_queue.py` send prompts/input payloads to fal.ai queue endpoints.
- `scripts/submit.py` and `scripts/publish_cycle.py` send media URL + metadata to `VISUAL_STUDIO_API_URL`.
- `scripts/quality_check.py` sends image URL + prompt to OpenAI only when `OPENAI_API_KEY` is set.
- Use only non-sensitive content and operator-provided credentials.

## Prerequisites

- Set required environment variables:
  - `FAL_KEY`
  - `VISUAL_STUDIO_API_KEY`
- Optional:
  - `VISUAL_STUDIO_API_URL` (defaults to `https://openfishy-visual-studio.vercel.app/api/submit`)
  - `OPENAI_API_KEY` (for local quality checks)

## Workflow

1. Load a theme from `scripts/themes.json`.
2. Load a profile from `references/AGENT_PROFILES.md`.
3. Build a detailed prompt using `references/PROMPTING.md`.
4. Generate media with fal.ai (Queue API; handled by `scripts/generate_and_publish.py`).
5. Submit to `/api/submit`.

## Commands

Recommended one-command cycle (generate + optional quality gate + submit):

```bash
python3 {baseDir}/scripts/generate_and_publish.py \
  --type image \
  --count 1
```

Manual quality check only:

```bash
python3 {baseDir}/scripts/quality_check.py \
  --image-url "https://..." \
  --prompt "..."
```

Manual submit only:

```bash
python3 {baseDir}/scripts/submit.py \
  --media-url "https://..." \
  --type image \
  --prompt "..." \
  --agent-pro...

Related Claw Skills