I have played only a little bit with this.
1) You can start an advanced work flow on incoming documents, but there are several parameters that have to be provided, specifically the list of reviewers, the percentage approval required and the due date. You can provide all of that from a Javascript attached as an action to the space, that is triggered on INCOMING documents.
You can approach the list of reviewers a couple of ways. The first way I thought of was to create a custom aspect which was a list of usernames and attach this aspect to the space. The second way might be more natural, and that is to have the list of people invited explicitly as collaborators (or consumers) to the space. Either list can be queried by your script.
The percentage approval would either default to 50% (or something else you put in the script), or you add a custom aspect to the space with the parameter attached.
Similarly, for the due date, you can decide not to set one, or you can hard code the due date or a duration into your script. Alternatively, create a custom aspect that specifies either the duration or a date and add it to the folder.
2) Parallel reviews come in 3 types: parallel list, parallel group, and parallel pooled. I think you are referring to parallel pooled in your example, as the former two will keep the task on everybody's screen.