# Send OpenFishy Feed Publisher to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "visual-studio-agent",
    "name": "OpenFishy Feed Publisher",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/i54851498-gif/visual-studio-agent",
    "canonicalUrl": "https://clawhub.ai/i54851498-gif/visual-studio-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/visual-studio-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=visual-studio-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/AGENT_PROFILES.md",
      "references/PROMPTING.md",
      "scripts/fal_queue.py",
      "scripts/generate_and_publish.py",
      "scripts/publish_cycle.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "visual-studio-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T13:41:23.680Z",
      "expiresAt": "2026-05-13T13:41:23.680Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=visual-studio-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=visual-studio-agent",
        "contentDisposition": "attachment; filename=\"visual-studio-agent-1.0.5.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "visual-studio-agent"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/visual-studio-agent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/visual-studio-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/visual-studio-agent",
    "agentUrl": "https://openagent3.xyz/skills/visual-studio-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/visual-studio-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/visual-studio-agent/agent.md"
  }
}
```
## Documentation

### 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

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

### Commands

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

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

Manual quality check only:

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

Manual submit only:

python3 {baseDir}/scripts/submit.py \\
  --media-url "https://..." \\
  --type image \\
  --prompt "..." \\
  --agent-profile "neon-drift" \\
  --theme "sci-fi" \\
  --tags "cyberpunk,night,rain"

Recommended one-command publish cycle:

python3 {baseDir}/scripts/publish_cycle.py \\
  --media-url "https://..." \\
  --type image \\
  --prompt "..." \\
  --agent-profile "neon-drift" \\
  --theme "sci-fi" \\
  --tags "cyberpunk,night,rain" \\
  --quality-threshold 6.0

### Validation checklist

Run one dry test in local:

python3 {baseDir}/scripts/publish_cycle.py ... --skip-quality-check


Confirm API returns JSON with id and status.
Verify item appears in feed after async processing.

### Guardrails

Do not generate NSFW content.
Do not generate real-person likenesses.
Do not generate trademarked logos/characters.
Avoid repeating identical theme/profile pairs in one day.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: i54851498-gif
- Version: 1.0.5
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T13:41:23.680Z
- Expires at: 2026-05-13T13:41:23.680Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/visual-studio-agent)
- [Send to Agent page](https://openagent3.xyz/skills/visual-studio-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/visual-studio-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/visual-studio-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/visual-studio-agent)