What problem does it solve? When existing lark-* skills or lark-cli registered commands cannot fulfill a Feishu/Lark automation request, this Skill locates the underlying native OpenAPI endpoint in the official documentation and calls it directly, eliminating the need to manually search API docs. ## 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 through lark-cli api with GET, POST, PUT, PATCH, and DELETE methods, including path parameters, query strings, and request bodies. - Structured Output: Presents each discovered API with its method, path, required parameters, permission scopes, a ready-to-run command example, and rate-limit notes. - Use Case: A user asks to add members to a Feishu group chat, but lark-cli has no registered command for it. The Skill mines the docs, finds POST /open-apis/im/v1/chats/:chat_id/members, and invokes it with the correct open_id list. ## Quick Start Ask the agent to find and call the native Feishu OpenAPI endpoint for a task that the existing lark-cli commands do not cover, such as setting a group chat announcement.