lark-attendance

Query personal attendance check-in records via the Lark attendance API.

1.3k|142|Updated Jun 1, 2026
One-click install
npx skills add https://github.com/MiniMax-AI/minimax-code --skill lark-attendance-minimax-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lark-attendance
Source: https://github.com/MiniMax-AI/minimax-code/tree/main/packages/local-runtime/assets/skills/lark-tools/cli-skills/lark-attendance
Command: npx skills add https://github.com/MiniMax-AI/minimax-code --skill lark-attendance-minimax-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It lets you retrieve your own Lark (Feishu) attendance punch-in and punch-out records directly from the terminal, without manually navigating the Lark app or web console. ## Core Features & Use Cases - Attendance Record Query: Calls the Lark attendance user_tasks.query API through lark-cli to fetch your clock-in records. - Automatic Parameter Filling: Automatically injects required fields such as employee_type set to employee_no and an empty user_ids array, so you never have to supply them manually. - Schema-First Invocation: Inspects API parameter structures with lark-cli schema before calling, reducing malformed request errors. - Use Case: Ask for your check-in times this week, and the Skill queries the Lark attendance API and returns your punch records with the correct scope attendance:task:readonly. ## Quick Start Ask the assistant to show my Lark attendance check-in records for this week using lark-cli.

Frequently Asked Questions about lark-attendance

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

FAQPage Schema
How do I query my Lark attendance check-in records from the terminal?

Use lark-cli with the attendance user_tasks query method after checking the parameter structure via lark-cli schema. The Skill automatically fills employee_type as employee_no and user_ids as an empty array, so you only specify the time range.

What permissions are needed to query Lark attendance records?

The user_tasks.query method requires the attendance:task:readonly scope granted to your Lark app. Without this scope, the API call will fail with a permission error.

Can I query attendance records for other employees with lark-cli?

This Skill is designed to query your own attendance records and keeps user_ids as an empty array by default. Querying other employees would require modifying parameters and additional administrative scopes not covered here.

Why does my Lark attendance API call fail with parameter errors?

Failures usually come from guessing the request body format instead of checking it first. Run lark-cli schema attendance.user_tasks.query before calling the API to see the exact --data and --params structure.

What tools are required to use the Lark attendance query skill?

You need the lark-cli binary installed and authenticated. The Skill also depends on the shared lark-shared instructions for authentication and permission handling, which must be read before making API calls.