List fragile files in the workspace
workspace_list_fragile_filesIdentify the most fragile files in your codebase by listing files flagged in workspace.json, sorted by historical risk score.
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). |