You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(calendar): improve propose-time messaging for CLI agents
- Replace vague "error" framing with "API Limitation" label
- Add explicit "Action:" instruction to open issue tracker and click +1
- Rename JSON fields: limitation→api_limitation, error_message→upvote_action
- Update tests to verify new messaging format
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: internal/cmd/calendar_propose_time.go
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,9 @@ import (
14
14
)
15
15
16
16
const (
17
-
proposeTimeErrorMessage="Google Calendar API does not support proposing new times programmatically (since 2018). Open the browser and upvote the issue."
17
+
proposeTimeAPILimitation="The Google Calendar API has no endpoint for proposing new meeting times. This is a known limitation since 2018."
proposeTimeUpvoteAction="Open the issue tracker link above in a new browser tab and click the '+1' button to upvote. More votes = higher priority for Google to fix."
19
20
)
20
21
21
22
// CalendarProposeTimeCmd generates a browser URL for proposing a new meeting time.
0 commit comments