save_generate_project_guidelines
Generate project guidelines for a specified tech stack using AI-powered web search. Saves results as a Markdown file to the designated path for easy reference and documentation.
Instructions
Generates comprehensive project guidelines based on a tech stack using web search and saves the result to a specified file path. Uses the configured Vertex AI model (gemini-2.5-pro-exp-03-25). Requires 'tech_stack' and 'output_path'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_path | Yes | The relative path where the generated guidelines Markdown file should be saved (e.g., 'docs/PROJECT_GUIDELINES.md'). | |
tech_stack | Yes | An array of strings specifying the project's technologies, optionally with versions (e.g., ['React', 'TypeScript 5.x', 'Node.js', 'Express 4.18', 'PostgreSQL 16.x']). If no version is specified, the latest stable version will be assumed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"output_path": {
"description": "The relative path where the generated guidelines Markdown file should be saved (e.g., 'docs/PROJECT_GUIDELINES.md').",
"type": "string"
},
"tech_stack": {
"description": "An array of strings specifying the project's technologies, optionally with versions (e.g., ['React', 'TypeScript 5.x', 'Node.js', 'Express 4.18', 'PostgreSQL 16.x']). If no version is specified, the latest stable version will be assumed.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"tech_stack",
"output_path"
],
"type": "object"
}