用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/krishagel/geoffrey --skill psd-brand-guidelines命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Unified Google Workspace integration for managing email, calendar, files, and communication across multiple accounts
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, update or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy. Make sure to use this skill whenever the user mentions creating, building, designing, or improving skills, even if they don't explicitly say "skill-creator".
Generate Peninsula School District Standard Operating Procedures using the official PSD SOP template and conventions. Conducts a structured interview to gather all required information before drafting. Use when creating new SOPs, updating existing procedures, or drafting operational documentation for any district department. Triggers on requests to create SOPs, standard operating procedures, operational procedures, process documentation, or procedural guides for PSD.
基于 SOC 职业分类
正在显示 SKILL.md
| name | psd-brand-guidelines |
| description | Apply Peninsula School District official brand colors, typography, and logos to artifacts |
| triggers | ["psd brand","district branding","psd colors","psd logo","peninsula school district style","brand guide","on-brand"] |
| allowed-tools | Read, Write, Edit, Bash |
| version | 0.2.0 |
This skill applies Peninsula School District's official brand identity to artifacts including presentations, documents, graphics, and other materials.
NEVER use image-gen or any AI tool to generate:
Why? AI-generated logos are inconsistent and may hallucinate incorrect details (wrong colors, wrong name, made-up imagery). Always use actual logo files.
For any branded materials:
assets/ directorybrand-config.jsonbrand.py utilities to select the right assetsMachine-readable brand data: brand-config.json
Python utilities: brand.py
# Get colors
uv run brand.py colors
# Get appropriate logo path
uv run brand.py logo light wide
uv run brand.py logo dark small
# Validate prompt before image generation
uv run brand.py validate "create an infographic about enrollment"
When generating images for PSD materials, always use the --brand flag:
# This validates the prompt and blocks logo generation attempts
uv run generate.py "school campus scene" campus.png --brand psd
Ensure professional and consistent use of the Peninsula School District brand across all communications. The brand reflects the stunning beauty of the Pacific Northwest and the Puget Sound region.
Modern geometric, elegant font with a vintage 1920s feel. Use Bold weight for district name and all headings.
Perfect pairing to Josefin Sans, highly legible at smaller sizes due to slab serif and typewriter-style attributes.
| Name | Hex | RGB | Usage |
|---|---|---|---|
| Sea Glass | #6CA18A | rgb(108, 161, 138) | Primary green, landscape elements |
| Pacific | #25424C | rgb(37, 66, 76) | Primary dark blue, text, headers |
| Driftwood | #D7CDBE | rgb(215, 205, 190) | Neutral tan, backgrounds |
| Name | Hex | RGB | Usage |
|---|---|---|---|
| Cedar | #466857 | rgb(70, 104, 87) | Dark green accent |
| Whulge | #346780 | rgb(52, 103, 128) | Medium blue (Coast Salish word for sound of waves) |
| Sea Foam | #EEEBE4 | rgb(238, 235, 228) | Light background |
| Meadow | #5D9068 | rgb(93, 144, 104) | Green accent |
| Ocean | #7396A9 | rgb(115, 150, 169) | Light blue accent |
| Skylight | #FFFAEC | rgb(255, 250, 236) | Off-white/cream background |
| Format | Use Cases |
|---|---|
| EPS (Vector) | Professional printing, large scaling, Adobe programs |
| PNG (Raster) | Microsoft Office, websites, social media, email signatures |
Local assets folder: skills/psd-brand-guidelines/assets/
PNG files (19) - for web, Office, email:
psd_logo-2color-{emblem,fulllandscape,stacked,horizontal,square}.pngpsd_logo-1color-blue-{emblem,fulllandscape,stacked,horizontal,square}.pngpsd_logo-1color-green-{emblem,fulllandscape,stacked,horizontal,square}.pngpsd_logo-white-{emblem,stacked,horizontal,square}.pngEPS files (19) - for professional printing, Adobe programs:
.eps extensionReference:
PSD_Branding_Guide.pdf - full brand guide documentGoogle Drive source:
1YhjxX_pOwZJppZebIIC7QW_UHF4bvo791ufOB6rrKDbAaH7HapdLadJzWy8ho5hTb/* Title slides */
background-color: #25424C; /* Pacific */
color: #FFFAEC; /* Skylight */
font-family: 'Josefin Sans', Arial, sans-serif;
/* Content slides */
background-color: #EEEBE4; /* Sea Foam */
color: #25424C; /* Pacific */
font-family: 'Josefin Slab', Georgia, serif;
/* Accent elements */
border-color: #6CA18A; /* Sea Glass */
For questions or special needs:
from brand import get_logo_path, get_colors, validate_prompt, get_color
# Get all colors as hex dict
colors = get_colors() # {'seaGlass': '#6CA18A', 'pacific': '#25424C', ...}
# Get single color with metadata
color = get_color('pacific') # {'hex': '#25424C', 'rgb': [37, 66, 76], 'usage': '...'}
# Get logo path based on context
logo = get_logo_path(background='dark', space='wide') # Returns white-horizontal path
logo = get_logo_path(background='light', space='small') # Returns 2color-emblem path
# Validate prompt before image generation
valid, errors = validate_prompt("create a school event banner")
if not valid:
print(errors) # Lists violations and suggestions
All brand data is available in brand-config.json:
const PSD_BRAND = {
colors: {
// Logo colors
seaGlass: '#6CA18A',
pacific: '#25424C',
driftwood: '#D7CDBE',
// Supporting colors
cedar: '#466857',
whulge: '#346780',
seaFoam: '#EEEBE4',
meadow: '#5D9068',
ocean: '#7396A9',
skylight: '#FFFAEC'
},
fonts: {
heading: "'Josefin Sans', Arial, sans-serif",
body: "'Josefin Slab', Georgia, serif"
},
logos: {
localPath: 'skills/psd-brand-guidelines/assets/',
driveFolder: '1YhjxX_pOwZJppZebIIC7QW_UHF4bvo79'
}
};
Last updated: January 14, 2025 Source: PSD Branding Guide 06.14.2024.pdf, brand-config.json