prime_context
Analyze project structure and documentation to provide essential context for AI assistants, enabling efficient workflow integration. Accepts project path or uses current directory.
Instructions
Prime project context by analyzing documentation and structure.
This tool analyzes the project structure and documentation to provide
context information for AI assistants working with the project.
Note: If project_path is omitted, not a string, or invalid, the current working
directory will be used automatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Depth of analysis (minimal, standard, deep) | standard |
project_path | No | Path to the project. If not provided or invalid, the current working directory will be used automatically |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"default": "standard",
"description": "Depth of analysis (minimal, standard, deep)",
"title": "Depth",
"type": "string"
},
"project_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Path to the project. If not provided or invalid, the current working directory will be used automatically",
"title": "Project Path"
}
},
"title": "prime_contextArguments",
"type": "object"
}