Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

openai-gpt-converterOpenAI GPT 转换器

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bluewaves-creations/bluewaves-skills --skill openai-gpt-converter

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • openai-gpt-converter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

OpenAI GPT Converter

Convert Agent Skills into Custom GPTs with awareness of platform constraints and optimal adaptation strategies.

Platform Constraints Summary

AspectClaude SkillsCustom GPTs
InstructionsUnlimited (SKILL.md)8,000 characters
Knowledge FilesUnlimited20 files max
File SizeVaries by context512 MB per file
File StructureHierarchicalFlat
Executable ScriptsYes (Python, Bash)No (Code Interpreter only)
API IntegrationVia scriptsYes (Actions)

For detailed constraints and workarounds, see references/gpt-constraints.md.

Conversion Workflow

Step 1: Audit the Source Skill

Inventory all files in the source skill directory:

  1. Read SKILL.md — note frontmatter fields, body length, and character count
  2. List all files in scripts/, references/, and assets/
  3. Count total files (GPTs allow max 20 knowledge files)
  4. Identify scripts that could use Code Interpreter vs. needing conversion
  5. Identify any API calls that could become GPT Actions

Step 2: Condense SKILL.md for 8,000-Character Limit

This is the critical step. GPT instructions are limited to ~8,000 characters (~130 lines of markdown).

Condensation strategies (in order of preference):

  1. Extract to knowledge files — Move detailed procedures, examples, and reference material into knowledge files. Keep only the core workflow and pointers in instructions.
  2. Remove Claude-specific syntax — Strip file path references, tool invocation syntax, progressive disclosure directives.
  3. Compress verbose sections — Replace multi-paragraph explanations with bullet points.
  4. Use reference pointers — Replace inline content with See [filename] for details.
  5. Prioritize by importance — Cut nice-to-have sections first.

Character budget guidance:

SectionSuggested Budget
Role/purpose statement~500 chars
Core workflow steps~3,000 chars
Key rules and constraints~2,000 chars
Knowledge file pointers~1,500 chars
Edge cases and warnings~1,000 chars

Tiered importance for condensation:

  • Must keep: Core workflow, critical rules, safety constraints
  • Move to knowledge files: Detailed examples, reference tables, alternative approaches
  • Can drop: Explanatory context Claude already knows, redundant examples

Step 3: Convert Bundled Resources

Use this naming convention for the flat file structure:

Original:                           Derived:
references/api-docs.md         →    REF_api-docs.md
references/workflows/create.md →    REF_workflows_create.md
scripts/rotate_pdf.py          →    SCRIPT_rotate_pdf.md (converted)
assets/template.pptx           →    ASSET_template.pptx

Prefix system:

  • REF_ — Reference documentation
  • SCRIPT_ — Script logic (converted to readable format)
  • ASSET_ — Binary assets
  • WORKFLOW_ — Multi-step procedures

Also create REF_extended_instructions.md for any instruction content that was moved out of the 8K character limit.

Step 4: Evaluate Code Interpreter Opportunities

GPTs have Code Interpreter (a Python sandbox). For each script in the source skill:

Script CharacteristicRecommendation
Pure Python, no external depsGood candidate for Code Interpreter
Requires pip packagesCheck if available in Code Interpreter sandbox
Requires network accessCannot use Code Interpreter — convert to instructions
Requires local file systemCannot use Code Interpreter — convert to instructions
Simple data processingGood candidate for Code Interpreter

For Code Interpreter-compatible scripts, include them as knowledge files and instruct the GPT to execute them via Code Interpreter.

Step 5: Evaluate Actions for API Integrations

If the source skill makes API calls via scripts, consider converting to GPT Actions:

  1. Identify API endpoints used in the scripts
  2. Write OpenAPI spec for each endpoint
  3. Configure authentication in the GPT Actions settings
  4. Update instructions to reference the Action instead of the script

Actions are appropriate when:

  • The skill calls well-defined REST APIs
  • Authentication can be configured (API key, OAuth)
  • The API is publicly accessible

Step 6: Consolidate to 20-File Limit

GPTs allow up to 20 knowledge files. If the source skill has more:

  1. Merge related references into single files
  2. Prioritize core documentation
  3. Inline short references into instructions (within 8K limit)
  4. Aim for 10-15 files to leave room for additions

RAG considerations: GPTs use retrieval (RAG) to find relevant knowledge file content. Structure files for chunk-friendly retrieval:

  • Use clear section headers
  • Front-load key information in each section
  • Keep related content together (don't split a topic across files)
  • Use descriptive file names that indicate content

Step 7: Test the Custom GPT

  1. Create the GPT in the GPT Builder with condensed instructions
  2. Upload all knowledge files
  3. Configure Code Interpreter and/or Actions if applicable
  4. Test with representative queries from the original skill's use cases
  5. Test in long conversations (GPTs can experience prompt drift)
  6. Verify knowledge file retrieval works correctly
  7. Iterate on instructions if the GPT misses important context

Condensation Example

Before (2,500 characters, excerpt):

## PDF Processing

### Overview
This skill provides comprehensive PDF processing capabilities including
text extraction, form filling, document merging, and page manipulation.
It uses pdfplumber for text extraction and pypdf for structural operations.

### Text Extraction
Use pdfplumber for text extraction. Install with pip install pdfplumber.
Then use the following code:
[20 lines of code]

### Form Filling
For form filling, first analyze the form with scripts/analyze_form.py...

After (800 characters):

## PDF Processing

Extract text: `pdfplumber`. Fill forms: analyze → map → validate → fill.
Merge/split: `pypdf`.

See REF_pdf_procedures.md for code examples and detailed steps.
See SCRIPT_form_filling.md for form analysis workflow.

Naming Convention Quick Reference

SKILL.md fields → GPT Configuration:
  name          → GPT Name
  description   → GPT Description
  body          → Instructions (max 8,000 chars)

Resource files → Knowledge Files:
  references/*  → REF_*.md
  scripts/*     → SCRIPT_*.md (or keep .py for Code Interpreter)
  assets/*      → ASSET_*

Quality Expectations

Skill TypeExpected GPT Retention
Documentation/Knowledge~95%
Workflow guidance~85%
Code generation guidance~80%
Automated tasks~50% (with Code Interpreter)
External API integration~70% (with Actions)

GPTs retain more capability than Gems due to Code Interpreter and Actions. The main challenge is the 8,000-character instruction limit.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.01%
按下载量换算25

Claude

28.06%
按下载量换算20

Cursor

19.14%
按下载量换算14

Gemini CLI

10.48%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills