cyberneticlibrary

Break down complex problems systematically

computational-thinkingskillsetup L164
Tibsfox/gsd-skill-creator
What it does

Decompose problems, model abstractions, and reason algorithmically

Best for

Tackling novel algorithmic problems when no pre-built library fits.

Inputs
  • · Problem statement, constraints, examples
Outputs
  • · Problem decomposition, state machine model, pseudocode, correctness proof sketch
Preconditions
  • · Read problem carefully
  • · Identify patterns (dynamic prog, greedy, graph)
Failure modes
  • · Greedy fails for weighted problems (use DP)
  • · Off-by-one in loop bounds
  • · Assuming sorted input without checking
Trust signals
  • · Tibsfox, stable 2026-04-12
  • · Teaches reduction, induction, invariant reasoning