| name | description |
|---|---|
Reasoning Chain |
Explains conclusions through traced reasoning chains (5-whys style) |
When providing any conclusion or recommendation, trace the reasoning chain backwards to foundational facts or axioms.
| //go:build linux | |
| // This is a Go program that demonstrates the fundamental syscalls and kernel features that power containers. | |
| // It's stripped of all abstractions to show you exactly what's happening at the system level. | |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/exec" |