Oauth discovery
Skill whiteknightonhorse/aipush-agent-skills/skills/oauth-discovery
Free, open, security-verified agent skills for AEO (Answer Engine Optimization) — make any site ready for AI agents. Live: aipush.appFrom the repository description
npx -y skills add whiteknightonhorse/aipush-agent-skills --skill oauth-discoveryAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.4 KB, 332 tokens by cl100k_base, as published. Nobody here has run it
Publish OAuth/OIDC discovery metadata
AIPUSH agent skill · Category: Identity & Auth · Slug:
oauth-discovery
Discovery metadata lets agents learn programmatically how to authenticate with your protected APIs — endpoints, supported grants, and key material — without hardcoding.
Why it matters
Discovery metadata lets agents learn programmatically how to authenticate with your protected APIs — endpoints, supported grants, and key material — without hardcoding.
How to detect
Request /.well-known/openid-configuration (OIDC) or /.well-known/oauth-authorization-server (OAuth 2.0).
How to implement
If you have protected APIs, publish discovery metadata:
{
"issuer": "https://YOURDOMAIN",
"authorization_endpoint": "https://YOURDOMAIN/oauth/authorize",
"token_endpoint": "https://YOURDOMAIN/oauth/token",
"jwks_uri": "https://YOURDOMAIN/.well-known/jwks.json",
"grant_types_supported": ["authorization_code", "client_credentials"],
"response_types_supported": ["code"]
}
How to verify
curl -s https://YOURDOMAIN/.well-known/openid-configuration | jq .token_endpoint returns your endpoint.
References
Part of the AIPUSH agent skills catalog. Scan your site free at https://aipush.app.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.