apply_prompt_infra
Generate structured infrastructure and tool stack documentation using customizable prompt templates. Ideal for developers working with Cursor IDE to maintain clear system context and versioning.
Instructions
Provides a prompt template for laying out system infrastructure and tool stack information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
infrastructure_info | Yes | Description of the infrastructure and tool stack | |
specific_instructions | No | Optional specific instructions to include in the prompt | |
version | No | The version of the prompt template to use (e.g., '1.0.0', '1.1.0', or 'latest') |
Input Schema (JSON Schema)
{
"properties": {
"infrastructure_info": {
"description": "Description of the infrastructure and tool stack",
"type": "string"
},
"specific_instructions": {
"description": "Optional specific instructions to include in the prompt",
"type": "string"
},
"version": {
"description": "The version of the prompt template to use (e.g., '1.0.0', '1.1.0', or 'latest')",
"type": "string"
}
},
"required": [
"infrastructure_info"
],
"type": "object"
}