Install the CLI
[⏱️ ~3 min] Get `mdk` installed and verified from a tagged source checkout
mdk is MDK's command-line tool for standing up and operating a stack from your terminal.
It scaffolds a stack (mdk create), boots it (mdk run), and reports its health (mdk status),
all driven by the mdk.yaml spec mdk onboard writes for you.
Prerequisites
@tetherto/mdk-cli isn't published to npm yet — install from a tagged source checkout.
Install
git clone --branch v0.7.0 https://github.com/tetherto/mdk.git && cd mdk/packages
npm install
cd cli && npm run build && npm linkVerify
mdk --version
# 0.7.0Command groups
| Group | Commands |
|---|---|
| Onboarding | mdk onboard |
| Scaffold | mdk create worker|plugin|dashboard |
| Run & manage | mdk run [target], mdk status |
| Agent enablement | mdk skill add |
| Meta | mdk version |
See the full flag reference in the CLI's command surface.
Update
git pull && npm install && npm run buildUninstall
npm rm -g @tetherto/mdk-cliNext
Try the demo to see a stack running end to end.