---
title: "Agent Skills"
description: "Use Claude Agent Skills to help AI coding agents generate correct Movk Nuxt code by capability domain."
canonical_url: "https://nuxt.mhaibaraai.cn/en/docs/getting-started/ai/skills"
---
# Agent Skills

> Use Claude Agent Skills to help AI coding agents generate correct Movk Nuxt code by capability domain.

## What are Agent Skills?

Agent Skills are structured `SKILL.md` knowledge files written per the [Agent Skills specification](https://agentskills.io/specification). Unlike the [MCP Server](https://nuxt.mhaibaraai.cn/docs/getting-started/ai/mcp) (which provides real-time documentation retrieval tools), Skills are loaded directly into an AI coding agent's context, allowing the agent to reference them throughout an entire conversation.

Movk Nuxt provides a single `movk-nuxt` skill covering five capability domains — AutoForm, API, DataTable, standalone components and composables — injecting guidance on "which capability to use in which scenario, and how to write it correctly," so generated code conforms to this library's conventions.

## Usage

The `movk-nuxt` skill gives AI agents complete knowledge for building Movk Nuxt applications:

- **AutoForm**: Zod Schema-driven form generation, field control registration, layout and conditional rendering
- **API**: `useApiFetch` multi-endpoint, auto-auth, business code handling, upload/download progress
- **DataTable**: Column configuration, tree data, selection/expand, pagination and load-more
- **Standalone Components**: DatePicker, SearchForm, Tree, PillGroup and other `M`-prefixed components
- **Composables**: `useDateFormatter`, `useTheme`, `useMessageBox` and other utility functions

The skill entry `SKILL.md` carries cross-domain rules and a routing table; domain-specific details are in `references/` and loaded by the agent on demand, keeping responses focused and context efficient.

> [!NOTE]
> 
> After installation, type 
> 
> /movk-nuxt
> 
>  in Agent chat to activate the skill.

### Skills CLI

The [`skills`](https://skills.sh) CLI is the easiest way to install the Movk Nuxt skill. It supports 35+ agents including Cursor, Claude Code, Codex, Windsurf, Cline and more. Just pass the documentation site URL — the CLI will automatically fetch the skill:

```bash
npx skills add https://nuxt.mhaibaraai.cn
```

Specify a target agent with `--agent`:

```bash
npx skills add https://nuxt.mhaibaraai.cn --agent cursor
npx skills add https://nuxt.mhaibaraai.cn --agent claude-code
```

Or use `--global` to install globally, making the skill available across all projects:

```bash
npx skills add https://nuxt.mhaibaraai.cn --global
```

> [!TIP]
> 
> Visit 
> 
> skills.sh
> 
>  to explore the Skills ecosystem and browse more available skills.

### Cursor

#### One-Click Install

Click the button below to install the Movk Nuxt skill directly in Cursor:

[Install Skill](cursor://anysphere.cursor-deeplink/install-skill?url=https://github.com/mhaibaraai/movk-nuxt/tree/main/docs/skills/movk-nuxt)

#### Manual Configuration

1. Open Cursor and go to "Settings" > "Skills"
2. Click "Add skill" and paste the following URL:

```text
https://github.com/mhaibaraai/movk-nuxt/tree/main/docs/skills/movk-nuxt
```

### Claude Code

> [!NOTE]
> 
> Ensure Claude Code is installed. See the 
> 
> Anthropic documentation
> 
>  for installation instructions.

Add the skill via CLI:

```bash
claude skill add https://github.com/mhaibaraai/movk-nuxt/tree/main/docs/skills/movk-nuxt
```

### Other AI Tools

The skill files are publicly hosted on GitHub; any AI tool that supports custom context or instructions can reference them directly:

- **Skill entry**: [`docs/skills/movk-nuxt/SKILL.md`](https://github.com/mhaibaraai/movk-nuxt/tree/main/docs/skills/movk-nuxt/SKILL.md)
- **Full skill directory**: [`docs/skills/movk-nuxt/`](https://github.com/mhaibaraai/movk-nuxt/tree/main/docs/skills/movk-nuxt)

> [!TIP]
> See: /docs/getting-started/ai/mcp
> 
> It is recommended to also configure the MCP Server so agents can retrieve the latest documentation and examples on demand while using the skill.


## Sitemap

See the full [sitemap](https://nuxt.mhaibaraai.cn/sitemap.md) for all pages.
