Skip to main content

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 skills installer.
  • 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:
npx skills add Nexudus-Ltd/nexudus-coworking-skills
Or use the full repository URL:
npx skills add https://github.com/Nexudus-Ltd/nexudus-coworking-skills.git

Install for a specific agent

To install specifically for GitHub Copilot:
npx skills add Nexudus-Ltd/nexudus-coworking-skills -a github-copilot

Install globally

To install the skill globally (available across all your projects):
npx skills add Nexudus-Ltd/nexudus-coworking-skills -g
Combine flags as needed:
npx skills add Nexudus-Ltd/nexudus-coworking-skills -g -a github-copilot

Verify the installation

npx skills list
You should see the 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:
  1. Make sure the CLI is authenticated — run nexudus login if you haven’t already.
  2. Ask your assistant to run diagnostics — say something like “Run nexudus doctor and tell me the status”.
  3. 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:
npx skills add Nexudus-Ltd/nexudus-coworking-skills
Running the install command again updates the skill to the latest published 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:
npx skills remove nexudus

Troubleshooting

IssueSolution
npx skills command not foundMake sure Node.js is installed and in your PATH
Skill installed but assistant doesn’t use itRestart your editor or AI assistant session to pick up the new skill
Assistant returns “Not logged in” errorsRun nexudus login in your terminal to authenticate
Assistant can’t find the CLIMake sure the Nexudus CLI is installed globally via dotnet tool install --global Nexudus.Cli