feishu-calendar

feishu-calendar is a skill for Claude Code from ZW471/claude-feishu-calendar. It costs 119 tokens per session (979 once invoked), scanned A, original, MIT.

A skill for managing Feishu, also called Lark, calendar events through its calendar API. Feishu is a workplace collaboration platform with calendars, meetings, and room bookings.

In plain words
What is it for?
Use it to list schedules, create, update, or delete events, invite people, and book rooms on Feishu.
Why use it?
It provides a defined way to inspect and change calendar events, including meetings, invitations, and rooms.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the feishu-calendar plugin — 1 skill shipped together

Good fit Use it to list schedules, create, update, or delete events, invite people, and book rooms on Feishu.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ZW471/claude-feishu-calendar
Claude Code
/plugin install feishu-calendar

Made for: Claude Code.

Or install feishu-calendar, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for feishu-calendar

README.md
[![agentmods](https://agentmods.dev/badge/skills/zw471/claude-feishu-calendar/feishu-calendar/github.svg)](https://agentmods.dev/skills/zw471/claude-feishu-calendar/feishu-calendar)
Your own site
<a href="https://agentmods.dev/skills/zw471/claude-feishu-calendar/feishu-calendar"><img src="https://agentmods.dev/badge/skills/zw471/claude-feishu-calendar/feishu-calendar/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for feishu-calendar

Your own site · 80×15
<a href="https://agentmods.dev/skills/zw471/claude-feishu-calendar/feishu-calendar"><img src="https://agentmods.dev/badge/skills/zw471/claude-feishu-calendar/feishu-calendar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 979 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00119 $0.00979
Opus 5 $0.00060 $0.00490
Sonnet 5 $0.00024 $0.00196
Haiku 4.5 $0.00012 $0.00098

Measured 12d ago against content hash eff0ad9906cf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

feishu-calendar scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 10 executable files (scripts/run.py, scripts/tools/__init__.py, scripts/tools/api_client.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/feishu-calendar/SKILL.md · 114 lines

How it starts

The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Feishu Calendar Skill

Manage Feishu (Lark) calendar events via the Open Platform Calendar API v4.

Execution Modes

This skill works in two environments. Detect which one you are in and follow the matching workflow.

Claude Code (has internet access)

Run the Python scripts directly via Bash. No need to ask the user to run anything.

# Write config.json, then execute run.py directly
cd ${CLAUDE_PLUGIN_ROOT}/skills/feishu-calendar/scripts && python run.py

You can also run individual tools directly:

cd ${CLAUDE_PLUGIN_ROOT}/skills/feishu-calendar/scripts && python -c "
import sys; sys.path.insert(0, 'tools')
from list_events import run
run({'calendar_id': '[email protected]', 'days': 7})
"

Or use run.py with a config.json you write — same result, just write config.json then python run.py.

Cowork (sandboxed, no internet)

Cowork cannot call the Feishu API. Use the config.json → run.py → user workflow:

  1. Write config.json in the scripts/ directory.
  2. Ask the user to run: python run.py from the scripts/ directory.
  3. Read the output the user pastes back, or read output.json.

Setup

On first use, check that .env exists in scripts/. If not, ask the user for their Feishu App ID and App Secret, then create scripts/.env:

FEISHU_APP_ID=<their_app_id>
FEISHU_APP_SECRET=<their_app_secret>
FEISHU_BASE_URL=https://open.feishu.cn

See INSTALL.md at the plugin root for detailed setup instructions.

Quick Reference

What to do Tool name Key params
List calendars list_calendars (none)
List events in a range list_events calendar_id, start, end, days
Get event details get_event calendar_id, event_id
Create events create_events calendar_id, events[]
Update an event update_event calendar_id, event_id, + fields
Delete events delete_events calendar_id, event_ids[]
Add/list attendees manage_attendees calendar_id, event_id, action, attendees[]

Read the full file on GitHub · 114 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 114 lines · 119 tokens per session scan A eff0ad9906cf

Subscribe to this mod's changes

feishu-calendar is a skill published in the GitHub repository ZW471/claude-feishu-calendar (6 stars, last pushed 5mo ago), licensed MIT. It adds 119 tokens to every session and 979 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

projects

List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.

me2resh/apexyard · 24 tokens

magpie-security-issue-import-from-md

Open one or more tracking issues from a markdown file containing a batch of security findings. Each finding becomes one tracker landing in the Needs triage board column. The file itself is the full report — there is no inbound reporter to reply to and no PR to inspect.

apache/magpie · 73 tokens