Agent Skills
Agent Skills teach AI assistants how to use the Nexudus CLI. Once installed, your AI assistant (GitHub Copilot or Claude) can manage your Nexudus coworking spaces through natural language instructions — no need to remember command syntax.How it works
The Agent Skill is a structured knowledge file (SKILL.md) that gets installed into your AI assistant’s context. It contains:
- Command reference — every CLI command, its options, and expected output.
- Decision trees — step-by-step workflows for common tasks (finding a business, creating a product, updating an entity).
- Output parsing rules — how to interpret the JSON envelope returned by
--agentmode. - Error handling — how to diagnose and recover from common errors.
- Entity index — a catalogue of all 40+ entity types the CLI supports.
- Run
nexudus businesses list --query "London" --agentto find the business ID. - Run
nexudus products list --business <id> --agentto list products for that location. - Parse the JSON envelope and present the results.
Supported AI assistants
| Assistant | Support |
|---|---|
| GitHub Copilot | Fully supported — install the skill globally or per-workspace |
| Claude (Anthropic) | Fully supported via the same skill file |
What the AI assistant can do
Once the skill is installed, your AI assistant can:- Query data — list, search, and filter any entity type (businesses, products, resources, bookings, coworkers, invoices, etc.).
- Create entities — set up new products, resources, bookings, and more using natural language.
- Update entities — modify properties, assign tariffs, change pricing, upload images.
- Delete entities — remove entities with proper confirmation handling.
- Run entity commands — execute special operations like archiving or activating.
- Diagnose issues — run
nexudus doctorand interpret the results.
Example conversations
You: “Show me all the meeting rooms in my space” The assistant runs:You: “Create a day pass product for £25” The assistant runs
nexudus whoami --agent to get your default business and currency, then:
You: “Delete product 12345678” The assistant confirms the entity exists, then:
With great power comes great responsibility
Important: the --agent flag
The skill instructs the AI assistant to always append --agent to every CLI call. This flag returns a structured JSON envelope that the assistant can parse reliably, instead of human-formatted table output.
Next steps
Install Agent Skills
Step-by-step installation guide for GitHub Copilot and Claude.