dailybot-cli 1.2.0__tar.gz → 1.3.0__tar.gz
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.
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/PKG-INFO +10 -2
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/README.md +9 -1
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli.egg-info/PKG-INFO +10 -2
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/pyproject.toml +1 -1
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/LICENSE +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/__init__.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/api_client.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/__init__.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/agent.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/auth.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/config.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/interactive.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/status.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/update.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/commands/version.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/config.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/display.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli/main.py +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli.egg-info/SOURCES.txt +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli.egg-info/dependency_links.txt +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli.egg-info/entry_points.txt +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli.egg-info/requires.txt +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/dailybot_cli.egg-info/top_level.txt +0 -0
- {dailybot_cli-1.2.0 → dailybot_cli-1.3.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dailybot-cli
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Dailybot CLI - The command-line bridge between humans and agents. Progress reports, observability, and workflow automation for modern teams across Slack, Google Chat, Discord, MS Teams, and more.
|
|
5
5
|
Author-email: Dailybot <support@dailybot.com>
|
|
6
6
|
License: MIT
|
|
@@ -52,12 +52,20 @@ Requires Python 3.10+.
|
|
|
52
52
|
brew install dailybothq/tap/dailybot
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
**Linux (binary)**
|
|
55
|
+
**Linux, WSL2, or Git Bash on Windows (binary or pip fallback)**
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
58
|
curl -sSL https://cli.dailybot.com/install.sh | bash
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
**Native Windows PowerShell** (only if you don't have WSL2 or Git Bash)
|
|
62
|
+
|
|
63
|
+
```powershell
|
|
64
|
+
irm https://cli.dailybot.com/install.ps1 | iex
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Requires Python 3.10+ on PATH. Wraps `pipx` / `uv tool` / `pip --user`.
|
|
68
|
+
|
|
61
69
|
Or download directly from [GitHub Releases](https://github.com/DailyBotHQ/cli/releases).
|
|
62
70
|
|
|
63
71
|
## Checking your installed version
|
|
@@ -18,12 +18,20 @@ Requires Python 3.10+.
|
|
|
18
18
|
brew install dailybothq/tap/dailybot
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
**Linux (binary)**
|
|
21
|
+
**Linux, WSL2, or Git Bash on Windows (binary or pip fallback)**
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
24
|
curl -sSL https://cli.dailybot.com/install.sh | bash
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
**Native Windows PowerShell** (only if you don't have WSL2 or Git Bash)
|
|
28
|
+
|
|
29
|
+
```powershell
|
|
30
|
+
irm https://cli.dailybot.com/install.ps1 | iex
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Requires Python 3.10+ on PATH. Wraps `pipx` / `uv tool` / `pip --user`.
|
|
34
|
+
|
|
27
35
|
Or download directly from [GitHub Releases](https://github.com/DailyBotHQ/cli/releases).
|
|
28
36
|
|
|
29
37
|
## Checking your installed version
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dailybot-cli
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: Dailybot CLI - The command-line bridge between humans and agents. Progress reports, observability, and workflow automation for modern teams across Slack, Google Chat, Discord, MS Teams, and more.
|
|
5
5
|
Author-email: Dailybot <support@dailybot.com>
|
|
6
6
|
License: MIT
|
|
@@ -52,12 +52,20 @@ Requires Python 3.10+.
|
|
|
52
52
|
brew install dailybothq/tap/dailybot
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
**Linux (binary)**
|
|
55
|
+
**Linux, WSL2, or Git Bash on Windows (binary or pip fallback)**
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
58
|
curl -sSL https://cli.dailybot.com/install.sh | bash
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
**Native Windows PowerShell** (only if you don't have WSL2 or Git Bash)
|
|
62
|
+
|
|
63
|
+
```powershell
|
|
64
|
+
irm https://cli.dailybot.com/install.ps1 | iex
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Requires Python 3.10+ on PATH. Wraps `pipx` / `uv tool` / `pip --user`.
|
|
68
|
+
|
|
61
69
|
Or download directly from [GitHub Releases](https://github.com/DailyBotHQ/cli/releases).
|
|
62
70
|
|
|
63
71
|
## Checking your installed version
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "dailybot-cli"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.3.0"
|
|
8
8
|
description = "Dailybot CLI - The command-line bridge between humans and agents. Progress reports, observability, and workflow automation for modern teams across Slack, Google Chat, Discord, MS Teams, and more."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|