set_file_importance
Assign a custom importance ranking (0-10) to a specific file within your codebase, enabling prioritized analysis and targeted focus in managing code structure and dependencies.
Instructions
Manually set the importance ranking of a specific file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filepath | Yes | The path to the file to update | |
| importance | Yes | The importance value to set (0-10) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filepath": {
"description": "The path to the file to update",
"type": "string"
},
"importance": {
"description": "The importance value to set (0-10)",
"maximum": 10,
"minimum": 0,
"type": "number"
}
},
"required": [
"filepath",
"importance"
],
"type": "object"
}