Token导航 LogoToken导航TokenDH.com
图像处理敏感数据github未标认证来源可访问许可证需确认审计异常

og-hero-imageog 英雄形象

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

593

周安装

24

GitHub Stars

8

下载量

186
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill og-hero-image

简介

用于辅助图像生成、图片编辑和视觉素材处理。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据文本生成图片、处理背景或整理视觉提示词。
  • 使用时需确认输入图片、版权来源、输出格式和模型限制。
  • 涉及人物、品牌或公开展示素材时应核对授权与合规边界。
  • og-hero-image 属于图像处理类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/og-hero-image

Generate a premium open-graph hero image for a brand.

What This Does

  1. Gather brand context (name, colors, tagline)
  2. Generate prompt with brand values
  3. Invoke Gemini image generation
  4. Output 16:9 hero image ready for social sharing

Prerequisites

Requires Gemini API access via the gemini-imagegen skill:

  • GEMINI_API_KEY environment variable set
  • Python 3.9+ with google-genai package

Process

1. Gather Brand Context

If project path provided:

# Check for brand profile
cat brand-profile.yaml 2>/dev/null || cat .brand.yaml 2>/dev/null

# Check for existing colors in tailwind config
grep -A20 "colors:" tailwind.config.ts 2>/dev/null

# Check package.json for project name
jq -r '.name' package.json 2>/dev/null

If no context found, ask:

AskUserQuestion:
"What's the brand name and primary color palette?"

Required context:

  • Brand name
  • Primary brand color(s)
  • Short headline (3-6 words) - or generate one

2. Generate Image

Use the gemini-imagegen skill:

~/.claude/skills/gemini-imagegen/scripts/generate_image.py \
  "[FULL PROMPT]" \
  "og-hero-[brand].png" \
  --aspect-ratio 16:9

Full prompt template:

Create a premium open-graph hero image for [BRAND]:

A wide horizontal layout (16:9 ratio) designed for social sharing, website headers, and marketing collateral. This is a high-end designer mockup presentation suitable for a branding portfolio or product launch. The focus is on clarity, balance, negative space and visual confidence.

LAYOUT STRUCTURE:

The composition is split into two clear zones with generous breathing room between them.

LEFT ZONE:
The [BRAND] logo and brand name are placed in the top-left corner. The logo is sized appropriately for the format, not too large, not too small. It reads clearly but doesn't dominate.

Below the logo, a single large headline is set in a clean, modern sans-serif typeface. The headline is short, typically 3-6 words maximum. It is confident, left-aligned, and sits comfortably within the left third of the canvas. The text color is derived from the brand palette.

RIGHT ZONE:
One floating, rounded rectangular panel suggesting a product interface, dashboard, or app screen. The panel has subtle depth, either through a soft drop shadow or slight elevation effect. The contents of the panel are suggestive rather than detailed, hinting at functionality without clutter.

The panel is angled very slightly or presented straight-on depending on what feels most balanced. It floats naturally in the composition, grounded by its shadow but with clear separation from the background.

NEGATIVE SPACE:
Strong use of negative space throughout. The background is clean and uncluttered. There is clear visual breathing room between the left text block and the right interface panel. Nothing feels cramped or crowded.

COLOR & STYLE:
Colors are drawn directly from the [BRAND] palette: [COLORS]. The background can be a brand color, white, off-white, or a subtle gradient that complements the brand.

The overall style is flat or near-flat. No heavy gradients, no glossy effects, no 3D renders. Shadows are subtle and serve only to create gentle depth. Typography is modern, confident, and legible at small sizes.

MOOD & FEEL:
Clean SaaS homepage hero. Quiet confidence. The image should feel premium, polished and intentional. Every element is placed with purpose. The overall impression is of a company that knows what it's doing.

WHAT TO AVOID:
No stock photo elements. No people. No complex illustrations. No decorative graphics or patterns. No multiple interface panels. No visual noise. No text other than the headline and brand name. No borders or frames around the image.

OUTPUT:
A single 16:9 image with no watermarks, no mockup frames, and no external branding. Ready to use as an open-graph image, social header, or presentation slide.

HEADLINE: "[HEADLINE]"

3. Review & Iterate

If the image doesn't meet quality bar:

  • Adjust headline wording
  • Specify color placement more precisely
  • Regenerate with refined prompt

Use multi-turn chat for refinements:

~/.claude/skills/gemini-imagegen/scripts/multi_turn_chat.py

4. Output

Place image in standard location:

public/og-image.png          # Next.js default
public/images/og-hero.png    # Alternative

Update metadata if needed:

// app/layout.tsx
export const metadata = {
  openGraph: {
    images: ['/og-image.png'],
  },
};

Example Usage

For Volume (fitness app):

Brand: Volume
Colors: Deep green (#1a4d2e), warm cream (#f5f0e8)
Headline: "Track your fitness journey"

→ Generates: og-hero-volume.png (16:9, ~1200x630px)

For Brainstory (journaling app):

Brand: Brainstory
Colors: Warm amber (#d4a574), deep charcoal (#2d2d2d)
Headline: "Capture your thoughts"

→ Generates: og-hero-brainstory.png

Quick Reference

# Generate with defaults
/og-hero-image volume

# With explicit values
/og-hero-image --brand "Volume" --colors "#1a4d2e, #f5f0e8" --headline "Track your fitness journey"

Related Skills

  • gemini-imagegen - Underlying image generation
  • brand-builder - Creates brand-profile.yaml
  • seo-baseline - Ensures OG tags are set correctly
  • agent-browser - Verify OG image rendering in social preview tools

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.96%
按下载量换算69

Claude

27.78%
按下载量换算52

Cursor

18.39%
按下载量换算34

Gemini CLI

9.54%
按下载量换算18

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills