asd help — discoverabilityThe authoritative list of every command, organised by group. When this wiki is stale,
asd helpis right.
asd help prints every command (~230 of them in v2.9.x) grouped by
topic, with a one-line description per command and a
Total: N commands line at the bottom. It's the canonical
reference; this wiki is a curated view on the same surface.
| Command | Output |
|---|---|
asd help |
Full command list, grouped by 📦 <group>. |
asd <group> |
Subcommand list for one group (e.g. asd net, asd auth). |
asd <group> <command> --help |
Per-command flags and detail. |
asd actions |
Interactive command palette (fuzzy search). |
asd docs |
Interactive documentation browser (TUI). |
asd schema |
Print the JSON / TypeScript-like schema for asd.yaml + net.manifest.yaml. |
asd schema automation |
Print the schema for the automation: block. |
Example shape:
ASD CLI — https://github.com/asd-engineering/asd-cli
📋 Available Commands
📦 auth
auth credentials - Show all credential sources and their status
auth status - Show authentication status
…
📦 net
net apply - Apply planned network changes
net discover - Discover services from manifests
…
Total: 229 commands
Each group (📦) lists its commands as <group> <command> - <description>. The group name is what you type after asd —
asd auth status, asd net apply.
Some groups have so many commands they exceed a single screen.
Pipe to less (asd help | less) or filter with grep (asd help | grep -A1 "📦 net").
asd help disagreeasd help wins. The wiki is curated and may lag by a release. If a
command you read about here doesn't exist:
asd update # pull the latest CLI
asd help | grep <name> # look for the current spelling
If a command in asd help isn't in this wiki, file an issue or PR
against the docs — every command is supposed to be at least listed
in cli/index.
| Goal | Command |
|---|---|
| "What can asd do?" — first time | asd help |
| Fuzzy-find a command by partial name | asd actions (interactive) |
| Find every command containing "tunnel" | asd help \| grep -i tunnel |
| Get flags for a command | asd <group> <command> --help |
| Browse the docs in-terminal | asd docs |
| See the asd.yaml schema | asd schema |
cli/index — wiki view of the same surface, grouped thematically.cli/starter — the Top 7 commands with examples.learn/00-start-here — what to read first.