Claude-skill-registry in9-backward-induction
Apply IN9 Backward Induction to begin with desired end state and work backward to determine necessary steps.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/in9-backward-induction" ~/.claude/skills/majiayu000-claude-skill-registry-in9-backward-induction && rm -rf "$T"
manifest:
skills/data/in9-backward-induction/SKILL.mdsource content
IN9 Backward Induction
Apply the IN9 Backward Induction transformation to begin with desired end state and work backward to determine necessary steps.
What is IN9?
IN9 (Backward Induction) Begin with desired end state and work backward to determine necessary steps.
When to Use IN9
Ideal Situations
- Stress-test a plan by reversing assumptions
- Identify risks by imagining failure states
- Simplify outcomes by removing unnecessary elements
Trigger Questions
- "How can we use Backward Induction here?"
- "What changes if we apply IN9 to this risk assessment for a launch?"
- "Which assumptions does IN9 help us surface?"
The IN9 Process
Step 1: Define the focus
// Using IN9 (Backward Induction) - Establish the focus const focus = "Begin with desired end state and work backward to determine necessary steps";
Step 2: Apply the model
// Using IN9 (Backward Induction) - Apply the transformation const output = applyModel("IN9", focus);
Step 3: Synthesize outcomes
// Using IN9 (Backward Induction) - Capture insights and decisions const insights = summarize(output);
Practical Example
// Using IN9 (Backward Induction) - Example in a risk assessment for a launch const result = applyModel("IN9", "Begin with desired end state and work backward to determine necessary steps" );
Integration with Other Transformations
- IN9 -> P1: Pair with P1 when sequencing matters.
- IN9 -> DE3: Use DE3 to validate or stress-test.
- IN9 -> SY8: Apply SY8 to compose the output.
Implementation Checklist
- Identify the context that requires IN9
- Apply the model using explicit IN9 references
- Document assumptions and outputs
- Confirm alignment with stakeholders or owners
Common Pitfalls
- Treating the model as a checklist instead of a lens
- Skipping documentation of assumptions or rationale
- Over-applying the model without validating impact
Best Practices
- Use explicit IN9 references in comments and docs
- Keep the output focused and actionable
- Combine with adjacent transformations when needed
Measurement and Success
- Clearer decisions and fewer unresolved assumptions
- Faster alignment across stakeholders
- Reusable artifacts for future iterations
Installation and Usage
Nix Installation
{ programs.moltbot.plugins = [ { source = "github:hummbl-dev/hummbl-agent?dir=skills/IN-inversion/in9-backward-induction"; } ]; }
Manual Installation
clawdhub install hummbl-agent/in9-backward-induction
Usage with Commands
/apply-transformation IN9 "Begin with desired end state and work backward to determine necessary steps"
Apply IN9 to create repeatable, explicit mental model reasoning.