get_fixes
Provides remediation steps, polyfills, and alternatives for unsupported CSS/JS features to resolve browser compatibility issues in development projects.
Instructions
Get actionable remediation steps, polyfills, and alternatives for unsupported features
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| features | Yes | Features that need fixes (from compatibility check results) | |
| includeCommands | No | Include terminal commands for installation/setup | |
| includeExamples | No | Include code examples in the response | |
| priority | No | Filter fixes by priority level | all | 
Input Schema (JSON Schema)
{
  "properties": {
    "features": {
      "description": "Features that need fixes (from compatibility check results)",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "includeCommands": {
      "default": true,
      "description": "Include terminal commands for installation/setup",
      "type": "boolean"
    },
    "includeExamples": {
      "default": true,
      "description": "Include code examples in the response",
      "type": "boolean"
    },
    "priority": {
      "default": "all",
      "description": "Filter fixes by priority level",
      "enum": [
        "critical",
        "high",
        "medium",
        "low",
        "all"
      ],
      "type": "string"
    }
  },
  "required": [
    "features"
  ],
  "type": "object"
}