@dosu/cli 0.1.1-alpha → 0.1.3-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -7
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,20 +1,33 @@
|
|
|
1
1
|
# @dosu/cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## ⚠️ Pre-Release:
|
|
4
|
+
The Dosu CLI is pre-release alpha software and is not fully supported currently. Please check back soon. Join our [Discord](https://go.dosu.dev/discord-cli) so you'll be the first to know when it's launched!
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
### npm
|
|
6
9
|
|
|
7
10
|
```bash
|
|
8
11
|
npx @dosu/cli setup
|
|
9
12
|
```
|
|
10
13
|
|
|
11
|
-
|
|
14
|
+
Or install globally:
|
|
12
15
|
|
|
13
16
|
```bash
|
|
14
17
|
npm install -g @dosu/cli
|
|
15
18
|
dosu setup
|
|
16
19
|
```
|
|
17
20
|
|
|
21
|
+
### Homebrew
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
brew install dosu-ai/dosu/dosu
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Manual Download
|
|
28
|
+
|
|
29
|
+
Download the appropriate archive from the [Releases](https://github.com/dosu-ai/dosu-cli/releases) page.
|
|
30
|
+
|
|
18
31
|
## Supported Platforms
|
|
19
32
|
|
|
20
33
|
| OS | Architecture |
|
|
@@ -25,10 +38,6 @@ dosu setup
|
|
|
25
38
|
| Linux | x64 |
|
|
26
39
|
| Windows | x64 |
|
|
27
40
|
|
|
28
|
-
## Alternative Installation
|
|
29
|
-
|
|
30
|
-
If you prefer not to use npm, install via [Homebrew](https://github.com/dosu-ai/dosu-cli#homebrew-recommended) or download directly from [GitHub Releases](https://github.com/dosu-ai/dosu-cli/releases).
|
|
31
|
-
|
|
32
41
|
## Links
|
|
33
42
|
|
|
34
43
|
- [GitHub](https://github.com/dosu-ai/dosu-cli)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dosu/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3-alpha",
|
|
4
4
|
"description": "Dosu CLI - Manage MCP servers for AI tools",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"repository": {
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"@dosu/cli-darwin-arm64": "0.1.
|
|
20
|
-
"@dosu/cli-darwin-x64": "0.1.
|
|
21
|
-
"@dosu/cli-linux-arm64": "0.1.
|
|
22
|
-
"@dosu/cli-linux-x64": "0.1.
|
|
23
|
-
"@dosu/cli-win32-x64": "0.1.
|
|
19
|
+
"@dosu/cli-darwin-arm64": "0.1.3-alpha",
|
|
20
|
+
"@dosu/cli-darwin-x64": "0.1.3-alpha",
|
|
21
|
+
"@dosu/cli-linux-arm64": "0.1.3-alpha",
|
|
22
|
+
"@dosu/cli-linux-x64": "0.1.3-alpha",
|
|
23
|
+
"@dosu/cli-win32-x64": "0.1.3-alpha"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=16"
|