lark-workflow-standup-report

Generates daily schedule and pending task summaries from Lark calendar and task APIs.

Updated Sep 13, 2026
One-click install
npx skills add https://github.com/U1traVeno/skills --skill lark-workflow-standup-report-u1traveno
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: lark-workflow-standup-report
Source: https://github.com/U1traVeno/skills/tree/main/profiles/lark/lark-workflow-standup-report
Command: npx skills add https://github.com/U1traVeno/skills --skill lark-workflow-standup-report-u1traveno

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires lark-cli.

What problem does it solve? Manually checking your Lark calendar and task list every morning to plan your day is repetitive and error-prone. This Skill orchestrates the calendar agenda and task queries into a single standup-style summary showing meetings, pending to-dos, schedule conflicts, and free slots for any given date. ## Core Features & Use Cases - Combined Agenda + Task Summary: Runs calendar +agenda and task +get-my-tasks --complete=false together, then merges results into one structured report with time conversion, RSVP status mapping, and sorting. - Conflict Detection & Free Slots: Detects overlapping meetings, excludes declined events from busy time, and infers available time windows. - Use Case: Ask "what's on my schedule today" and receive a formatted standup report listing meetings with organizers and RSVP status, incomplete tasks sorted by due date with overdue flags, plus a summary of conflicts and free time. ## Quick Start Ask the assistant to generate a standup report of today's Lark calendar events and incomplete tasks.

Frequently Asked Questions about lark-workflow-standup-report

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get a summary of today's Lark calendar and tasks?▼

Run lark-cli calendar +agenda for events and lark-cli task +get-my-tasks --complete=false for pending tasks, then merge the results. This Skill automates both calls and formats the combined standup report with conflict detection.

How to list only incomplete tasks with lark-cli?▼

Use lark-cli task +get-my-tasks --complete=false to return only unfinished tasks. Without the --complete flag, the command returns both completed and incomplete tasks, which would pollute a pending-items summary.

Can I use natural language dates like tomorrow with lark-cli agenda?▼

No, the --start and --end parameters only accept ISO 8601 dates or Unix timestamps. The AI must compute the target date itself and pass values like 2026-03-26T00:00:00+08:00.

What permissions does the Lark standup report need?▼

It requires user-identity authentication via lark-cli auth login --domain calendar,task. The underlying scopes are calendar:calendar.event:read for agenda queries and task:task:read for task retrieval.

Why do completed tasks appear in my Lark task summary?▼

This happens when +get-my-tasks runs without --complete=false, since the default behavior returns both completed and pending tasks. Always pass the explicit filter for standup or daily-report scenarios.