Agent Skills

View source
@movk/core ships a Claude Agent Skill (SKILL.md) that teaches AI coding agents which utility to reach for and how to use it correctly, alongside the MCP server.

What are Agent Skills?

Agent Skills are structured SKILL.md knowledge files written to the Agent Skills specification. Unlike the MCP Server (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 the entire conversation.

@movk/core ships a single movk-core skill covering validators, arrays, async, URL, strings, objects, trees, files, paths, and Vue composables — injecting guidance on which function to use in a given scenario and how to write it correctly so the generated code aligns with the library's conventions.

Usage

The movk-core skill gives AI agents comprehensive knowledge for using @movk/core:

  • Validators: isArray, isObject, isPlainObject, isEmpty, and other type guards
  • Utilities: array chunk/unique, async debounce/throttle, URL parsing and query params, CSS lengthToPx
  • Transformers: naming convention converters, object key transformers, Tree structure operations, stringifyMinimark
  • Helpers: deepClone/deepMerge, pick/omit/separate, equalsBy, nested path read/write, file handling
  • Composables: useAppStorage, useCopyCode, useInfiniteScrollBinding, useOverflowDetection

The SKILL.md entry point encodes cross-domain principles (import on demand, pure immutable functions, no fabricated APIs, Tree config) and a module/use-case routing table, helping agents select the right function before writing any code.

After installation, type /movk-core in an Agent chat to invoke the skill.

Skills CLI

The skills CLI is the easiest way to install the @movk/core skill, supporting 35+ agents including Cursor, Claude Code, Codex, Windsurf, Cline, and more. Just pass the documentation site URL — the CLI will auto-fetch the skill:

npx skills add https://core.mhaibaraai.cn

Specify a target agent with --agent:

npx skills add https://core.mhaibaraai.cn --agent cursor
npx skills add https://core.mhaibaraai.cn --agent claude-code

Or install globally with --global so the skill is available across all projects:

npx skills add https://core.mhaibaraai.cn --global
Visit skills.sh to explore the Skills ecosystem and discover more available skills.

Cursor

One-click install: Click the button below to install the @movk/core skill directly in Cursor.

Install Skill

Manual configuration: Go to Settings > Skills, click Add skill, and paste the following URL:

https://github.com/mhaibaraai/movk-core/tree/main/docs/skills/movk-core

Claude Code

Make sure Claude Code is installed. See the Anthropic docs for installation instructions.

Add the skill via CLI:

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

Other AI Tools

The skill file is publicly hosted on GitHub. Any AI tool that supports custom context or instructions can reference it directly:

We recommend also configuring the MCP Server so agents can retrieve the latest documentation and examples on demand while using the skill.
Copyright © 2024 - 2026 YiXuan - MIT License