meegle

meegle is a skill for Claude Code, Codex from larksuite/meegle-cli. It costs 126 tokens per session (8,078 once invoked), scanned A, original, MIT.

A guide and command-line interface for managing Feishu/Lark Meego project data, including work items, workflow steps, views, personal tasks, and schedules. Feishu/Lark is a collaboration platform, while Meego is its project-management system.

In plain words
What is it for?
Use it to search project spaces, create or update work items, complete workflow nodes, inspect views, list personal tasks, and analyze schedules or workloads.
Why use it?
It gives agents a defined way to find projects and inspect or update project records without guessing field names or workflow settings. It requires authorization and metadata checks before business operations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to search project spaces, create or update work items, complete…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/larksuite/meegle-cli/meegle
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add larksuite/meegle-cli --skill meegle
Clone the repo
git clone --depth 1 https://github.com/larksuite/meegle-cli

Made for: Claude Code, Codex.

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 meegle

README.md
[![agentmods](https://agentmods.dev/badge/skills/larksuite/meegle-cli/meegle.svg)](https://agentmods.dev/skills/larksuite/meegle-cli/meegle)
Your own site
<a href="https://agentmods.dev/skills/larksuite/meegle-cli/meegle"><img src="https://agentmods.dev/badge/skills/larksuite/meegle-cli/meegle.svg" alt="Measured on agentmods" height="20"></a>
Per session 126 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,078 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.00126 $0.08078
Opus 5 $0.00063 $0.04039
Sonnet 5 $0.00025 $0.01616
Haiku 4.5 $0.00013 $0.00808

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

Security

Grade A, and why

meegle 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 7d ago.

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/meegle/SKILL.md · 468 lines

How it starts

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

飞书项目 (Meego/Meegle) 操作指南

本技能通过 Meegle CLI来操作飞书项目数据。输出语言跟随用户输入语言,默认中文。

各命令的调用示例见 references/api-examples.md授权流程(所有业务命令前必须执行):见 references/auth-guard.md CLI 使用指南(命令结构、参数传递、命令发现):见 references/cli-guide.md


Project 空间域

project search

搜索空间信息,将空间名转换为 project_key 或验证空间是否存在;省略 --project-key 时返回当前用户最近访问过的空间列表(按访问时间由近及远)。

参数 类型 必填 说明
--project-key string 空间 projectKey、simpleName 或空间名称;留空查询当前用户可访问的空间
--page-num number 分页页码,每页 50 条,从 1 开始

WorkItem 工作项域

元数据查询命令(workitem meta-types / workitem meta-fields / workitem meta-roles / workitem meta-create-fields)的参数表见 references/workitem.md

workitem create

创建工作项实例。务必先用 workitem meta-fields 获取字段信息,workitem meta-roles 获取角色信息。模板 ID 是必填项。

参数 类型 必填 说明
--work-item-type string 工作项类型
--project-key string 空间标识
--fields array 字段值列表,每项含 field_key 和 field_value

workitem get

按 ID/名称查询工作项概况。不传 fields 时返回固定基础字段加上一组默认系统字段:group_type(拉群方式)、descriptioncurrent_status_operatorwatchers(value 为 null 时也会出现);其余字段需先通过 workitem meta-fields 拿到 key 再传入 fields。

参数 类型 必填 说明
--work-item-id string 工作项 ID(与 --name 二选一)
--name string 按名称查询工作项(与 --work-item-id 二选一)
--project-key string 空间 key
--fields array 要查询的 field_key 或 field_name;传 ["_all"] 时按逻辑字段分页返回全部字段;传 ["group_type"] 时只取拉群方式
--page-size number fields=["_all"] 时生效;每页字段数量,默认 100,最大 200。Meegle CLI 序列化约束--page-size N 会被序列化为字符串触发后端 need I64 type, but got: STRING;必须走 --params '{"page_size":N}' 以数字传出
--page-token string fields=["_all"] 时生效;翻页 token,首次不传,下一页传上一页响应的 next_page_token(token 形如字段 key,例如 "business");同上,须走 --params '{"page_token":"..."}'

Read the full file on GitHub · 468 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. 7d ago First seen · 468 lines · 126 tokens per session scan A 01355dee93b3

Subscribe to this mod's changes

meegle is a skill published in the GitHub repository larksuite/meegle-cli (221 stars, last pushed 11d ago), licensed MIT. It adds 126 tokens to every session and 8,078 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-30.

Related

Other skills, from other repositories

project-ops

Use when an operator wants to run a small or mid-sized project from a flat file instead of standing up Jira or Asana — dated milestones each with one named owner and a binary done-test, rule-driven RAG status, a RAID log, slippage detection, and a two-minute weekly status report. NOT sequencing the engineering work…

ericrisco/rsc-harness · 80 tokens

jjj

Use when working in Jujutsu repositories for problem tracking, solution management, and code review — implements Popperian epistemology (problems → solutions → critiques) directly in version control.

doug/jjj · 40 tokens

c-jira

Manage Jira issues using jira (jira-cli). List and filter issues, create new tickets, transition issue status, manage sprints, and add comments — all from the terminal without opening a browser.

daxaur/openpaw · 45 tokens

c-linear

Manage Linear issues and projects using the linear CLI. List and filter issues, create new issues, update status, start work on a branch, and create linked pull requests directly from the terminal.

daxaur/openpaw · 43 tokens

metagit-projects

Ongoing workspace and project management for OpenClaw and Hermes agents. Use when starting work, organizing repos, or before creating a new project folder so existing metagit projects are reused instead of duplicated.

metagit-ai/metagit-cli · 45 tokens

metagit-control-center

Use when running metagit as an MCP control center for multi-repo awareness, guarded sync, and operational knowledge across ongoing agent tasks.

metagit-ai/metagit-cli · 32 tokens