lark-workflow-standup-report

Generates daily standup summaries by combining Lark calendar agenda and pending tasks.

Updated Jun 29, 2026
One-click install
npx skills add https://github.com/trungpr1990-coder/AMI-MAKEUP --skill lark-workflow-standup-report-trungpr1990-coder
Or copy as Structured Prompt for Agentâ–¼
Please help me install this Agent Skill.
Skill: lark-workflow-standup-report
Source: https://github.com/trungpr1990-coder/AMI-MAKEUP/tree/main/.agents/skills/lark-workflow-standup-report
Command: npx skills add https://github.com/trungpr1990-coder/AMI-MAKEUP --skill lark-workflow-standup-report-trungpr1990-coder

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires lark-cli.

What problem does it solve? Manually checking your Lark calendar and task list every morning to piece together a daily plan 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 and Task Retrieval: Runs lark-cli calendar +agenda and lark-cli task +get-my-tasks --complete=false together to gather events and unfinished tasks for a target date. - Structured Summary Output: Produces a formatted digest with a meeting table (time, event, organizer, RSVP status), a pending task list sorted by due date, conflict detection between overlapping events, and computed free time slots. - Use Case: Ask "what is on my schedule today" and receive a standup report listing your 09:00 product review, 14:00 tech discussion, three overdue tasks, and a warning that two meetings overlap. ## Quick Start Ask the assistant to generate a standup summary of today's Lark calendar events and unfinished 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 daily summary of my Lark calendar and tasks?â–¼

Run lark-cli calendar +agenda for the target date and lark-cli task +get-my-tasks --complete=false for pending tasks, then merge the results into a summary table. This Skill automates that orchestration and adds conflict detection and free-slot calculation.

How to list only unfinished tasks with lark-cli?â–¼

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

Does lark-cli calendar agenda support natural language dates like tomorrow?â–¼

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

What permissions are required for Lark standup report generation?â–¼

You need user-identity authentication via lark-cli auth login with calendar and task domains. The required 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 is called without the --complete=false filter, causing it to return both completed and pending tasks. Always pass --complete=false explicitly for pending-only summaries.