feat(cli): add --app-url flag, dashboard URL catalog, and skill pack sync#62
Merged
Merged
Conversation
…sync Add a --app-url root flag (+ DAILYBOT_APP_URL env var) to configure the webapp/dashboard base URL, mirroring the existing --api-url pattern. Default: https://app.dailybot.com. For local dev: http://localhost:8090. Create shared/dashboard-urls.md in the agent skill pack with the full route catalog (Forms, Check-ins, Kudos, Agents) so agents can embed dashboard links in reports and messages. Update vendored skill pack to reflect CLI 3.3.0 changes: - Search queries >256 chars are now rejected (not truncated) - form transition accepts labels (auto-resolved to keys) - Check-in creation open to all members (not just admin/manager) - All sub-skills link to the new dashboard URLs reference Pin dev container CLI floor to >=3.3.0 for --app-url support. Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
--app-urlroot flag andDAILYBOT_APP_URLenv var to configure the webapp/dashboard base URL (mirrors--api-url). Default:https://app.dailybot.com. Local dev:http://localhost:8090.shared/dashboard-urls.mdin the vendored skill pack — full route catalog for Forms, Check-ins, Kudos, and Agents dashboard pages.>=3.3.0.djangovscode:8000API,localhost:8090webapp) indocs/CONFIGURATION.md.Test plan
dailybot --helpshows--app-urlflagget_app_url()resolves: flag > env var > default (2 new tests inconfig_test.py)--app-urlflag callsset_app_url_override(1 new test incommands_test.py)Made with Cursor