Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

picassopicasso 搜索

Agent Skill

picasso 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

GitHub Stars

1

下载量

110
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:picasso(picasso 搜索)
来源仓库:https://github.com/sebastiaanwouters/dotagents
仓库路径:skills/picasso
安装命令:
npx skills add https://github.com/sebastiaanwouters/dotagents --skill picasso
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/sebastiaanwouters/dotagents --skill picasso

简介

用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景进行信息检索。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • picasso 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Picasso

Generate production-ready visual assets via fal.ai API.

Design Philosophy

Commit to a BOLD aesthetic direction—no generic AI slop:

  • Choose distinctive, memorable visual concepts over safe defaults
  • Use intentional, purposeful compositions that feel genuinely designed
  • Avoid overused patterns: gradient text, neon-on-dark, glassmorphism clichés

Prerequisites

command -v bun ffmpeg convert 2>/dev/null | xargs -I{} basename {} || echo "Missing deps"

Required: bun, FAL_API_KEY in .env. Optional: ffmpeg (video/gif), convert (ImageMagick).

Quick Start

bun scripts/fal-generate.ts "minimalist letter A logo, flat design" --size square --out favicon.png
bun scripts/fal-generate.ts "mobile app icon, weather app" --num 4
bun scripts/fal-generate.ts "pixel art sword, transparent background" --format png

Script Usage

Usage: bun fal-generate.ts <prompt> [options]

Options:
  --model <id>        fal.ai model endpoint (see Model Selection below)
  --size <size>       Size: square, landscape_4_3, portrait_4_3, etc.
  --num <n>           Number of images 1-4
  --format <fmt>      png, jpeg, webp
  --out <path>        Save first image to file
  --edit <url>        Image URL for editing (can be repeated)
  --resolution <res>  Edit output resolution: 1K, 2K, 4K

Model Selection & Cost Efficiency

→ *Consult models reference for discovery commands and selection criteria.*

Strategy: Cheap iterations, quality finals

  1. Explore with fast/cheap models — most generations get discarded
  2. Upgrade for final output only — when quality is the deliverable
  3. Post-process instead of regenerate — ImageMagick is free
# Discover available models
curl -s "https://api.fal.ai/v1/models?category=text-to-image&status=active" \
  -H "Authorization: Key $FAL_API_KEY" | jq '.models[] | {id: .endpoint_id, name: .metadata.display_name}'

# Search by capability
curl -s "https://api.fal.ai/v1/models?q=fast" -H "Authorization: Key $FAL_API_KEY"

When to use what

PhaseModel TierWhy
Concept explorationFast/cheapMany iterations, most discarded
Sprites, icons, UIFast/cheapGets post-processed anyway
Final brand assetsStandard/ProQuality visible in deliverable
Print/marketingProQuality is the product

Browse models: https://fal.ai/models

Prompting Fundamentals

→ *Consult image generation reference for complete prompt engineering guide.*

Prompt structure: Subject + Style/Medium + Lighting + Composition + Color/Mood

# Well-structured prompt
bun scripts/fal-generate.ts "portrait of a barista, film photo, soft rim light, 50mm close-up, warm mood, teal-orange palette"

DO: Be specific about subject, lighting, camera, mood DON'T: Use vague terms like "cool" or "nice"

Image Editing

→ *Consult image editing reference for inpainting, outpainting, and compositing.*

Edit existing images with --edit. The script auto-selects appropriate edit endpoint.

# Inpainting (edit within image)
bun scripts/fal-generate.ts "replace the red car with a blue motorcycle" --edit photo.png

# Outpainting (extend image)
bun scripts/fal-generate.ts "extend to landscape, continue the forest background" --edit portrait.png

# Compositing (combine images)
bun scripts/fal-generate.ts "put the person from first image into the scene from second" \
  --edit person.png --edit background.png

Edit tips:

  • Be specific about what to change AND what to preserve
  • Describe spatial relationships: "add a cat sitting on the left"
  • Reference image order matters: first = subject, second = context/style

Mockups

→ *Consult mockups reference for device, product, and presentation mockups.*

Generate realistic product presentations:

# Device mockup
bun scripts/fal-generate.ts "iPhone on wooden desk, app interface on screen, coffee shop setting, shallow depth of field"

# Product mockup
bun scripts/fal-generate.ts "t-shirt on hanger, front view, neutral background, soft studio lighting"

# Two-step for exact screen content
bun scripts/fal-generate.ts "phone mockup, blank screen, lifestyle setting" --out base.png
bun scripts/fal-generate.ts "place this screenshot on the phone screen" --edit base.png --edit my_screenshot.png

Asset Type Quick Reference

Asset TypeKey Prompt ElementsReference
General ImagesSubject + style + lighting + composition + moodreference/image-generation.md
Favicons & App Icons"flat design", "minimalist", "single object centered", "no text"reference/icons-favicons.md
Logos"vector style", "clean lines", "logo design", "monochrome"reference/brand-assets.md
Game Sprites"pixel art", "transparent background", "32x32 style"reference/game-assets.md
SpritesheetsGenerate frames individually, combine with ImageMagickreference/game-assets.md
Tilesets"seamless", "tileable", "flat lighting"reference/game-assets.md
UI Icons"UI icon", "glyph", "outlined", "material design style"reference/icons-favicons.md
Marketing Images"hero image", style consistency via --editreference/brand-assets.md
Photo EditsInpainting, outpainting, compositing, style transferreference/image-editing.md
MockupsDevice, product, presentation with environment contextreference/mockups.md

Detailed Guides

Core:

  • Image Generation - Prompt structure, lighting, composition, style
  • Image Editing - Inpainting, outpainting, compositing
  • Models - Model discovery, selection criteria, cost/quality tradeoffs

Asset-Specific:

  • Game Assets - Spritesheets, pixel art, tilesets, character rotations
  • Icons & Favicons - Size requirements, platform guidelines
  • Brand Assets - Logos, marketing imagery, style consistency
  • Mockups - Device, product, and presentation mockups

Post-Processing (ImageMagick)

# Resize for favicon
convert logo.png -resize 32x32 favicon.ico
convert logo.png -resize 180x180 apple-touch-icon.png

# Remove background
convert logo.png -fuzz 10% -transparent white transparent.png

# Create spritesheet from frames
montage frame*.png -tile 8x1 -geometry +0+0 -background none spritesheet.png

# Nearest-neighbor resize (pixel art)
convert sprite.png -filter point -resize 64x64 sprite_2x.png

# Batch uniform sizing
for f in frame*.png; do convert "$f" -gravity center -extent 64x64 "fixed_$f"; done

Post-Processing (ffmpeg)

# PNG sequence to GIF
ffmpeg -framerate 10 -i frame_%03d.png -loop 0 animation.gif

# Video to GIF
ffmpeg -i input.mp4 -vf "fps=10,scale=320:-1" output.gif

Example Workflow

# 1. Discover suitable models
curl -s "https://api.fal.ai/v1/models?q=logo&category=text-to-image" \
  -H "Authorization: Key $FAL_API_KEY" | jq '.models[0:3] | .[].endpoint_id'

# 2. Generate logo concepts (use fast model for exploration)
bun scripts/fal-generate.ts "modern tech startup logo, geometric, blue" --num 4

# 3. Refine chosen concept
bun scripts/fal-generate.ts "minimalist geometric logo, blue" --size square --out logo.png

# 4. Create favicon set
convert logo.png -resize 32x32 favicon.ico
convert logo.png -resize 180x180 apple-touch-icon.png

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

OpenCode

26.13%
按下载量换算29

Claude Code

21.3%
按下载量换算23

windsurf

19.58%
按下载量换算22

trae

14.5%
按下载量换算16

Codex

8.44%
按下载量换算9

github-copilot

3.98%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills