dailybot-cli 3.6.0__tar.gz → 3.7.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.
Files changed (52) hide show
  1. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/PKG-INFO +15 -1
  2. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/README.md +14 -0
  3. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/api_client.py +207 -162
  4. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/agent.py +28 -6
  5. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/auth.py +33 -0
  6. dailybot_cli-3.7.0/dailybot_cli/commands/env.py +359 -0
  7. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/status.py +38 -32
  8. dailybot_cli-3.7.0/dailybot_cli/config.py +1265 -0
  9. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/display.py +90 -1
  10. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/main.py +30 -1
  11. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli.egg-info/PKG-INFO +15 -1
  12. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli.egg-info/SOURCES.txt +1 -0
  13. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/pyproject.toml +1 -1
  14. dailybot_cli-3.6.0/dailybot_cli/config.py +0 -622
  15. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/LICENSE +0 -0
  16. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/__init__.py +0 -0
  17. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/__init__.py +0 -0
  18. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/ask.py +0 -0
  19. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/authoring_helpers.py +0 -0
  20. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/channels.py +0 -0
  21. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/chat.py +0 -0
  22. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/checkin.py +0 -0
  23. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/config.py +0 -0
  24. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/conversation.py +0 -0
  25. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/form.py +0 -0
  26. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/hook.py +0 -0
  27. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/identity.py +0 -0
  28. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/interactive.py +0 -0
  29. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/interactive_chat.py +0 -0
  30. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/kudos.py +0 -0
  31. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/public_api_helpers.py +0 -0
  32. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/query_options.py +0 -0
  33. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/team.py +0 -0
  34. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/uninstall.py +0 -0
  35. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/update.py +0 -0
  36. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/upgrade.py +0 -0
  37. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/user.py +0 -0
  38. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/user_scoped_actions.py +0 -0
  39. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/version.py +0 -0
  40. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/commands/workflow.py +0 -0
  41. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/install_method.py +0 -0
  42. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/ledger.py +0 -0
  43. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/tui/__init__.py +0 -0
  44. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/tui/app.py +0 -0
  45. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/tui/commands.py +0 -0
  46. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/tui/conversation.py +0 -0
  47. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli/tui/intents.py +0 -0
  48. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli.egg-info/dependency_links.txt +0 -0
  49. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli.egg-info/entry_points.txt +0 -0
  50. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli.egg-info/requires.txt +0 -0
  51. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/dailybot_cli.egg-info/top_level.txt +0 -0
  52. {dailybot_cli-3.6.0 → dailybot_cli-3.7.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dailybot-cli
3
- Version: 3.6.0
3
+ Version: 3.7.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
@@ -1031,6 +1031,20 @@ same delivery path as `chat send`).
1031
1031
  | `dailybot agent message claim-all` | Mark all pending messages as delivered |
1032
1032
  | `dailybot agent email send` | Send an email through an agent |
1033
1033
 
1034
+ ### Env commands (per-repo API key overrides)
1035
+
1036
+ `dailybot env` manages `.dailybot/env.json` — an **opt-in, gitignored** file that carries API keys + URLs for one or more environments (production, local dev, staging). One profile is *active* at a time; when set, it overrides `DAILYBOT_API_KEY`, `config.json`, and the login Bearer session **for the enclosing repo**. This is the recommended way to be "logged into different orgs in different repos" simultaneously. Full docs: [docs/CONFIGURATION.md § "Repo-level env override"](docs/CONFIGURATION.md#repo-level-env-override-dailybotenvjson).
1037
+
1038
+ | Command | Description |
1039
+ |---------|-------------|
1040
+ | `dailybot env add --name NAME --key KEY [--api-url URL] [--app-url URL]` | Add a profile (creates the file + auto-active on first add) |
1041
+ | `dailybot env use NAME` | Switch the active profile (empty string clears active) |
1042
+ | `dailybot env show` | Show the currently resolved profile (API key masked) |
1043
+ | `dailybot env list` | List every profile in the file (active marked) |
1044
+ | `dailybot env remove NAME [--yes]` | Remove a profile (clears active if it was the active one) |
1045
+ | `dailybot env off` | Disable the file without deleting it (preserves active) |
1046
+ | `dailybot env on` | Re-enable the file (restores the previously active profile) |
1047
+
1034
1048
  ### Hook commands (agent harness integration)
1035
1049
 
1036
1050
  Local-only lifecycle commands that agent harnesses (Claude Code, Cursor,
@@ -992,6 +992,20 @@ same delivery path as `chat send`).
992
992
  | `dailybot agent message claim-all` | Mark all pending messages as delivered |
993
993
  | `dailybot agent email send` | Send an email through an agent |
994
994
 
995
+ ### Env commands (per-repo API key overrides)
996
+
997
+ `dailybot env` manages `.dailybot/env.json` — an **opt-in, gitignored** file that carries API keys + URLs for one or more environments (production, local dev, staging). One profile is *active* at a time; when set, it overrides `DAILYBOT_API_KEY`, `config.json`, and the login Bearer session **for the enclosing repo**. This is the recommended way to be "logged into different orgs in different repos" simultaneously. Full docs: [docs/CONFIGURATION.md § "Repo-level env override"](docs/CONFIGURATION.md#repo-level-env-override-dailybotenvjson).
998
+
999
+ | Command | Description |
1000
+ |---------|-------------|
1001
+ | `dailybot env add --name NAME --key KEY [--api-url URL] [--app-url URL]` | Add a profile (creates the file + auto-active on first add) |
1002
+ | `dailybot env use NAME` | Switch the active profile (empty string clears active) |
1003
+ | `dailybot env show` | Show the currently resolved profile (API key masked) |
1004
+ | `dailybot env list` | List every profile in the file (active marked) |
1005
+ | `dailybot env remove NAME [--yes]` | Remove a profile (clears active if it was the active one) |
1006
+ | `dailybot env off` | Disable the file without deleting it (preserves active) |
1007
+ | `dailybot env on` | Re-enable the file (restores the previously active profile) |
1008
+
995
1009
  ### Hook commands (agent harness integration)
996
1010
 
997
1011
  Local-only lifecycle commands that agent harnesses (Claude Code, Cursor,