Second-Order Consequence Chains
Do not stop at the intended first effect. Trace what happens next across actors, time, and feedback until the chain stops changing the decision.
When to Use
- Strategic, policy, incentive, or architecture choices with lasting coupling.
- The obvious fix feels too easy or has known backfire patterns.
- Success or scale would create new problems (load, gaming, debt).
- Need to compare options by delayed effects, not only day-one benefit.
When NOT to Use
- Local reversible edit with no incentive or cross-component coupling—just ship and observe.
- Full system structure (stocks, many loops, leverage ranking) is the goal—use systems.
- Pre-mortem of failure modes for a plan already chosen—use pre-mortem.
- Pure mechanical changes (rename, format) with no behavioral effect.
Procedure
- State decision and first-order effect. One sentence each: action and intended immediate result.
- Chain "and then what?" At least two further orders. For each link record: effect, who responds, rough probability (high/med/low), timing (immediate / next cycle / at scale), and whether it feeds back into the original problem (reinforce or counteract).
- Expand affected parties. Who else reacts (users, operators, other teams, attackers, markets)? What incentives does the change create or destroy?
- Scale test. Ask what happens if everyone does this or usage grows 10x. Mark paths that only appear under scale or repetition.
- Prune and decide. Drop speculative links that do not change the choice. Keep only effects that alter go/no-go, design, or mitigations. Revise the action or add guards where second-order harm exceeds first-order gain.
Stop when further "and then what?" no longer changes the decision, or the remaining chain is pure speculation without mechanism.
Output
decision: <action>
first_order: <intended immediate effect>
chain:
- order: 2
effect: <what>
actors: <who>
p: high|med|low
when: immediate|next_cycle|at_scale
feedback: none|reinforce|balance
- order: 3
...
scale_if_universal: <one sentence or n/a>
revised_decision: <same | modified action | no-go>
mitigations: <guards for kept risks>
Verification
- Falsify: If no credible second-order path changes the choice, first-order is enough—stop inventing cascades. If the core issue is multi-loop structure rather than one decision's trail, switch to systems.
- Stop: End at the first order that no longer affects the decision; do not pad to a fixed depth.
- Over-application guard: No low-probability sci-fi chains. No treating parameter tweaks as deep strategy. Probability and timing required on kept links; omit decoration without mechanism.
1---2name: thinking-second-order3description: When a change has effects past the immediate fix—incentives, scale, feedback—trace consequence chains with timing and probability before committing.4---5
6# Second-Order Consequence Chains
7
8Do not stop at the intended first effect. Trace what happens next across actors, time, and feedback until the chain stops changing the decision.
9
10## When to Use
11
12- Strategic, policy, incentive, or architecture choices with lasting coupling.
13- The obvious fix feels too easy or has known backfire patterns.
14- Success or scale would create new problems (load, gaming, debt).
15- Need to compare options by delayed effects, not only day-one benefit.
16
17## When NOT to Use
18
19- Local reversible edit with no incentive or cross-component coupling—just ship and observe.
20- Full system structure (stocks, many loops, leverage ranking) is the goal—use systems.
21- Pre-mortem of failure modes for a plan already chosen—use pre-mortem.
22- Pure mechanical changes (rename, format) with no behavioral effect.
23
24## Procedure
25
261. **State decision and first-order effect.** One sentence each: action and intended immediate result.
272. **Chain "and then what?"** At least two further orders. For each link record: effect, who responds, rough probability (high/med/low), timing (immediate / next cycle / at scale), and whether it feeds back into the original problem (reinforce or counteract).
283. **Expand affected parties.** Who else reacts (users, operators, other teams, attackers, markets)? What incentives does the change create or destroy?
294. **Scale test.** Ask what happens if everyone does this or usage grows 10x. Mark paths that only appear under scale or repetition.
305. **Prune and decide.** Drop speculative links that do not change the choice. Keep only effects that alter go/no-go, design, or mitigations. Revise the action or add guards where second-order harm exceeds first-order gain.
31
32**Stop when** further "and then what?" no longer changes the decision, or the remaining chain is pure speculation without mechanism.
33
34## Output
35
36```text
37decision: <action>
38first_order: <intended immediate effect>
39chain:
40 - order: 2
41 effect: <what>
42 actors: <who>
43 p: high|med|low
44 when: immediate|next_cycle|at_scale
45 feedback: none|reinforce|balance
46 - order: 3
47 ...
48scale_if_universal: <one sentence or n/a>
49revised_decision: <same | modified action | no-go>
50mitigations: <guards for kept risks>
51```
52
53## Verification
54
55- **Falsify:** If no credible second-order path changes the choice, first-order is enough—stop inventing cascades. If the core issue is multi-loop structure rather than one decision's trail, switch to systems.
56- **Stop:** End at the first order that no longer affects the decision; do not pad to a fixed depth.
57- **Over-application guard:** No low-probability sci-fi chains. No treating parameter tweaks as deep strategy. Probability and timing required on kept links; omit decoration without mechanism.