Loading...
Loading...
Create, read, and manage Feishu tasks with automatic user authorization. Use when you need to create tasks that your user can directly edit, read task lists, manage task details, or check calendar events. Supports automatic token refresh and persistence across sessions. All operations are performed with user identity, ensuring proper permissions.
npx skill4agent add euodiahey/feishu-skills feishu-tasksbash scripts/create_task.sh "Task Name" "Task Description"bash scripts/list_tasks.shbash scripts/get_task.sh <task_guid>bash scripts/update_task.sh <task_guid> "New Summary" "New Description"bash scripts/complete_task.sh <task_guid># 1. Create a task
TASK_ID=$(bash scripts/create_task.sh "Learn 10 IELTS phrases" "Master common phrases")
# 2. List all tasks to verify
bash scripts/list_tasks.sh
# 3. Complete the task when done
bash scripts/complete_task.sh "<task_guid>"~/.feishu-credentials.jsonoffline_access task:task:read task:task:writebash scripts/verify_setup.shrefresh_tokenuser_access_tokenoffline_access~/.feishu-credentials.json{
"app_id": "cli_...",
"app_secret": "...",
"user_access_token": "eyJ...",
"refresh_token": "eyJ...",
"scope": "offline_access task:task:read ..."
}user_access_tokenrefresh_tokenbash scripts/verify_setup.shbash scripts/list_tasks.shverify_setup.shcreate_task.sh