| 1 | # Fleet roles: stopship |
| 2 | # |
| 3 | # Named stopship fleet binding workflow roles → Fleet roles. Spawns resolve |
| 4 | # roles only — there are no saved members to bind, and Fleet does NOT spawn |
| 5 | # tmux or manage worktrees (Runtime owns those). |
| 6 | # |
| 7 | # Load path (when wired by workflow run --fleet): |
| 8 | # 1. $CODEWHALE_HOME/fleets/stopship.toml |
| 9 | # 2. <workspace>/fleets/stopship.toml (this file) |
| 10 | # |
| 11 | # Values use the canonical Codewhale role vocabulary (explore, implement, |
| 12 | # reviewer, test, advisor); keys are the workflow's own step names. |
| 13 | |
| 14 | name = "stopship" |
| 15 | description = "Read-only current release orchestration acceptance fleet" |
| 16 | |
| 17 | [roles] |
| 18 | # workflow role name = Fleet role (canonical or legacy alias) |
| 19 | explore = "scout" |
| 20 | implement = "builder" |
| 21 | reviewer = "reviewer" |
| 22 | test = "verifier" |
| 23 | release_lead = "advisor" |
| 24 | |
| 25 | [role_intents.explore] |
| 26 | mode = "read_only" |
| 27 | summary = "Source-level runtime and receipt reconnaissance" |
| 28 | |
| 29 | [role_intents.implement] |
| 30 | mode = "read_only" |
| 31 | summary = "No-edit acceptance evidence plan" |
| 32 | |
| 33 | [role_intents.reviewer] |
| 34 | mode = "read_only" |
| 35 | summary = "False-green and receipt-contract review" |
| 36 | |
| 37 | [role_intents.test] |
| 38 | mode = "read_only" |
| 39 | summary = "Static test and receipt serialization verification" |
| 40 | |
| 41 | [role_intents.release_lead] |
| 42 | mode = "read_only" |
| 43 | summary = "Final evidence-only acceptance receipt" |
| 44 |