mirror of
https://github.com/dkyazzentwatwa/chatgpt-skills.git
synced 2026-09-18 21:50:32 +08:00
main
Major repo reorganization: removed many individual skill folders and SKILL.md files and consolidated numerous scripts into grouped suites (e.g. data-storyteller, document-converter-suite, geo-toolkit, image-enhancement-suite, media-toolkit, ocr-document-processor, mcp-builder). Added agents/openai.yaml for several suite folders, moved many scripts into the new suite script paths, and updated related requirements lists. Simplified CLAUDE.md to enforce repo rules and validation commands. Also updated README and skill-creator utilities (init/package/quick_validate) to reflect the new structure and removed many now-redundant standalone assets.
ChatGPT Skills Library
A reduced, higher-signal library of agent skills for ChatGPT. The repo now favors fewer, broader skills with real deterministic tooling over a long tail of thin utility wrappers.
Structure
Each skill lives in its own folder and contains:
SKILL.md: frontmatter plus operational instructionsagents/openai.yaml: UI-facing metadata for skill pickersscripts/: executable helpers andrequirements.txtwhen Python scripts existreferences/: load-on-demand documentation when neededassets/: templates or static resources used in outputs
Core Commands
python3 skill-creator/scripts/init_skill.py my-skill --path .
python3 skill-creator/scripts/generate_openai_yaml.py my-skill \
--interface display_name="My Skill" \
--interface short_description="One-line summary" \
--interface default_prompt="Help me use this skill."
python3 skill-creator/scripts/quick_validate.py my-skill
python3 audit_all_skills.py
python3 verify_docs.py
python3 skill-creator/scripts/package_skill.py my-skill ./dist
Current Catalog
crypto-ta-analyzerdata-storytellerdocument-converter-suitefinancial-calculatorgeo-toolkitimage-enhancement-suitemedia-toolkitmcp-builderocr-document-processorqr-code-generatorskill-creatorsvg-precision-skill
Notes
- The old micro-skill catalog was intentionally pruned.
- Overlapping image, media, geo, and analytics utilities were merged into broader suites.
- Repo docs are verified against the actual skill folders with
verify_docs.py.
Description
ocr-document-processor: Extract text and structure from scans, images, and scanned PDFs. Use for OCR, searchable PDFs, table extraction, receipt parsing, and business card parsing.; crypto-ta-analyzer: Run multi-indicator technical analysis on crypto or market OHLCV data. Use for deterministic trend, momentum, volume, and divergence analysis.
Readme
909 KiB
Languages
Python
100%