Phase 1 — unblocked, and a blocking dependency of #5 and #6.
Scope narrowed: this issue was originally the whole Prolific wrapper. The participant-facing content (consent, instructions, comprehension check, debrief, mobile block) moved to #13. What remains here is the submission plumbing, which is small, and which #5 and #6 both need before their payment paths can be built at all.
The problem
There is no completion-code redirect anywhere in either experiment, so no participant can submit the study at all — including one who plays all the way through and reaches doneTrial. Every recruited person would need manual approval, and the dead-end paths (#5, #6, and screen-outs) have nothing to redirect to.
Work
| Code |
Exit |
Issue |
complete |
finished the game |
— |
partner-dropped |
survivor abort path |
#5 |
no-match |
lobby timeout or spectator overflow |
#6 |
screened-out |
failed the exposure item or declined the commitment gate |
#13 |
Screening plumbing
Prolific permits in-study screening only via its built-in custom screening feature or a two-study design; the suggested choice is the built-in feature (see READINESS.md §4). That has consequences here:
Payment notes
Platform-mandated, not our choice — full detail and sources in READINESS.md §4:
- Unmatched participants must be paid, and must not be rejected. Minimum $0.14/min of waiting; the suggested figure is the full task rate instead (~$1.25 for a 5-minute lobby timeout), because a floor-rate payment loses to returning the study and teaches people to abandon the lobby.
- The screen-out reward is duration-scaled: $0.14 is the minimum for a screener of one minute or less, so a two-minute screener implies ~$0.28. Set it from a measured pilot duration and round up, because it cannot be changed after the study is published.
- The screen-out reward may not exceed the full study reward.
- The screen-out slot limit auto-pauses the study when hit. Set it with headroom against the expected screen-out rate, or a higher-than-expected exposure rate silently halts recruitment mid-run — worst case during a burst launch, when simultaneous arrival is the whole ballgame.
See READINESS.md sections 4 and 5.
Phase 1 — unblocked, and a blocking dependency of #5 and #6.
Scope narrowed: this issue was originally the whole Prolific wrapper. The participant-facing content (consent, instructions, comprehension check, debrief, mobile block) moved to #13. What remains here is the submission plumbing, which is small, and which #5 and #6 both need before their payment paths can be built at all.
The problem
There is no completion-code redirect anywhere in either experiment, so no participant can submit the study at all — including one who plays all the way through and reaches
doneTrial. Every recruited person would need manual approval, and the dead-end paths (#5, #6, and screen-outs) have nothing to redirect to.Work
PROLIFIC_PID/STUDY_ID/SESSION_IDfrom URL params. Attaching them to data rows is Data: attach dyad_id and Prolific identifiers to every row #4; this issue just needs them available for the redirect.app.prolific.com/submissions/complete?cc=….completepartner-droppedno-matchscreened-outdoneTrial.Screening plumbing
Prolific permits in-study screening only via its built-in custom screening feature or a two-study design; the suggested choice is the built-in feature (see
READINESS.md§4). That has consequences here:screened-outcovers both the prior-exposure item and the commitment gate whether we want it to or not.screened_out_reason(prior_exposure/declined_commitment) so the two are separable in analysis. The rates answer different questions: exposure rate measures how contaminated the Prolific pool is for tangram tasks (directly relevant to whether Hawkins is viable later), while commitment-decline rate is a leading indicator of the abandonment rate we will see downstream.Payment notes
Platform-mandated, not our choice — full detail and sources in
READINESS.md§4:See
READINESS.mdsections 4 and 5.