init_project_docs
Set up standardized documentation structure for projects by creating organized folders and templates based on project type and name.
Instructions
Initialize Universal Project Documentation Standard structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory_path | Yes | Path to project directory to initialize | |
project_name | Yes | Name of the project for templates | |
project_type | No | Type of project (e.g., 'web-app', 'api', 'library') |
Input Schema (JSON Schema)
{
"properties": {
"directory_path": {
"description": "Path to project directory to initialize",
"type": "string"
},
"project_name": {
"description": "Name of the project for templates",
"type": "string"
},
"project_type": {
"description": "Type of project (e.g., 'web-app', 'api', 'library')",
"type": "string"
}
},
"required": [
"directory_path",
"project_name"
],
"type": "object"
}