lark-workflow-standup-report
Original:🇨🇳 Chinese
Translated
Schedule & To-Do Summary: Orchestrate calendar +agenda and task +get-my-tasks to generate a summary of schedules and incomplete tasks for a specified date. Suitable for checking today's, tomorrow's or this week's arrangements.
400.4kinstalls
Sourcelarksuite/cli
Added on
NPX Install
npx skill4agent add larksuite/cli lark-workflow-standup-reportTags
Translated version includes tags in frontmatterSKILL.md Content (Chinese)
View Translation Comparison →Schedule & To-Do Summary Workflow
CRITICAL — MUST use the Read tool to read before starting, which contains authentication and permission handling
../lark-shared/SKILL.mdApplicable Scenarios
- "What's on my schedule today?" / "Today's schedule and to-dos"
- "What meetings do I have tomorrow?" / "Tomorrow's schedule and incomplete tasks"
- "Help me check what I need to do today" / "Morning briefing summary"
- "Work start summary" / "standup report"
- "What arrangements do I have left this week?"
Prerequisites
Only supports user identity. Ensure authorization is completed before execution:
bash
lark-cli auth login --domain calendar,taskWorkflow
{date} ─┬─► calendar +agenda [--start/--end] ──► Schedule List (Meetings/Events)
└─► task +get-my-tasks [--due-end] ──► Incomplete To-Do List
│
▼
AI Summary (Time Conversion + Conflict Detection + Sorting)──► SummaryStep 1: Get Schedules
bash
# Today (default, no additional parameters required)
lark-cli calendar +agenda
# Specify date range (must use ISO 8601 format, natural language like "tomorrow" is not supported)
lark-cli calendar +agenda --start "2026-03-26T00:00:00+08:00" --end "2026-03-26T23:59:59+08:00"Note:/--startonly supports ISO 8601 format (e.g.,--endor2026-01-01) and Unix timestamp, does not support natural language like2026-01-01T15:04:05+08:00,"tomorrow", etc. The AI needs to calculate the target date automatically based on the current date."next monday"
Output includes: event_id, summary, start_time (including timestamp + timezone), end_time, free_busy_status, self_rsvp_status.
Step 2: Get Incomplete To-Dos
bash
# Default: Returns incomplete tasks assigned to the current user (max 20 items)
lark-cli task +get-my-tasks
# Only view tasks due before the specified date (recommended for summary scenarios to reduce data volume)
lark-cli task +get-my-tasks --due-end "2026-03-27T23:59:59+08:00"
# Get all tasks (when more than 20 items)
lark-cli task +get-my-tasks --page-allNote: Without filtering conditions, a large number of historical to-dos may be returned (tested 30+ items, 100KB+), which may easily exceed context limits. Recommendations for summary scenarios:
- Use
to filter tasks due before the target date--due-end- If tasks without due dates are also needed, no filtering is required, but when the AI summarizes, only those created within the last 30 days will be displayed, and the rest will be collapsed into "Other N historical to-dos"
Step 3: AI Summary
Integrate the results of Step 1 and Step 2, and output according to the following structure:
## {Date} Summary (YYYY-MM-DD, WeekX)
### Schedule Arrangements
| Time | Event | Organizer | Status |
|------|------|--------|------|
| 09:00-10:00 | Product Requirements Review | Zhang San | Accepted |
| 14:00-15:00 | Technical Solution Discussion | Li Si | Pending Confirmation |
### To-Do Items
- [ ] {task_summary} (Due: {due_date})
- [ ] {task_summary}
### Summary
- Total {n} meetings, {m} to-dos
- Conflict Reminder: {List overlapping schedules}
- Free Time Slots: {free_slots} (Calculated based on schedules)Data Processing Rules:
- Time Conversion: The API returns Unix timestamp, which needs to be converted to format according to the
HH:mmfield (usuallytimezone)Asia/Shanghai - RSVP Status Mapping:
API Value Display Text acceptAccepted declineDeclined needs_actionPending Confirmation tentativeTentative - Schedule Sorting: Sort in ascending order of start time
- Conflict Detection: After sorting by time, check if adjacent schedules overlap (previous end_time > next start_time). If yes, list the conflict groups in the summary
- Declined Schedules: Mark as "Declined" but not included in busy time slots and conflict detection
- To-Do Sorting: Sort in ascending order of due date. Expired tasks are marked as "Expired", and tasks without due dates are placed last
Permission Table
| Command | Required Scope |
|---|---|
| |
| |
References
- lark-shared — Authentication, Permissions (Must Read)
- lark-calendar — Detailed usage of
+agenda - lark-task — Detailed usage of
+get-my-tasks