AI Skills Installation
Install LyteNyte Grid AI Skills with the Vercel Skills CLI.
Info
If you’re unfamiliar with AI Skills, see the AI Skills Overview guide.
Before you can install and use LyteNyte Grid AI Skills, make sure you have the following:
- Node.js 18 or later.
- Vercel Skills CLI, installed on demand via
npx. - Skills supported coding agent, such as Claude Code, Cursor, or Windsurf.
No global installation is required. All commands below use npx to run the Skills CLI directly.
Installing AI Skills
Latest Version of Skills
Install the latest LyteNyte Grid AI Skills from the 1771 Technologies GitHub repository:
npx skills add 1771-Technologies/lytenyteThis command installs LyteNyte Grid AI Skills in the Skills folder for your AI agent. The exact folder depends on the coding agent you use. See the supported agents section in the Skills CLI for agent-specific install paths.
Specific Version of Skills
To install a specific version of LyteNyte Grid AI Skills,
append @<tag> to the repository path:
# Pin to a specific releasenpx skills add 1771-Technologies/lytenyte@v2.1.0Pinning is useful when you want the Skill documentation to match the version of the LyteNyte Grid package installed in your project.
Listing Available Skills
To list the Skills in the repository without installing them, use the --list flag:
npx skills add 1771-Technologies/lytenyte --listAI Skills Installation Modes
Default Install
By default, the Skill installs in the current project only. The CLI creates a project-local directory for the Skill in the project root.
npx skills add 1771-Technologies/lytenyteUse a project-local installation to make the Skill available only within this repository. Commit the project-local Skill directory to version control so your team can access it.
Global Install
The --global (or -g) flag installs the Skill at the user level, making it available
in every project on your machine:
npx skills add 1771-Technologies/lytenyte --global# ornpx skills add 1771-Technologies/lytenyte -gUse this if you work on LyteNyte Grid projects frequently and want the skill active everywhere without per-project setup.
Copy Install
By default, the CLI symlinks Skill files from a cache into the agent
directory. Use --copy to copy the files instead:
npx skills add 1771-Technologies/lytenyte --copyUse copy install when symlinks are not suitable for your environment, such as Docker containers, certain CI setups, or Windows environments that restrict symlinks.
Specific Agent Install
The -a / --agent flag restricts installation to a named agent:
# Install only for Claude Codenpx skills add 1771-Technologies/lytenyte -a claude-code
# Install for all detected agentsnpx skills add 1771-Technologies/lytenyte -a '*'Install Specific Skills
If the repository contains multiple Skills, the -s / --skill flag selects which ones to install:
# Install only the lytenyte-grid skillnpx skills add 1771-Technologies/lytenyte -s lytenyte-grid
# Install all skills in the repositorynpx skills add 1771-Technologies/lytenyte -s '*'Skip Confirmation Prompts
The -y / --yes flag skips interactive confirmation prompts, useful for CI or scripted setups:
npx skills add 1771-Technologies/lytenyte -yNon-Interactive Install
Use --all to install all Skills for all supported agents without interactive prompts.
This flag is shorthand for --skill '*', --agent '*', and -y:
npx skills add 1771-Technologies/lytenyte --allVerify Skills Installation
Run the command below to list all installed Skills both locally and globally. The output shows each Skill name, its location, and its active agents.
npx skills listUpdating AI Skills
To update all Skills to their latest versions, run:
npx skills updateTo check whether updates are available without applying them:
npx skills checkRemoving AI Skills
# Remove from the current projectnpx skills remove lytenyte-grid
# Remove globallynpx skills remove lytenyte-grid --global
# Remove from all agents in the current projectnpx skills remove lytenyte-grid --allRestore Locked Skills
If your project includes skills-lock.json, run the following to restore the locked versions:
npx skills experimental_installThis is the equivalent of npm ci for Skills, providing deterministic
restoration from a locked state.
Next Steps
- Using AI Skills: Learn how to get more accurate, reliable results from AI Skills.
- Getting Started: Get started with LyteNyte Grid, a modern React data grid designed for enterprise-scale data challenges.
