Five scenarios encoded U-item defaults with no owner and no review date, so they could shape the kernel indefinitely while looking handled. Each now carries provisional_owner and provisional_raised, and the runtime's ScenarioFile learned both fields (deny_unknown_fields meant adding them to YAML alone would have failed every scenario -- the parser had to agree). make coverage reports every provisional item with its owner and age in days, warns on any with no owner, and warns past 30 days. It WARNS rather than breaking the build, on purpose: the ruling is ground-game's to make and the kernel cannot make it for them. What the loop can enforce is that evidence files list them, which is now stated in GroundRules. rule-coverage --self-test gained an assertion that every provisional item has both fields, so the next one added without them fails a command rather than passing quietly. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
scenario: ground/gr-a04-bond-support
|
||
description: >
|
||
Support through an existing Bond: −2 Stress and the target's Freedom
|
||
token is readied (GR-A04, GR-F04). A Support with no relation forms no
|
||
Bond, because GR-L02 requires the target's consent.
|
||
covers: [GR-A04, GR-F04, GR-L02, GR-L05]
|
||
provisional: true
|
||
provisional_owner: ground-game
|
||
provisional_raised: 2026-07-31
|
||
seed: 42
|
||
setup:
|
||
players: 3
|
||
preset: standard-3p
|
||
patch:
|
||
"lead": 0
|
||
"relations.0-1": Bond
|
||
"players.1.stress": 3
|
||
"players.1.freedom_ready": false
|
||
commands:
|
||
- actor: P1
|
||
cmd: select_action
|
||
args: { action: SUPPORT, target: P2 }
|
||
# No relation with P3: Stress drops but no Bond forms without consent.
|
||
- actor: P2
|
||
cmd: select_action
|
||
args: { action: SUPPORT, target: P3 }
|
||
- actor: P3
|
||
cmd: select_action
|
||
args: { action: INVESTIGATE, problem: 3 }
|
||
- actor: SYSTEM
|
||
cmd: reveal
|
||
- actor: SYSTEM
|
||
cmd: resolve
|
||
expect:
|
||
events:
|
||
- kind: StressSet
|
||
player: 1
|
||
stress: 1
|
||
- kind: FreedomReadied
|
||
player: 1
|
||
- kind: StressSet
|
||
player: 2
|
||
stress: 1
|
||
state:
|
||
"players.1.stress": 1
|
||
"players.1.freedom_ready": true
|
||
"players.2.stress": 1
|
||
# No Bond formed with P3: the relation map is unchanged.
|
||
"relations": { "0-1": Bond }
|
||
rejects: []
|