Add, modify, or remove fields from an existing Frappe DocType with automatic JSON updates
<doctype_name> <action> [field_details]# Manage DocType Fields Add, modify, or remove fields from an existing Frappe DocType. This command helps you update the DocType JSON file correctly. ## Arguments Parse the user's input: $ARGUMENTS - **doctype_name**: Name of the existing DocType - **action**: add, modify, remove, list - **field_details**: Field specifications (for add/modify) ## Actions ### List Fields Show current fields in the DocType: ### Add Field Add a new field to the DocType: ### Modify Field Modify an existing field: ### Remove Field Remove a field (with confirmation): ## Process ### Step 1: Find Doc...