Skip to main content

Nexudus CLI & Agent Skills

The Nexudus CLI is a command-line tool that lets you manage your Nexudus coworking spaces directly from your terminal. Combined with Agent Skills, it also enables AI assistants like GitHub Copilot and Claude to perform Nexudus operations on your behalf.
The Nexudus CLI and Agent Skills are under active development. New entity types, commands, and improvements are released regularly. Check the GitHub repository for the latest updates.

What can you do with it?

Manage from the terminal

List, create, update, and delete entities like businesses, products, resources, bookings, coworkers, and many more — all from the command line.

AI-powered workflows

Install the Agent Skill so GitHub Copilot or Claude can manage your Nexudus data using natural language instructions.

Scriptable output

Choose between human-friendly tables, raw JSON, Markdown, or a structured agent envelope — ideal for automation and scripting.

Secure authentication

Credentials are stored in your operating system’s native secure storage (Windows Credential Manager, macOS Keychain, or Linux libsecret).

Who is this for?

AudienceUse case
Coworking operatorsAutomate repetitive management tasks, bulk-update entities, and query data without leaving the terminal.
DevelopersScript against the Nexudus API, integrate with CI/CD pipelines, and build custom workflows.
AI assistant usersLet GitHub Copilot or Claude manage your Nexudus spaces through natural language by installing the Agent Skill.

How it works

The CLI communicates with the Nexudus REST API using the same endpoints available to all integrations. Every entity in Nexudus (businesses, products, resources, bookings, coworkers, etc.) follows a consistent CRUD pattern, and the CLI wraps each one into a simple command structure:
nexudus <entity> <action> [options] [--json | --md | --agent]
For example:
# List all businesses
nexudus businesses list

# Get a specific product as JSON
nexudus products get 12345678 --json

# Create a new resource
nexudus resources create --name "Meeting Room A" --business 98765432
When used with the --agent flag, every command returns a structured JSON envelope that AI assistants can parse and act on automatically.

Next steps

Install the CLI

Download and set up the Nexudus CLI on your machine.

Install Agent Skills

Enable GitHub Copilot or Claude to use the Nexudus CLI.