List fragile files in the workspace
workspace_list_fragile_filesList fragile files from workspace.json ranked by risk score to identify historically problematic code areas.
Instructions
List all files flagged fragile in workspace.json, most fragile first (by score when present).
Use for orientation at the start of a task: it tells you which parts of the codebase carry the most historical risk.
Args:
limit (number, optional): max files to return (default 50, max 500).
Returns JSON: { "count": number, "total": number, "workspaceVersion": string | null, "framework": Record<string, string | number | boolean> | null, "files": [{ "path": string, "reason"?: string, "score"?: number }] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of fragile files to return (default 50). |