What problem does it solve? When existing lark-* skills or registered lark-cli commands cannot fulfill a request, this Skill locates the underlying native Feishu/Lark OpenAPI endpoint in the official documentation and calls it directly, so no platform capability is out of reach. ## Core Features & Use Cases - Layered Documentation Mining: Traverses the official llms.txt index, module documents, and individual API pages to find exact endpoint specifications without guessing. - Raw API Invocation: Executes discovered endpoints via lark-cli api with GET, POST, PUT, PATCH, and DELETE methods, including path parameters, query strings, and request bodies. - Structured Output: Reports each API's method, path, required parameters, permission scopes, and a ready-to-run command example. - Use Case: A user asks to add members to a Lark group chat, but no CLI command exists. The Skill mines the docs, finds POST /open-apis/im/v1/chats/:chat_id/members, and invokes it with the correct id_list payload. ## Quick Start Ask the assistant to find and call the native Feishu OpenAPI for adding members to a group chat since no existing lark-cli command covers it.