Create new project with standard directory structure
commands/# Create This command creates new projects with standardized directory structures based on project type. Parameters: - project_name (required): Project name in kebab-case - project_type (required): One of: research-project, data-analysis, paper-writing, general - root (optional): Target directory (default: current) - git_init (optional): Initialize Git repository (default: true) - force (optional): Overwrite existing directory (default: false) The command will: 1. Validate input parameters 2. Create standard directory structure 3. Generate template files 4. Initialize Git if requested 5....