
vercel-labs/academy-skills
2 skills36 installs14 starsGitHub
Install
npx skills add https://github.com/vercel-labs/academy-skillsSkills in this repo
1Agent Friendly ApisAgent-Friendly APIs is a debugging reference skill from Vercel Academy that walks solo builders through the failures agents hit most often on HTTP APIs—especially Next.js App Router handlers. Instead of abstract REST advice, it groups fixes by what you see in logs or tool output: 500s that should be 400s, filters that silently return full lists, dynamic segments that 404 despite valid IDs, and summary fields that come back as NaN. Each section states the symptom, likely cause, and a concrete code fix (for example catching JSON parse errors before validation runs). It also spans documentation and skill issues so your OpenAPI-style clarity matches runtime behavior. Indie developers shipping MCP tools, agent workflows, or SaaS backends use it while implementing routes, hardening before launch, and triaging production oddities—without needing a separate API consultant on call.18installs2Filesystem Agentsfilesystem-agents is a reference skill from Vercel Academy that anchors how to build agents that work over files and commands using the AI SDK’s ToolLoopAgent. For solo builders shipping agent features inside a SaaS or internal CLI, the hard part is not picking a model—it is structuring the loop so the assistant reliably invokes the right tools and stops when it has enough context. This skill explains that loop at a high level: instantiate ToolLoopAgent with model, system instructions, and a tool set; let the model decide each step; execute tools; feed results back until completion. It pairs naturally with filesystem permissions and backend routes that expose safe read/write or search tools. Use it while you are in active Build work on agent-tooling, before you freeze API shapes for Ship. It is documentation-weighted rather than a full security audit of tool exposure, so you still gate destructive paths yourself.18installs