Copilot-Skills openai.instructions.md

Copilot-Skills openai.instructions.md is an instructions file for GitHub Copilot from TheSethRose/Copilot-Skills. It costs 1,852 tokens per session, scanned A, original, MIT.

A set of coding instructions for using OpenAI models and APIs in JavaScript, TypeScript, and Python applications. It covers client setup, environment-based API keys, streaming, retries, token awareness, model selection, and request options.

In plain words
What is it for?
Use it when adding chat or model calls, initializing an OpenAI client, handling failures, streaming responses, choosing models, or reviewing OpenAI code.
Why use it?
It helps avoid common integration mistakes such as exposing API keys, mishandling rate limits, or using incompatible request settings. It also encourages practical handling of long responses and usage costs.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot chat mode or prompt.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/thesethrose/copilot-skills/openai
Clone the repo
git clone --depth 1 https://github.com/TheSethRose/Copilot-Skills

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Copilot-Skills openai.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/thesethrose/copilot-skills/openai.svg)](https://agentmods.dev/instructions/thesethrose/copilot-skills/openai)
Your own site
<a href="https://agentmods.dev/instructions/thesethrose/copilot-skills/openai"><img src="https://agentmods.dev/badge/instructions/thesethrose/copilot-skills/openai.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,852 This file is loaded in full into every session.
When invoked 1,852 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01852 $0.01852
Opus 5 $0.00926 $0.00926
Sonnet 5 $0.00370 $0.00370
Haiku 4.5 $0.00185 $0.00185

Measured 5d ago against content hash af72e3ec6370, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

Copilot-Skills openai.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/openai.instructions.md · 319 lines

How it starts

The opening of the file, as written. The whole thing — 319 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OpenAI Instructions

Auto-loaded when: **/*.js, **/*.ts, **/*.tsx, **/*.jsx, **/*.py, **/openai*

Default Behaviors

When working with OpenAI code:

  1. Never hardcode API keys - Always use environment variables
  2. Handle rate limits - Implement exponential backoff retry logic
  3. Stream long responses - Use streaming for better UX
  4. Monitor tokens - Be aware of token costs
  5. Error handling - Always wrap API calls in try-catch
  6. Use latest models - gpt-4o, gpt-4o-mini, or gpt-5 for best results
  7. Safety identifiers - Use safety_identifier (not deprecated user)
  8. Optimize caching - Use prompt_cache_key for better performance
  9. Reasoning models - o3/o4-mini don't support stop parameter
  10. Service tiers - Use service_tier for priority processing

Common Workflows

Initialize OpenAI Client

import os
from openai import OpenAI

client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
import OpenAI from "openai";

const client = new OpenAI({
    apiKey: process.env.OPENAI_API_KEY
});

Basic Chat Completion

# Latest recommended approach (Oct 2024)
response = client.chat.completions.create(
    model="gpt-4o",  # or gpt-4o-mini, gpt-5
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello!"}
    ],
    temperature=0.7,
    max_tokens=100,
    safety_identifier="hashed_user_id",  # New: replaces 'user'
    service_tier="auto"  # New: default, flex, or priority
)

print(response.choices[0].message.content)

Using Reasoning Models

# For complex reasoning tasks
response = client.chat.completions.create(
    model="gpt-5",  # or o3, o4-mini
    messages=[
        {"role": "user", "content": "Solve: If x + 5 = 12, what is x?"}
    ],
    verbosity="low",  # low, medium, or high
    reasoning_effort="medium",  # control thinking depth
    temperature=1.0
    # Note: NO 'stop' parameter on o3/o4-mini
)

print(response.choices[0].message.content)

Read the full file on GitHub · 319 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 319 lines · 1,852 tokens per session scan A af72e3ec6370

Subscribe to this mod's changes

Copilot-Skills openai.instructions.md is an instructions file published in the GitHub repository TheSethRose/Copilot-Skills (3 stars, last pushed 9mo ago), licensed MIT. It adds 1,852 tokens to every session, about $0.0093 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.