一键导入
openai-52
General-purpose OpenAI assistant for tasks requiring OpenAI-specific capabilities or GPT models. Use when you need OpenAI model features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
General-purpose OpenAI assistant for tasks requiring OpenAI-specific capabilities or GPT models. Use when you need OpenAI model features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
/blog-schedule - Manage Post Schedule
Generate a blog post from source materials (text, PDFs, images, transcripts). Use when user wants to create a blog post or article.
Render carousel slides from social/carousel.md into 1080x1350 PNG images.
Push blog posts to Google Docs for review, then pull comments and suggestions back as feedback for discussion.
Generate AI images for content using Gemini or other image generation APIs. Use when user needs diagrams, illustrations, or visual content.
Initialize a new content project with the standard directory structure in projects). Use when user wants to create a new blog post and one doesn't exist for it.
| name | openai-52 |
| description | General-purpose OpenAI assistant for tasks requiring OpenAI-specific capabilities or GPT models. Use when you need OpenAI model features. |
Query OpenAI's GPT models for general-purpose tasks. Specifically configured for GPT-5.2 and other OpenAI models.
/openai-52 [prompt]
uv CLI: brew install uv or pip install uvOPENAI_API_KEY environment variable (or set in ~/.content/config.yaml)# Basic query (uses GPT-4o by default)
uv run .claude/skills/openai-52/scripts/query.py "Your prompt here"
# With GPT-5.2 (when available)
uv run .claude/skills/openai-52/scripts/query.py "Your prompt here" --model gpt-5.2
# With image input (vision models)
uv run .claude/skills/openai-52/scripts/query.py "Analyze this image" --image path/to/image.png
# With system message for context
uv run .claude/skills/openai-52/scripts/query.py "Your prompt" --system "You are a helpful assistant specializing in..."
gpt-4o (default) - Latest multimodal model currently availablegpt-5.2 - When available, use this for advanced reasoninggpt-4o-mini - Faster, cheaper varianto1 - Reasoning model (if available)o1-mini - Smaller reasoning modelPrints response to stdout. Use shell redirection to save:
uv run .claude/skills/openai-52/scripts/query.py "prompt" > output.txt
This skill is named openai-52 to indicate it's configured for OpenAI's GPT-5.2 model family. The script supports multiple OpenAI models via the --model parameter.