check_capability_gap
:
Instructions
Analyze a task the agent cannot complete and suggest skills that would fill the gap. Returns a JSON array of 5 recommended skills ranked by relevance to the task, each with slug, name, description, quality_score, and install_command. Use this when you encounter a task that requires capabilities you do not have (e.g., database access, browser automation, file conversion). Do not use this for general browsing (use list_categories instead) or when you already know what skill you need (use search_skills instead).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | A specific description of the task you cannot complete. Examples: 'query a PostgreSQL database to check user records', 'take a screenshot of a webpage and analyze the layout', 'deploy a Docker container to AWS ECS'. Be specific about the action and target. | |
| current_tools | Yes | List of tool names or skill slugs the agent currently has access to. This helps avoid recommending tools you already have. Pass an empty array [] if no tools are installed. Examples: ['supabase/mcp', 'microsoft/playwright-mcp']. | |
| agent_type | Yes | The agent platform you are running on. Ensures recommended skills are compatible with your platform. |