dailybot-cli 0.3.0__tar.gz → 0.3.2__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.
Files changed (23) hide show
  1. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/PKG-INFO +38 -12
  2. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/README.md +37 -11
  3. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/__init__.py +1 -1
  4. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli.egg-info/PKG-INFO +38 -12
  5. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/pyproject.toml +1 -1
  6. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/LICENSE +0 -0
  7. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/api_client.py +0 -0
  8. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/commands/__init__.py +0 -0
  9. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/commands/agent.py +0 -0
  10. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/commands/auth.py +0 -0
  11. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/commands/config.py +0 -0
  12. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/commands/interactive.py +0 -0
  13. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/commands/status.py +0 -0
  14. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/commands/update.py +0 -0
  15. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/config.py +0 -0
  16. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/display.py +0 -0
  17. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli/main.py +0 -0
  18. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli.egg-info/SOURCES.txt +0 -0
  19. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli.egg-info/dependency_links.txt +0 -0
  20. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli.egg-info/entry_points.txt +0 -0
  21. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli.egg-info/requires.txt +0 -0
  22. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/dailybot_cli.egg-info/top_level.txt +0 -0
  23. {dailybot_cli-0.3.0 → dailybot_cli-0.3.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dailybot-cli
3
- Version: 0.3.0
3
+ Version: 0.3.2
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
@@ -51,14 +51,6 @@ Authenticate once with your Dailybot email, then submit updates and check pendin
51
51
  # Log in (interactive, email OTP)
52
52
  dailybot login
53
53
 
54
- # Non-interactive login (for scripts and AI agents like Claude Code)
55
- # Step 1: request a verification code
56
- dailybot login --email=user@example.com
57
- # Step 2: verify the code received by email
58
- dailybot login --email=user@example.com --code=123456
59
- # Multi-org: pass the org UUID shown in step 1
60
- dailybot login --email=user@example.com --code=123456 --org=abc-123
61
-
62
54
  # See what check-ins are waiting for you
63
55
  dailybot status
64
56
 
@@ -75,6 +67,8 @@ Run `dailybot` with no arguments to enter **interactive mode** — if you're not
75
67
 
76
68
  Any software agent — AI coding assistants, CI jobs, deploy scripts, bots — can report activity through the CLI. This lets teams get visibility into what automated processes are doing, alongside human updates. Dailybot interconnects agents and humans with work analysis, progress reports, observability, and automations.
77
69
 
70
+ ### Authentication
71
+
78
72
  Authenticate with any of these methods (checked in this order):
79
73
 
80
74
  ```bash
@@ -88,7 +82,23 @@ dailybot config key=your-key
88
82
  dailybot login
89
83
  ```
90
84
 
91
- Then run agent commands:
85
+ ### Non-interactive login
86
+
87
+ AI agents (e.g. Claude Code) and scripts can log in without interactive prompts using a two-step flow:
88
+
89
+ ```bash
90
+ # Step 1: request a verification code — ask the user to check their email
91
+ dailybot login --email=user@example.com
92
+
93
+ # Step 2: verify the code the user received by email
94
+ dailybot login --email=user@example.com --code=123456
95
+
96
+ # Multi-org accounts: step 2 prints available organizations with UUIDs.
97
+ # Re-run with --org to select one:
98
+ dailybot login --email=user@example.com --code=123456 --org=abc-123
99
+ ```
100
+
101
+ ### Agent commands
92
102
 
93
103
  ```bash
94
104
  # Report a deployment
@@ -97,8 +107,12 @@ dailybot agent update "Deployed v2.1 to staging"
97
107
  # Name the agent so the team knows who's reporting
98
108
  dailybot agent update "Built feature X" --name "Claude Code"
99
109
 
100
- # Include structured data
101
- dailybot agent update "Tests passed" --name "CI Bot" --json-data '{"suite": "integration", "passed": 42}'
110
+ # Include structured data (each field is an array; items become bullet points in Dailybot)
111
+ dailybot agent update "Sprint progress" --name "Claude Code" --json-data '{
112
+ "completed": ["JWT authentication endpoint", "Token refresh logic", "Unit tests for auth flow"],
113
+ "in_progress": ["Integration tests"],
114
+ "blockers": []
115
+ }'
102
116
 
103
117
  # Mark a report as a milestone
104
118
  dailybot agent update "Shipped v3.0" --milestone --name "Claude Code"
@@ -163,6 +177,18 @@ Options:
163
177
  --help Show this message and exit.
164
178
  ```
165
179
 
180
+ #### Structured JSON data format
181
+
182
+ The `--json-data` option accepts a JSON object whose values are **arrays of strings**. Each array item becomes a bullet-pointed update inside Dailybot. Use any field names that match your workflow:
183
+
184
+ ```json
185
+ {
186
+ "completed": ["JWT auth endpoint", "Token refresh logic"],
187
+ "in_progress": ["Integration tests", "API docs"],
188
+ "blockers": ["Waiting on staging DB credentials"]
189
+ }
190
+ ```
191
+
166
192
  Run `dailybot --help` or `dailybot <command> --help` for full details on any command.
167
193
 
168
194
  ## Development
@@ -24,14 +24,6 @@ Authenticate once with your Dailybot email, then submit updates and check pendin
24
24
  # Log in (interactive, email OTP)
25
25
  dailybot login
26
26
 
27
- # Non-interactive login (for scripts and AI agents like Claude Code)
28
- # Step 1: request a verification code
29
- dailybot login --email=user@example.com
30
- # Step 2: verify the code received by email
31
- dailybot login --email=user@example.com --code=123456
32
- # Multi-org: pass the org UUID shown in step 1
33
- dailybot login --email=user@example.com --code=123456 --org=abc-123
34
-
35
27
  # See what check-ins are waiting for you
36
28
  dailybot status
37
29
 
@@ -48,6 +40,8 @@ Run `dailybot` with no arguments to enter **interactive mode** — if you're not
48
40
 
49
41
  Any software agent — AI coding assistants, CI jobs, deploy scripts, bots — can report activity through the CLI. This lets teams get visibility into what automated processes are doing, alongside human updates. Dailybot interconnects agents and humans with work analysis, progress reports, observability, and automations.
50
42
 
43
+ ### Authentication
44
+
51
45
  Authenticate with any of these methods (checked in this order):
52
46
 
53
47
  ```bash
@@ -61,7 +55,23 @@ dailybot config key=your-key
61
55
  dailybot login
62
56
  ```
63
57
 
64
- Then run agent commands:
58
+ ### Non-interactive login
59
+
60
+ AI agents (e.g. Claude Code) and scripts can log in without interactive prompts using a two-step flow:
61
+
62
+ ```bash
63
+ # Step 1: request a verification code — ask the user to check their email
64
+ dailybot login --email=user@example.com
65
+
66
+ # Step 2: verify the code the user received by email
67
+ dailybot login --email=user@example.com --code=123456
68
+
69
+ # Multi-org accounts: step 2 prints available organizations with UUIDs.
70
+ # Re-run with --org to select one:
71
+ dailybot login --email=user@example.com --code=123456 --org=abc-123
72
+ ```
73
+
74
+ ### Agent commands
65
75
 
66
76
  ```bash
67
77
  # Report a deployment
@@ -70,8 +80,12 @@ dailybot agent update "Deployed v2.1 to staging"
70
80
  # Name the agent so the team knows who's reporting
71
81
  dailybot agent update "Built feature X" --name "Claude Code"
72
82
 
73
- # Include structured data
74
- dailybot agent update "Tests passed" --name "CI Bot" --json-data '{"suite": "integration", "passed": 42}'
83
+ # Include structured data (each field is an array; items become bullet points in Dailybot)
84
+ dailybot agent update "Sprint progress" --name "Claude Code" --json-data '{
85
+ "completed": ["JWT authentication endpoint", "Token refresh logic", "Unit tests for auth flow"],
86
+ "in_progress": ["Integration tests"],
87
+ "blockers": []
88
+ }'
75
89
 
76
90
  # Mark a report as a milestone
77
91
  dailybot agent update "Shipped v3.0" --milestone --name "Claude Code"
@@ -136,6 +150,18 @@ Options:
136
150
  --help Show this message and exit.
137
151
  ```
138
152
 
153
+ #### Structured JSON data format
154
+
155
+ The `--json-data` option accepts a JSON object whose values are **arrays of strings**. Each array item becomes a bullet-pointed update inside Dailybot. Use any field names that match your workflow:
156
+
157
+ ```json
158
+ {
159
+ "completed": ["JWT auth endpoint", "Token refresh logic"],
160
+ "in_progress": ["Integration tests", "API docs"],
161
+ "blockers": ["Waiting on staging DB credentials"]
162
+ }
163
+ ```
164
+
139
165
  Run `dailybot --help` or `dailybot <command> --help` for full details on any command.
140
166
 
141
167
  ## Development
@@ -1,3 +1,3 @@
1
1
  """Dailybot CLI - The command-line bridge between humans and agents."""
2
2
 
3
- __version__: str = "0.3.0"
3
+ __version__: str = "0.3.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dailybot-cli
3
- Version: 0.3.0
3
+ Version: 0.3.2
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
@@ -51,14 +51,6 @@ Authenticate once with your Dailybot email, then submit updates and check pendin
51
51
  # Log in (interactive, email OTP)
52
52
  dailybot login
53
53
 
54
- # Non-interactive login (for scripts and AI agents like Claude Code)
55
- # Step 1: request a verification code
56
- dailybot login --email=user@example.com
57
- # Step 2: verify the code received by email
58
- dailybot login --email=user@example.com --code=123456
59
- # Multi-org: pass the org UUID shown in step 1
60
- dailybot login --email=user@example.com --code=123456 --org=abc-123
61
-
62
54
  # See what check-ins are waiting for you
63
55
  dailybot status
64
56
 
@@ -75,6 +67,8 @@ Run `dailybot` with no arguments to enter **interactive mode** — if you're not
75
67
 
76
68
  Any software agent — AI coding assistants, CI jobs, deploy scripts, bots — can report activity through the CLI. This lets teams get visibility into what automated processes are doing, alongside human updates. Dailybot interconnects agents and humans with work analysis, progress reports, observability, and automations.
77
69
 
70
+ ### Authentication
71
+
78
72
  Authenticate with any of these methods (checked in this order):
79
73
 
80
74
  ```bash
@@ -88,7 +82,23 @@ dailybot config key=your-key
88
82
  dailybot login
89
83
  ```
90
84
 
91
- Then run agent commands:
85
+ ### Non-interactive login
86
+
87
+ AI agents (e.g. Claude Code) and scripts can log in without interactive prompts using a two-step flow:
88
+
89
+ ```bash
90
+ # Step 1: request a verification code — ask the user to check their email
91
+ dailybot login --email=user@example.com
92
+
93
+ # Step 2: verify the code the user received by email
94
+ dailybot login --email=user@example.com --code=123456
95
+
96
+ # Multi-org accounts: step 2 prints available organizations with UUIDs.
97
+ # Re-run with --org to select one:
98
+ dailybot login --email=user@example.com --code=123456 --org=abc-123
99
+ ```
100
+
101
+ ### Agent commands
92
102
 
93
103
  ```bash
94
104
  # Report a deployment
@@ -97,8 +107,12 @@ dailybot agent update "Deployed v2.1 to staging"
97
107
  # Name the agent so the team knows who's reporting
98
108
  dailybot agent update "Built feature X" --name "Claude Code"
99
109
 
100
- # Include structured data
101
- dailybot agent update "Tests passed" --name "CI Bot" --json-data '{"suite": "integration", "passed": 42}'
110
+ # Include structured data (each field is an array; items become bullet points in Dailybot)
111
+ dailybot agent update "Sprint progress" --name "Claude Code" --json-data '{
112
+ "completed": ["JWT authentication endpoint", "Token refresh logic", "Unit tests for auth flow"],
113
+ "in_progress": ["Integration tests"],
114
+ "blockers": []
115
+ }'
102
116
 
103
117
  # Mark a report as a milestone
104
118
  dailybot agent update "Shipped v3.0" --milestone --name "Claude Code"
@@ -163,6 +177,18 @@ Options:
163
177
  --help Show this message and exit.
164
178
  ```
165
179
 
180
+ #### Structured JSON data format
181
+
182
+ The `--json-data` option accepts a JSON object whose values are **arrays of strings**. Each array item becomes a bullet-pointed update inside Dailybot. Use any field names that match your workflow:
183
+
184
+ ```json
185
+ {
186
+ "completed": ["JWT auth endpoint", "Token refresh logic"],
187
+ "in_progress": ["Integration tests", "API docs"],
188
+ "blockers": ["Waiting on staging DB credentials"]
189
+ }
190
+ ```
191
+
166
192
  Run `dailybot --help` or `dailybot <command> --help` for full details on any command.
167
193
 
168
194
  ## Development
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "dailybot-cli"
7
- version = "0.3.0"
7
+ version = "0.3.2"
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