Vercel's skills.sh as API within Vercel Projects
skills.sh by Vercel which lists all the AI skills is now available as a API.
Search for skills, pull detailed info on any one, check its security audit, and more.
However, you’ll need to authenticate it with your Vercel project’s OIDC token
In terms of rate limit, they’ve 600 requests per min though.
How to use it?
import { getVercelOidcToken } from '@vercel/oidc';
export async function GET() {
const token = await getVercelOidcToken();
const res = await fetch('https://skills.sh/api/v1/skills', {
headers: { Authorization: `Bearer ${token}` },
});
return Response.json(await res.json());
}