The aisdkagents skill is a paid knowledge package for AI assistants. It distills the agent patterns, AI SDK API usage, architecture notes, and production lessons from the pro block library.
It does not install pro block source code. It gives an AI assistant the pattern knowledge needed to help users build routing agents, human-in-the-loop workflows, tool loops, artifact systems, evaluator-optimizer flows, and streaming AI interfaces.
Install command
Paid users copy a short-lived command from the site:
pnpm dlx skills add https://aisdkagents.com/skill/<short-lived-token> --skill aisdkagents
The token expires, so users should copy a fresh command when they want to install or update the skill.
How it works
- The browser requests
/api/skill-token/aisdkagents. - The API checks that the user is authenticated and has a Pro or Premium plan.
- The API signs a short-lived
SKILLservice token. - The UI copies an
npx skills addcommand that points at/skill/<token>. - The Skills CLI discovers the skill through
/skill/<token>/.well-known/agent-skills/index.json. - The token-scoped skill routes verify the token before serving
SKILL.mdand referenced files.
What gets installed
The package contains:
SKILL.md, which tells the assistant when and how to use the skill.references/pattern-map.md, which maps user goals to proven AI SDK agent patterns.- API and architecture references for tool calling, streaming UI, human-in-the-loop, artifact generation, evaluator-optimizer loops, providers, env vars, and source block metadata.
Updating the skill
The skill source is generated at build time, reviewed manually, then packaged. Regenerate and package it with:
pnpm --filter=v4 skill:generate
pnpm --filter=v4 skill:packageUse generation for broad source coverage, then edit the skill files for clarity before packaging the final artifact.
ai sdk patterns.