AI & Skills
If you use AI coding agents, vue-virtual-scroller ships a package skill that discovery tools can pick up from the installed npm package.
One-off usage with npx skills-npm
After installing vue-virtual-scroller in your project:
bash
pnpm add vue-virtual-scroller
npx skills-npmThis is the quickest way to expose the bundled skill to supported agents.
Repeatable setup
If you want the skill links to stay up to date after installs, add skills-npm to your project:
bash
npm i -D skills-npmAdd a prepare script in your project:
json
{
"scripts": {
"prepare": "skills-npm"
}
}Useful options
--source <source>chooses betweenpackage.jsonandnode_modules--cwd <cwd>points the command at a specific workspace root--recursivescans a monorepo--dry-runpreviews the generated links--yesskips prompts
For more control, create a skills-npm.config.ts file in your consumer project.
You can learn more about skills-npm in its documentation.
Notes
- Run
skills-npmfrom the consumer project root, not from this package repository. - Generated links are typically local setup artifacts. Add
skills/npm-*to.gitignoreif you do not want them committed. - The published
vue-virtual-scrollerpackage includes itsskills/directory so discovery tools can find the bundled skill.