What problem does it solve? When existing lark-* skills or lark-cli registered commands cannot fulfill a request, this Skill locates the underlying native Feishu/Lark OpenAPI endpoint in the official documentation and calls it directly, eliminating guesswork about API paths and parameters. ## Core Features & Use Cases - Layered Documentation Mining: Traverses the official llms.txt index, module documents, and individual API docs to extract complete API specifications including methods, paths, parameters, permissions, and error codes. - Direct API Invocation: Calls discovered endpoints via lark-cli api with GET, POST, PUT, PATCH, and DELETE methods, with structured output covering parameters, scopes, and usage notes. - Safety Guardrails: Requires user confirmation before write or delete operations and forbids guessing API paths not confirmed in documentation. - Use Case: A user needs to add members to a Lark group chat, but the CLI has no wrapped command. The Skill mines the docs to find POST /open-apis/im/v1/chats/:chat_id/members and executes it with the correct 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.