Skip to main content
Version: v3

Agent Skills

Write alova with an AI Agent (Agent Skills)

If you develop with an AI coding assistant (Claude Code / Cursor / CodeBuddy, etc.), you can install alova's Agent Skills. They teach your agent alova's official best practices, so it stops guessing and writes correct, idiomatic alova code for you.

alova ships three Agent Skills — install the one(s) that match what you're building:

SkillForCovers
alova-clientClient / frontend request logicusePagination, useForm, useUploader, useWatcher, token auth, seamless interaction, and the rest of the client request strategies
alova-serverServer-side request governancealova/server hooks: atomize, retry, createRateLimiter, and other server request strategies
wormaProjects with an OpenAPI specLets your agent read your endpoints and generate type-safe call code directly

Install

Install via the skills CLI:

npx skills add alovajs/skills --skill alova-client-usage

alova-client teaches your agent how to write client-side alova code — from a single useRequest to the full set of client request strategies.

Which should I install?

  • Building a frontend / client app → alova-client
  • Building server-side request governance → alova-server
  • Have an OpenAPI spec and want your agent to understand your APIs → worma

You can install more than one. They work together — for example, worma supplies the API knowledge while alova-client tells the agent how to call those APIs with alova.

Source and full docs: github.com/alovajs/skills.