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, 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 pages to extract complete API specifications including methods, paths, parameters, permissions, and error codes. - Raw API Invocation: Executes discovered endpoints through lark-cli api with GET, POST, PUT, PATCH, and DELETE methods. - Safety Guardrails: Requires user confirmation before write or delete operations and forbids guessing undocumented API paths. - Use Case: A user wants to add members to a Lark group chat but the CLI has no registered command. The Skill mines the docs to find POST /open-apis/im/v1/chats/:chat_id/members and invokes it with the correct payload. ## Quick Start Find the native Feishu OpenAPI endpoint for adding members to a group chat and call it through lark-cli.