Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

pop-cam流行摄像机

Agent Skill

pop-cam 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,634

周安装

112

GitHub Stars

公开资料未说明

下载量

923
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pop-cam(流行摄像机)
来源仓库:https://github.com/petagit/pop-cam
安装命令:
openclaw skills install pop-cam
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pop-cam

简介

生成任意视觉风格的人工智能图像,支持真实感、电影、卡通等多种艺术形式。

  • 适用于设计师、营销人员与内容创作者快速产出多样化视觉素材。
  • 通过 clawhub 安装于 OpenClaw,调用图像生成 API 并返回高清图片链接。
  • 需遵守各平台的内容政策,避免生成违规或侵权图像。
  • 建议明确提示 AI 生成内容属性,防止误导受众或法律争议。

SKILL.md

name
pop_cam
description
AI image generation in any visual style — photorealistic, cinematic, cartoon, illustration, and more. Transform photos or generate from text prompts via the Pop-cam NanoBanana API.
version
1.3.0
metadata
openclaw
requires
env
bins
primaryEnv
POPCAM_API_TOKEN
emoji
\F34C
homepage
https://www.pop-cam.com/openclaw

Pop-cam NanoBanana Skill

Generate images with the Pop-cam NanoBanana API. The model supports any visual style — photorealistic, cinematic, cartoon, illustration, watercolor, 3D render, and anything else you can describe in a prompt.

This skill supports two modes:

  • Image-to-image: send a base64-encoded photo and a prompt describing how to transform it.
  • Text-to-image: send only a prompt field (no image) to generate an image from scratch.

Both modes cost 1 credit per generation and use the same endpoint.

Authentication

All generation requests require a Pop-cam API token (pk_ prefix) in the Authorization header.

If the user does not have a token yet, walk them through these steps in order:

  1. Sign up at https://www.pop-cam.com/sign-up (skip if they already have an account).
  2. Sign in at https://www.pop-cam.com/sign-in.
  3. Create an API token at https://www.pop-cam.com/developer — label it "OpenClaw". Copy the token immediately; it is only shown once.

Store the token and send it on every request:

Authorization: Bearer pk_YOUR_TOKEN

If unsure whether the user is signed in, call the auth-status endpoint first:

curl https://www.pop-cam.com/api/openclaw/auth-status

The response tells you whether sign-in is needed and provides the relevant URLs.

Skill Definition JSON

For a machine-readable version of this entire skill (features, endpoints, schemas, examples), call:

curl https://www.pop-cam.com/api/openclaw/skill

Generation Endpoint

POST https://www.pop-cam.com/api/v1/nanobanana

Headers

HeaderValue
AuthorizationBearer pk_YOUR_TOKEN
Content-Typeapplication/json

Request Body

FieldTypeRequiredDescription
imagestringNoBase64 data URL of the source image (data:image/png;base64,...). Omit entirely for text-to-image.
promptstringNoGeneration prompt. Required when image is omitted. Optional for image-to-image (a default prompt is used if omitted).
webhook_urlstringNoHTTPS URL to receive the result asynchronously. Omit for synchronous mode.

Image-to-Image Example

Transform an existing photo:

curl -X POST https://www.pop-cam.com/api/v1/nanobanana \
  -H "Authorization: Bearer $POPCAM_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "data:image/png;base64,iVBOR...",
    "prompt": "Enhance this photo with cinematic lighting and shallow depth of field"
  }'

Text-to-Image Example

Generate an image from a text prompt only — no source photo needed:

curl -X POST https://www.pop-cam.com/api/v1/nanobanana \
  -H "Authorization: Bearer $POPCAM_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A photorealistic portrait of a man in a leather jacket standing on a city rooftop at golden hour, natural lighting, shallow depth of field"
  }'

Synchronous Response (200)

{
  "job_id": "a1b2c3d4-...",
  "image_url": "https://cdn.pop-cam.com/generated/user_id/a1b2c3d4.png",
  "download_url": "https://...r2.cloudflarestorage.com/...?X-Amz-Signature=...",
  "used_prompt": "A photorealistic portrait of a man in a leather jacket standing on a city rooftop at golden hour, natural lighting, shallow depth of field",
  "credits_remaining": 22,
  "mode": "text-to-image"
}

Important: Use download_url to fetch the generated image. It is a presigned URL valid for 1 hour that works regardless of storage bucket privacy settings. The image_url is the permanent stored reference but may not be directly accessible if the bucket is private.

The mode field is "text-to-image" or "image-to-image" depending on which path was used.

Webhook / Async Mode

Include webhook_url to get an immediate HTTP 202 response with a job_id. Pop-cam POSTs the result to your URL when generation completes (retries up to 3 times with exponential backoff).

Initial response (202):

{
  "job_id": "a1b2c3d4-...",
  "status": "processing",
  "message": "Your image is being generated. Results will be POSTed to your webhook_url."
}

Webhook delivery payload includes download_url (presigned, 1-hour expiry) for fetching the image.

Error Handling

StatusMeaningAction
401Invalid or missing tokenAsk the user to create or refresh their token at https://www.pop-cam.com/developer
402Insufficient creditsDirect the user to buy credits at https://www.pop-cam.com/checkout
403Account not syncedAsk the user to sign in via the web app first
400Bad request (e.g. missing prompt for text-to-image, invalid image format)Check the request body and fix the issue

Credits

  • Each generation (both modes) costs 1 credit.
  • New accounts receive starter credits for free.
  • Every response includes credits_remaining.
  • Purchase more at https://www.pop-cam.com/checkout.

Prompt Tips

The model is not limited to any single style. The output depends entirely on your prompt. Here are example styles you can request:

StyleExample prompt snippet
Photorealistic"photorealistic photo, natural lighting, 85mm lens"
Cinematic"cinematic still frame, anamorphic lens flare, moody color grading"
Cartoon"colorful cartoon style, bold outlines, flat shading"
Illustration"editorial illustration, clean vector style"
Oil painting"oil painting on canvas, visible brushstrokes, impressionist style"
Watercolor"delicate watercolor painting, soft washes, paper texture"
3D render"3D rendered scene, volumetric lighting, octane render"
Pencil sketch"detailed pencil sketch on white paper, crosshatching"
Anime"anime style, Studio Ghibli-inspired, vibrant colors"

For the most realistic output, include details like lighting conditions, camera lens, depth of field, and environment in your prompt.

Quick Reference

TaskHow
Transform a photoSend image + optional prompt
Generate from textSend prompt only, no image field
Download the resultUse download_url from the response (presigned, 1-hour expiry)
Async processingAdd webhook_url to the request body
Check auth stateGET /api/openclaw/auth-status
Full skill JSONGET /api/openclaw/skill
Buy creditshttps://www.pop-cam.com/checkout
Create tokenhttps://www.pop-cam.com/developer

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.27%
按下载量换算778

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills