AI & Skills
If you use AI coding agents, vue-virtual-scroller ships a package skill that can be discovered 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@next
npx skills-npmThis lets supported coding agents discover the skill that ships inside the package.
Repeatable setup
If you want skill links to refresh automatically after installs:
bash
npm i -D skills-npmAdd a prepare script in your project:
json
{
"scripts": {
"prepare": "skills-npm"
}
}Useful options
--source <source>choosespackage.jsonornode_modules--cwd <cwd>targets a specific workspace root--recursivescans monorepos--dry-runpreviews the generated links--yesskips prompts
For more control, create a skills-npm.config.ts file in your consumer project.
Learn more about skills-npm here.
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 shipped skill.