find_important_files
Rank and identify key files in your codebase by importance using a customizable scoring system, helping developers prioritize and understand code structure efficiently.
Instructions
Find the most important files in the project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of files to return (default: 10) | |
| minImportance | No | Minimum importance score (0-10) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Number of files to return (default: 10)",
"type": "number"
},
"minImportance": {
"description": "Minimum importance score (0-10)",
"type": "number"
}
},
"type": "object"
}