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.
npx agentmods add instructions/thesethrose/copilot-skills/openaigit clone --depth 1 https://github.com/TheSethRose/Copilot-SkillsWrote 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.
[](https://agentmods.dev/instructions/thesethrose/copilot-skills/openai)<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>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.
| Model | Per session | Once 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 |
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.
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:
- Never hardcode API keys - Always use environment variables
- Handle rate limits - Implement exponential backoff retry logic
- Stream long responses - Use streaming for better UX
- Monitor tokens - Be aware of token costs
- Error handling - Always wrap API calls in try-catch
- Use latest models - gpt-4o, gpt-4o-mini, or gpt-5 for best results
- Safety identifiers - Use
safety_identifier(not deprecateduser) - Optimize caching - Use
prompt_cache_keyfor better performance - Reasoning models - o3/o4-mini don't support
stopparameter - Service tiers - Use
service_tierfor 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)
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.
- 5d ago First seen · 319 lines · 1,852 tokens per session scan A af72e3ec6370
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.
Other instructions, from other repositories
llm-ide-rules AGENTS.md
AGENTS.md instructions for iloveitaly/llm-ide-rules, covering code comments, important workflow rules, alembic migrations, default content for new non-nullable columns and 1. add the column as nullable (no default needed).
llm-ide-rules pytest-integration-tests.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering pytest integration tests and example integration test.
llm-ide-rules copilot-instructions.md
Copilot instructions for iloveitaly/llm-ide-rules, covering code comments and important workflow rules.
llm-ide-rules python-app.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering python app, factories and database & orm.
llm-ide-rules react.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering react, mock data, react hook form and styling.
llm-ide-rules pytest-tests.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering pytest tests, example test and file structure.