Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

alova-client-usagealova 客户端使用

Agent Skill

alova-client-usage 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,409

周安装

57

GitHub Stars

3

下载量

442
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:alova-client-usage(alova 客户端使用)
来源仓库:https://github.com/alovajs/skills
仓库路径:skills/alova-client-usage
安装命令:
npx skills add https://github.com/alovajs/skills --skill alova-client-usage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alovajs/skills --skill alova-client-usage

简介

alova-client-usage 提供 Alova 客户端侧使用的快速参考索引。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中查找 API 用法和选项时使用。
  • 分为两层结构:本文件和官方文档,优先查阅本文件再按需获取官方文档。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • alova 处于活跃开发中,官方实时文档比训练数据更可靠。

SKILL.md

alova banner

Alova Client-Side Usage

For server-side (Node/Bun/Deno), see alova-server skill. For alova openapi usage, see alova-openapi skill.

How to Use This Skill

This skill is structured in two layers:

  1. This file — Quick-reference index: what each API does and when to use it. Read this first.
  2. Official docs (fetch on demand) — For full options, edge cases, or unfamiliar APIs, fetch the URL listed in each section to get the latest accurate information.
Always fetch the official doc before answering questions about specific API options or behaviors — alova is actively developed and live docs are more reliable than training data.

Installation & Setup

See references/SETUP.md for:

  • Installation
  • Creating Alova instance
  • Framework-specific StatesHook
  • Request adapters
  • Global request sharing and timeout
  • Create interceptor about Token-based login, logout and token refresh
  • cache logger
  • limit number of method snapshots

Create Method Instance

alova provides a total of 7 request types.

Instance creation functionParameters
GETalovaInstance.Get(url[, config])
POSTalovaInstance.Post(url[, data[, config]])
PUTalovaInstance.Put(url[, data[, config]])
DELETEalovaInstance.Delete(url[, data[, config]])
HEADalovaInstance.Head(url[, config])
OPTIONSalovaInstance.Options(url[, config])
PATCHalovaInstance.Patch(url[, data[, config]])

Parameter Description:

  • url is the request path;
  • data is the request body data;
  • config is the request configuration object, which includes configurations such as request headers, params parameters, request behavior parameters, etc.;

In fact, the above functions calling are not sending request, but creates a method instance, which is a PromiseLike instance. You can use then, catch, finally methods or await to send request just like a Promise object.

alovaInstance
  .Get('/api/user')
  .then((response) => {
    // ...
  })
  .catch((error) => {
    // ...
  })
  .finally(() => {
    // ...
  });

// or
try {
  await userMethodInstance;
} catch (error) {
  // ...
} finally {
  // ...
}

See Method Documentation if need to know full method instance API.

Method Metadata

Add additional information to specific method instances to facilitate their identification or additional information in global interceptor such as different response returning, global toast avoiding. please set method metadata. See -> Method Metadata.

Core Hooks

Use these hooks in components instead of hand-rolling common request patterns.

import from alova/client.
HookWhen to useDocs
useRequestFetch on mount, or trigger once on a user action (button click, form submit)Docs
useWatcherRe-fetch automatically when reactive state changes (search input, filter, tab, page)Docs
useFetcherPreload data silently in background, or refresh from outside the component that owns the dataDocs

Business Strategy Hooks

import from alova/client.
ScenarioHookKey capabilityDocs
Paginated list / infinite scrollusePaginationAuto page management, preload next/prev, optimistic insert/remove/replaceDocs
Form submit (any complexity)useFormDraft persistence, multi-step state sharing, auto-resetDocs
Polling / focus / reconnect refreshuseAutoRequestConfigurable triggers, throttleDocs
Sms, email verification code send + countdownuseCaptchaCooldown timer built-inDocs
Cross-component request triggeractionDelegationMiddleware + accessActionNo prop-drilling or global storeDocs
Chained dependent requestsuseSerialRequest / useSerialWatcherEach step receives previous resultDocs
Retry with exponential backoffuseRetriableRequestConfigurable attempts + jitterDocs
File upload with progressuseUploaderConcurrent limit, progress eventsDocs
Server-Sent EventsuseSSEReactive data + readyStateDocs
Seamless data interactionuseSQRequestinteract with UI can be responded immediately without waitingDocs

Cache Strategy

Alova has L1 (memory) and L2 (persistent/restore) layers, plus automatic request sharing (dedup).

Set cache globally and scoped

Key rule: prefer hitSource auto-invalidation — it requires zero imperative code and decouples components.

Hooks Middleware

Middleware allows you to intercept and control request behavior in useHooks. Common scenarios include:

  • Ignoring requests under certain conditions
  • Transforming response data
  • Changing request method or forcing cache bypass
  • Error handling (capture or throw custom errors)
  • Controlling response delays
  • Modifying reactive states (loading, data, etc.)
  • Implementing request retry logic
  • Taking full control of loading state

For full middleware API and examples, see Request Middleware.

Mock Request

Setup mock data for specific requests. See Mock Request.

Best Practices

  • Create multiple alova instances for different domains, APIs, or environments.
  • Provide a folder that uniformly stores request functions, to keep your code organized.
  • prefer using hooks in components, directly call method instance in other places.
  • prefer binding hooks events with chain calling style, like useRequest(method).onSuccess(...).onError(...).

Common Pitfalls

PitfallFix
useWatcher first arg is a Method instanceAlways wrap: () => method(state.value)
updateState silently does nothingOnly works while owning component is mounted; use setCache otherwise
Cache ops called synchronously in v3await invalidateCache / setCache / queryCache
useWatcher doesn't fetch on mountSet immediate: true

TypeScript

Annotate the response shape on the Method instance — hooks infer from it automatically:

const getUser = (id: number) => alovaInstance.Get<User>(`/users/${id}`);
// or need to transform data.
const getUser = (id: number) =>
  alovaInstance.Get(`/users/${id}`, {
    transform(user: User) {
      return {
        ...user,
        name: user.lastName + ' ' + user.firstName,
      };
    },
  });

const { data } = useRequest(getUser(1)); // data: Ref<User>

📄 TypeScript docs

SSR Component Party

alova can manage APIs on both server and client, instead using different request solutions on the server and client sides respectively.

CSR

Generally, alova's hooks only work in client side.

// won't send request in server side.
useRequest(getUser(1));

Nextjs

directly await method instance in server components.

const App = async () => {
  const data = await alovaInstance.Get('/todo/list');
  // then ... code
  return <div>{...}</div>;
};
export default App;

Nuxt

Using await before alova's hooks keep states on both ends in sync, which is the same effect as useFetch.

const { data } = await useRequest(getUser(1));

Sveltekit

directly await method instance in +page.server.[j|ts].

/** @type {import('./$types').PageServerLoad} */
export async function load({ params }) {
  return {
    list: alovaInstance.Get('/todo/list'),
  };
}

Custom Adapter

If all preset adapters not meet your needs, custom your own adapter.

Custom Method Key

Change cache, request sharing and state updating matching strategy by setting key. See Custom Method Key.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.26%
按下载量换算160

Claude

29.3%
按下载量换算130

Cursor

16.83%
按下载量换算74

Gemini CLI

9.18%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills