Create a new Frappe DocType with complete scaffolding including JSON definition, Python controller, JavaScript client script, and tests
<doctype_name> [module_name] [--child] [--single] [--submittable]# Create Frappe DocType You are creating a new DocType in a Frappe application. Follow this systematic process to create a complete, working DocType with all necessary files. ## Arguments Parse the user's input: $ARGUMENTS - **doctype_name**: Name of the DocType (e.g., "Project Task", "Customer Feedback") - **module_name**: (Optional) Module to create DocType in - **--child**: Create as child table (istable=1) - **--single**: Create as Single DocType (issingle=1) - **--submittable**: Create as submittable document (is_submittable=1) ## Process ### Step 1: Discover Project Structure 1...