{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lark-calendar",
    "name": "Lark Calendar & Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/boyangwang/lark-calendar",
    "canonicalUrl": "https://clawhub.ai/boyangwang/lark-calendar",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/lark-calendar",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lark-calendar",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "lib/calendar.mjs",
      "lib/employees.mjs",
      "lib/lark-api.mjs",
      "lib/task.mjs",
      "package-lock.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/lark-calendar"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/lark-calendar",
    "agentPageUrl": "https://openagent3.xyz/skills/lark-calendar/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lark-calendar/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lark-calendar/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Lark Calendar & Task Skill",
        "body": "Create, update, and delete calendar events and tasks in Lark (Feishu)."
      },
      {
        "title": "Overview",
        "body": "This skill provides full CRUD operations for:\n\nCalendar Events — meetings, appointments, schedules\nTasks (Todo) — action items with deadlines"
      },
      {
        "title": "Configuration",
        "body": "Required Environment Variables (in .secrets.env):\n\nFEISHU_APP_ID=cli_a9f52a4ed7b8ded4\nFEISHU_APP_SECRET=<your-app-secret>\n\nDefault Calendar: feishu.cn_caF80RJxgGcbBGsQx64bCh@group.calendar.feishu.cn (Claw calendar)\n\nDefault Timezone: Asia/Singapore"
      },
      {
        "title": "Create Calendar Event",
        "body": "node skills/lark-calendar/scripts/create-event.mjs \\\n  --title \"Meeting with Team\" \\\n  --description \"Discuss Q2 roadmap\" \\\n  --start \"2026-02-03 14:00:00\" \\\n  --end \"2026-02-03 15:00:00\" \\\n  --attendees \"Boyang,RK\" \\\n  --location \"Meeting Room A\"\n\nParameters:\n\nParamRequiredDescription--title✅Event title--description❌Event description--start✅Start time (YYYY-MM-DD HH:MM:SS)--end✅End time (YYYY-MM-DD HH:MM:SS)--attendees❌Comma-separated names (auto-resolved to user_ids)--attendee-ids❌Comma-separated user_ids directly--location❌Event location--timezone❌Timezone (default: Asia/Singapore)--calendar❌Calendar ID (uses default if omitted)"
      },
      {
        "title": "Update Calendar Event",
        "body": "node skills/lark-calendar/scripts/update-event.mjs \\\n  --event-id \"f9900f6b-b472-4b17-a818-7b5584abdc37_0\" \\\n  --title \"Updated Title\" \\\n  --start \"2026-02-03 15:00:00\" \\\n  --end \"2026-02-03 16:00:00\""
      },
      {
        "title": "Delete Calendar Event",
        "body": "node skills/lark-calendar/scripts/delete-event.mjs \\\n  --event-id \"f9900f6b-b472-4b17-a818-7b5584abdc37_0\""
      },
      {
        "title": "List Calendar Events",
        "body": "# List events for next 7 days\nnode skills/lark-calendar/scripts/list-events.mjs\n\n# List events in date range\nnode skills/lark-calendar/scripts/list-events.mjs \\\n  --start \"2026-02-01\" \\\n  --end \"2026-02-28\""
      },
      {
        "title": "Create Task",
        "body": "node skills/lark-calendar/scripts/create-task.mjs \\\n  --title \"Review PR #123\" \\\n  --description \"Code review for authentication module\" \\\n  --due \"2026-02-05 18:00:00\" \\\n  --assignees \"Boyang,jc\"\n\nParameters:\n\nParamRequiredDescription--title✅Task title--description❌Task description--due✅Due date (YYYY-MM-DD HH:MM:SS)--assignees❌Comma-separated names (auto-resolved)--assignee-ids❌Comma-separated user_ids directly--timezone❌Timezone (default: Asia/Singapore)"
      },
      {
        "title": "Update Task",
        "body": "node skills/lark-calendar/scripts/update-task.mjs \\\n  --task-id \"35fc5310-a1b1-49c7-be75-be631d3079ee\" \\\n  --title \"Updated Task\" \\\n  --due \"2026-02-06 18:00:00\""
      },
      {
        "title": "Delete Task",
        "body": "node skills/lark-calendar/scripts/delete-task.mjs \\\n  --task-id \"35fc5310-a1b1-49c7-be75-be631d3079ee\""
      },
      {
        "title": "Manage Event Attendees",
        "body": "# Add attendees\nnode skills/lark-calendar/scripts/manage-attendees.mjs \\\n  --event-id \"xxx\" --add \"RK,jc\"\n\n# Remove attendees  \nnode skills/lark-calendar/scripts/manage-attendees.mjs \\\n  --event-id \"xxx\" --remove \"jc\""
      },
      {
        "title": "Manage Task Members",
        "body": "# Add members\nnode skills/lark-calendar/scripts/manage-task-members.mjs \\\n  --task-id \"xxx\" --add \"RK,jc\"\n\n# Remove members\nnode skills/lark-calendar/scripts/manage-task-members.mjs \\\n  --task-id \"xxx\" --remove \"jc\""
      },
      {
        "title": "Employee Directory",
        "body": "Names are auto-resolved to Lark user_ids. Supported names:\n\nuser_idNamesRoledgg163e1Boyang, by, 博洋Bossgb71g28bRKLeadership, R&D53gc5724DingLeadership, Operations217ec2c2CharlineHRf2bfd283曾晓玲, xiaolingHRf26fe45dHHResearch45858f91zan, Eva-7f79b6deIssacOperations1fb2547g王铁柱Operationse5997acd尼克, NicoOperations438c3c1fIvanOperations17g8bab2DodoR&D, Product73b45ec5启超, QiChaoShiR&D, Designd1978a39chenglinR&D, Frontendef6fc4a7冠林, GreenR&D, Frontendb47fa8f2sixian, sx, Sixian-YuR&D, Frontend934fbf15jc, sagiri, 俊晨R&D, Backend8c4aad87大明, damingR&D, Backendab87g5e1Emily YobalIntern55fa337fjingda, 景达Intern333c7cf1刘纪源, 纪源, AidenIntern"
      },
      {
        "title": "Business Rules",
        "body": "Boyang is always added as attendee to every calendar event (automatic)\nTimezone handling: Uses IANA identifiers (e.g., Asia/Singapore, Asia/Shanghai)\nTime format: Always YYYY-MM-DD HH:MM:SS\nuser_id vs open_id: This skill uses user_id format (e.g., dgg163e1), NOT open_id (e.g., ou_xxx)"
      },
      {
        "title": "Programmatic Usage",
        "body": "import { createEvent, updateEvent, deleteEvent } from './skills/lark-calendar/lib/calendar.mjs';\nimport { createTask, updateTask, deleteTask } from './skills/lark-calendar/lib/task.mjs';\nimport { resolveNames } from './skills/lark-calendar/lib/employees.mjs';\n\n// Create event\nconst result = await createEvent({\n  title: 'Team Sync',\n  description: 'Weekly standup',\n  startTime: '2026-02-03 10:00:00',\n  endTime: '2026-02-03 10:30:00',\n  attendeeIds: ['dgg163e1', 'gb71g28b'],\n  location: 'Zoom',\n  timezone: 'Asia/Singapore'\n});\n\n// Create task\nconst task = await createTask({\n  title: 'Review document',\n  description: 'Q2 planning doc',\n  dueTime: '2026-02-05 18:00:00',\n  assigneeIds: ['dgg163e1'],\n  timezone: 'Asia/Singapore'\n});"
      },
      {
        "title": "Lark API Reference",
        "body": "Calendar Events API\nCalendar Attendees API\nTasks API"
      },
      {
        "title": "Permissions Required",
        "body": "Ensure your Lark app has these scopes:\n\ncalendar:calendar — Read/write calendar ✅ (already enabled)\ncalendar:calendar:readonly — Read calendar ✅ (already enabled)\ntask:task:write — Write tasks ⚠️ (needs to be added for task creation)\ntask:task:read — Read tasks\ncontact:user.employee_id:readonly — Read user info ✅ (already enabled)\n\nTo add permissions:\n\nGo to Lark Open Platform\nAdd scopes: task:task:write, contact:contact:readonly (for dynamic employee lookup)\nRe-publish the app version\n\nNote: Without contact:contact:readonly, the skill uses a static fallback employee list. Update lib/employees.mjs when team changes."
      }
    ],
    "body": "Lark Calendar & Task Skill\n\nCreate, update, and delete calendar events and tasks in Lark (Feishu).\n\nOverview\n\nThis skill provides full CRUD operations for:\n\nCalendar Events — meetings, appointments, schedules\nTasks (Todo) — action items with deadlines\nConfiguration\n\nRequired Environment Variables (in .secrets.env):\n\nFEISHU_APP_ID=cli_a9f52a4ed7b8ded4\nFEISHU_APP_SECRET=<your-app-secret>\n\n\nDefault Calendar: feishu.cn_caF80RJxgGcbBGsQx64bCh@group.calendar.feishu.cn (Claw calendar)\n\nDefault Timezone: Asia/Singapore\n\nQuick Reference\nCreate Calendar Event\nnode skills/lark-calendar/scripts/create-event.mjs \\\n  --title \"Meeting with Team\" \\\n  --description \"Discuss Q2 roadmap\" \\\n  --start \"2026-02-03 14:00:00\" \\\n  --end \"2026-02-03 15:00:00\" \\\n  --attendees \"Boyang,RK\" \\\n  --location \"Meeting Room A\"\n\n\nParameters:\n\nParam\tRequired\tDescription\n--title\t✅\tEvent title\n--description\t❌\tEvent description\n--start\t✅\tStart time (YYYY-MM-DD HH:MM:SS)\n--end\t✅\tEnd time (YYYY-MM-DD HH:MM:SS)\n--attendees\t❌\tComma-separated names (auto-resolved to user_ids)\n--attendee-ids\t❌\tComma-separated user_ids directly\n--location\t❌\tEvent location\n--timezone\t❌\tTimezone (default: Asia/Singapore)\n--calendar\t❌\tCalendar ID (uses default if omitted)\nUpdate Calendar Event\nnode skills/lark-calendar/scripts/update-event.mjs \\\n  --event-id \"f9900f6b-b472-4b17-a818-7b5584abdc37_0\" \\\n  --title \"Updated Title\" \\\n  --start \"2026-02-03 15:00:00\" \\\n  --end \"2026-02-03 16:00:00\"\n\nDelete Calendar Event\nnode skills/lark-calendar/scripts/delete-event.mjs \\\n  --event-id \"f9900f6b-b472-4b17-a818-7b5584abdc37_0\"\n\nList Calendar Events\n# List events for next 7 days\nnode skills/lark-calendar/scripts/list-events.mjs\n\n# List events in date range\nnode skills/lark-calendar/scripts/list-events.mjs \\\n  --start \"2026-02-01\" \\\n  --end \"2026-02-28\"\n\nCreate Task\nnode skills/lark-calendar/scripts/create-task.mjs \\\n  --title \"Review PR #123\" \\\n  --description \"Code review for authentication module\" \\\n  --due \"2026-02-05 18:00:00\" \\\n  --assignees \"Boyang,jc\"\n\n\nParameters:\n\nParam\tRequired\tDescription\n--title\t✅\tTask title\n--description\t❌\tTask description\n--due\t✅\tDue date (YYYY-MM-DD HH:MM:SS)\n--assignees\t❌\tComma-separated names (auto-resolved)\n--assignee-ids\t❌\tComma-separated user_ids directly\n--timezone\t❌\tTimezone (default: Asia/Singapore)\nUpdate Task\nnode skills/lark-calendar/scripts/update-task.mjs \\\n  --task-id \"35fc5310-a1b1-49c7-be75-be631d3079ee\" \\\n  --title \"Updated Task\" \\\n  --due \"2026-02-06 18:00:00\"\n\nDelete Task\nnode skills/lark-calendar/scripts/delete-task.mjs \\\n  --task-id \"35fc5310-a1b1-49c7-be75-be631d3079ee\"\n\nManage Event Attendees\n# Add attendees\nnode skills/lark-calendar/scripts/manage-attendees.mjs \\\n  --event-id \"xxx\" --add \"RK,jc\"\n\n# Remove attendees  \nnode skills/lark-calendar/scripts/manage-attendees.mjs \\\n  --event-id \"xxx\" --remove \"jc\"\n\nManage Task Members\n# Add members\nnode skills/lark-calendar/scripts/manage-task-members.mjs \\\n  --task-id \"xxx\" --add \"RK,jc\"\n\n# Remove members\nnode skills/lark-calendar/scripts/manage-task-members.mjs \\\n  --task-id \"xxx\" --remove \"jc\"\n\nEmployee Directory\n\nNames are auto-resolved to Lark user_ids. Supported names:\n\nuser_id\tNames\tRole\ndgg163e1\tBoyang, by, 博洋\tBoss\ngb71g28b\tRK\tLeadership, R&D\n53gc5724\tDing\tLeadership, Operations\n217ec2c2\tCharline\tHR\nf2bfd283\t曾晓玲, xiaoling\tHR\nf26fe45d\tHH\tResearch\n45858f91\tzan, Eva\t-\n7f79b6de\tIssac\tOperations\n1fb2547g\t王铁柱\tOperations\ne5997acd\t尼克, Nico\tOperations\n438c3c1f\tIvan\tOperations\n17g8bab2\tDodo\tR&D, Product\n73b45ec5\t启超, QiChaoShi\tR&D, Design\nd1978a39\tchenglin\tR&D, Frontend\nef6fc4a7\t冠林, Green\tR&D, Frontend\nb47fa8f2\tsixian, sx, Sixian-Yu\tR&D, Frontend\n934fbf15\tjc, sagiri, 俊晨\tR&D, Backend\n8c4aad87\t大明, daming\tR&D, Backend\nab87g5e1\tEmily Yobal\tIntern\n55fa337f\tjingda, 景达\tIntern\n333c7cf1\t刘纪源, 纪源, Aiden\tIntern\nBusiness Rules\nBoyang is always added as attendee to every calendar event (automatic)\nTimezone handling: Uses IANA identifiers (e.g., Asia/Singapore, Asia/Shanghai)\nTime format: Always YYYY-MM-DD HH:MM:SS\nuser_id vs open_id: This skill uses user_id format (e.g., dgg163e1), NOT open_id (e.g., ou_xxx)\nProgrammatic Usage\nimport { createEvent, updateEvent, deleteEvent } from './skills/lark-calendar/lib/calendar.mjs';\nimport { createTask, updateTask, deleteTask } from './skills/lark-calendar/lib/task.mjs';\nimport { resolveNames } from './skills/lark-calendar/lib/employees.mjs';\n\n// Create event\nconst result = await createEvent({\n  title: 'Team Sync',\n  description: 'Weekly standup',\n  startTime: '2026-02-03 10:00:00',\n  endTime: '2026-02-03 10:30:00',\n  attendeeIds: ['dgg163e1', 'gb71g28b'],\n  location: 'Zoom',\n  timezone: 'Asia/Singapore'\n});\n\n// Create task\nconst task = await createTask({\n  title: 'Review document',\n  description: 'Q2 planning doc',\n  dueTime: '2026-02-05 18:00:00',\n  assigneeIds: ['dgg163e1'],\n  timezone: 'Asia/Singapore'\n});\n\nLark API Reference\nCalendar Events API\nCalendar Attendees API\nTasks API\nPermissions Required\n\nEnsure your Lark app has these scopes:\n\ncalendar:calendar — Read/write calendar ✅ (already enabled)\ncalendar:calendar:readonly — Read calendar ✅ (already enabled)\ntask:task:write — Write tasks ⚠️ (needs to be added for task creation)\ntask:task:read — Read tasks\ncontact:user.employee_id:readonly — Read user info ✅ (already enabled)\n\nTo add permissions:\n\nGo to Lark Open Platform\nAdd scopes: task:task:write, contact:contact:readonly (for dynamic employee lookup)\nRe-publish the app version\n\nNote: Without contact:contact:readonly, the skill uses a static fallback employee list. Update lib/employees.mjs when team changes."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/boyangwang/lark-calendar",
    "publisherUrl": "https://clawhub.ai/boyangwang/lark-calendar",
    "owner": "boyangwang",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lark-calendar",
    "downloadUrl": "https://openagent3.xyz/downloads/lark-calendar",
    "agentUrl": "https://openagent3.xyz/skills/lark-calendar/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lark-calendar/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lark-calendar/agent.md"
  }
}