You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add AI agent skills to README; keep termy cursor on trailing prompt
- Add "Install AI agent skills" section to README
- Align README headers with docs (Launch the server, Install the CLI)
- Mention agent skills as a first-class way to apply configurations
- Simplify README installation section (consolidate uv/pip)
- Fix termynal.js to keep blinking cursor on last input line when
no output follows it
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
> Before using `dstack` through CLI or API, set up a `dstack` server. If you already have a running `dstack` server, you only need to [set up the CLI](#set-up-the-cli).
43
+
> Before using `dstack` through CLI or API, set up a `dstack` server. If you already have a running `dstack` server, you only need to [install the CLI](#install-the-cli).
44
44
45
-
#### Set up the server
46
-
47
-
##### Configure backends
48
-
49
-
To orchestrate compute across GPU clouds or Kubernetes clusters, you need to configure backends.
50
-
51
-
Backends can be set up in `~/.dstack/server/config.yml` or through the [project settings page](https://dstack.ai/docs/concepts/projects#backends) in the UI.
52
-
53
-
For more details, see [Backends](https://dstack.ai/docs/concepts/backends).
45
+
To orchestrate compute across GPU clouds or Kubernetes clusters, you need to [configure backends](https://dstack.ai/docs/concepts/backends).
54
46
55
47
> When using `dstack` with on-prem servers, backend configuration isn’t required. Simply create [SSH fleets](https://dstack.ai/docs/concepts/fleets#ssh-fleets) once the server is up.
56
48
57
-
##### Start the server
58
-
59
-
You can install the server on Linux, macOS, and Windows (via WSL 2). It requires Git and
49
+
The server can be installed on Linux, macOS, and Windows (via WSL 2). It requires Git and
60
50
OpenSSH.
61
51
62
-
##### uv
63
-
64
52
```shell
65
53
$ uv tool install "dstack[all]" -U
66
-
```
67
-
68
-
##### pip
69
-
70
-
```shell
71
-
$ pip install "dstack[all]" -U
72
-
```
73
-
74
-
Once it's installed, go ahead and start the server.
75
-
76
-
```shell
77
54
$ dstack server
55
+
78
56
Applying ~/.dstack/server/config.yml...
79
57
80
58
The admin token is "bbae0f28-d3dd-4820-bf61-8f4bb40815da"
@@ -84,27 +62,18 @@ The server is running at http://127.0.0.1:3000/
84
62
> For more details on server configuration options, see the
0 commit comments