Installing Agent Skills
The Nexudus Agent Skill is distributed as a public skills package. Installation takes one command and works for both GitHub Copilot and Claude.Prerequisites
- Node.js — required to run the
npx skillsinstaller. - Nexudus CLI — the skill calls the CLI under the hood, so install it first.
- GitHub Copilot or Claude — the AI assistant you want to use.
Install the skill
Install from the public GitHub repository:Install for a specific agent
To install specifically for GitHub Copilot:Install globally
To install the skill globally (available across all your projects):Verify the installation
nexudus skill in the list. The skill provides:
skills/nexudus/SKILL.md— the main skill file that teaches your AI assistant how to use the CLI.
After installation
Once the skill is installed, your AI assistant can use the Nexudus CLI. To confirm everything is working end-to-end:- Make sure the CLI is authenticated — run
nexudus loginif you haven’t already. - Ask your assistant to run diagnostics — say something like “Run nexudus doctor and tell me the status”.
- Try a query — ask “List my Nexudus businesses”.
Updating the skill
The Nexudus CLI and Agent Skills receive frequent updates with new entity coverage and improvements. To get the latest version:The skill is synced from the private Nexudus CLI repository and only exposes the public skills payload. Updates are published every few days as new
entity types and features are added.
Uninstalling
To remove the skill:Troubleshooting
| Issue | Solution |
|---|---|
npx skills command not found | Make sure Node.js is installed and in your PATH |
| Skill installed but assistant doesn’t use it | Restart your editor or AI assistant session to pick up the new skill |
| Assistant returns “Not logged in” errors | Run nexudus login in your terminal to authenticate |
| Assistant can’t find the CLI | Make sure the Nexudus CLI is installed globally via dotnet tool install --global Nexudus.Cli |