@WoodyUmstead wrote:
First project is to build an automated "save edits" script to run after you start an edit session.
I hate to be the bearer of bad news, but Python scrips have no ability to hook into Pro events. You can manage edit sessions and apply edits once you've started a script, but the running script will lock you out of interaction with Pro until it completes.
You can write an extension in the C# SDK if you need more direct live access to the machinery of ArcPro though. That's a bit more involved however.
If you want the save edits to be run by the user, I'd start off by creating a simple script tool. That'll give the user a button they can click and allows passing parameters through the standard geoprocessing parameter interface. You'll need the data access (da) module and the management module to accomplish this.
As for the environment, you'll need access to an arcpy conda install. It's usually at:
"C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python.exe"
Using this environment will make sure that you aren't writing anything that can't be run by a user that only has the default env installed. If you need to add packages, you can create a new env through Pro:

To get started, I'd look into the Editor docs:
https://pro.arcgis.com/en/pro-app/latest/arcpy/data-access/editor.htm
as well as the general da docs.
You'll also want to look into creating a ScriptTool:
https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/basics/create-a-python-script-t...
You can have the tool reference a file on disk and package that file into the Toolbox when you need to move it around.
When I'm developing tools, I use my own library and pattern to get started. It's published here:
https://github.com/hwelch-fle/pytframe2
and I have a supplemental library that's more actively developed here:
https://github.com/hwelch-fle/arcpie
I write most of my code in VSCode and that toolbox system allows me to break tooling into submodules meaning a bug in one tool won't break all tools in the toolbox. This is incredibly useful once your tools hit a production flow and losing the whole system would be catastrophic.