skills/prompt-refiner-gpt/SKILL.md
Refine prompts for GPT models (GPT-5, GPT-5.1, Codex) using OpenAI's best practices. Use when preparing complex tasks for GPT.
npx skillsauth add sreenivasanac/claude_code_setup prompt-refiner-gptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Invoke this skill when you have a task for GPT that:
Review for:
Role framing: Start with "You are a [specific role] working on [specific context]..."
Numbered procedures: Break complex tasks into numbered steps that build on each other.
Output specification: Be explicit: "Return as JSON", "Format as markdown with headers", etc.
Chain of thought: For reasoning tasks, add: "Think through this step by step."
Effective order for GPT:
Present with:
Before: "Review this code for security issues"
After: You are a senior security engineer conducting a security audit of a Node.js payment processing service. Context: This service handles credit card transactions and communicates with Stripe’s API. It runs in AWS ECS. Task: Review the code in src/payments/ for security vulnerabilities. Steps: Check for proper input validation on all endpoints Verify secrets are not hardcoded or logged Review authentication and authorization logic Check for SQL injection and XSS vulnerabilities Verify proper error handling that doesn’t leak sensitive info Output format: Return a security report in markdown with: Critical: Issues that must be fixed before deployment High: Significant risks that should be addressed soon Medium: Improvements to consider Recommendations: General security enhancements For each issue, include: File and line number Description of the vulnerability Recommended fix with code example
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Apply rigorous coding standards. Use when writing, implementing, or reviewing code.
development
React useEffect best practices from official docs. Use when writing/reviewing useEffect, useState for derived values, data fetching, or state synchronization. Teaches when NOT to use Effect and better alternatives.