Agent Skills
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, asyncdebounce/throttle, URL parsing and query params, CSSlengthToPx - Transformers: naming convention converters, object key transformers,
Treestructure 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.
/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
Cursor
One-click install: Click the button below to install the @movk/core skill directly in Cursor.
Install SkillManual 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
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:
- Skill entry:
docs/skills/movk-core/SKILL.md - Full skill directory:
docs/skills/movk-core/