AGENTS.md file in the root of each official SDK repository. It is a single-file reference for correct licensing integration: constructor parameters, methods, server error codes, and copy-paste patterns (including what not to do).
Quick integration
Paste this prompt into your AI tool together with theAGENTS.md file from the SDK you use (add the SDK source to context if the agent should wire imports and project layout):
Where to find AGENTS.md
Each file lives in the repository root of the matching SDK: Clone or browse the repo, openAGENTS.md, and attach it (or the raw file from the default branch) to your agent session.
Supported AI tools
This workflow works with Cursor, GitHub Copilot, Claude Code, Windsurf, and any assistant that can read project or pasted context files.Tips for better results
- Add both the SDK’s main source file (for example
authforge.py,AuthForgeClient.cs) andAGENTS.mdso the agent matches real APIs and naming. - State your language and framework explicitly (for example “.NET 8 WPF” or “Go CLI”).
- Ask the agent to handle failure paths and server error codes, not only the happy path.
- Compare generated code to the Do NOT section at the bottom of
AGENTS.mdbefore shipping.