> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installing Agent Skills

> Step-by-step guide to installing the Nexudus Agent Skill for GitHub Copilot and Claude.

# 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](/cli/installation).
* **GitHub Copilot** or **Claude** — the AI assistant you want to use.

## Install the skill

Install from the public GitHub repository:

```bash theme={null}
npx skills add Nexudus-Ltd/nexudus-coworking-skills
```

Or use the full repository URL:

```bash theme={null}
npx skills add https://github.com/Nexudus-Ltd/nexudus-coworking-skills.git
```

### Install for a specific agent

To install specifically for GitHub Copilot:

```bash theme={null}
npx skills add Nexudus-Ltd/nexudus-coworking-skills -a github-copilot
```

### Install globally

To install the skill globally (available across all your projects):

```bash theme={null}
npx skills add Nexudus-Ltd/nexudus-coworking-skills -g
```

Combine flags as needed:

```bash theme={null}
npx skills add Nexudus-Ltd/nexudus-coworking-skills -g -a github-copilot
```

## Verify the installation

```bash theme={null}
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:

```bash theme={null}
npx skills add Nexudus-Ltd/nexudus-coworking-skills
```

Running the install command again updates the skill to the latest published version.

<Note>
  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.
</Note>

## Uninstalling

To remove the skill:

```bash theme={null}
npx skills remove nexudus
```

## 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` |
