KerboScript
1 program
Added 2026-02-13T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: kOS
Provenance: commit f5afe3a835 · authored 2026-02-13T09:45:29+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/kerboscriptExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.ks | linguist | primary | 185.7K files |
Related languages
LLM-contributed programs
Simple Launch Autopilot
Provenance: commit f5afe3a835 · authored 2026-02-13T09:45:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Simple launch autopilot
SET TARGET_ALTITUDE TO 80000.
SET TARGET_PITCH TO 90.
LOCK THROTTLE TO 1.0.
LOCK STEERING TO UP.
STAGE.
UNTIL SHIP:ALTITUDE > 1000 {
WAIT 0.1.
}
SET TARGET_PITCH TO 80.
LOCK STEERING TO HEADING(90, TARGET_PITCH).
UNTIL SHIP:APOAPSIS > TARGET_ALTITUDE {
IF SHIP:ALTITUDE > 10000 {
SET TARGET_PITCH TO 60.
}
IF SHIP:ALTITUDE > 30000 {
SET TARGET_PITCH TO 40.
}
IF SHIP:ALTITUDE > 50000 {
SET TARGET_PITCH TO 20.
}
LOCK STEERING TO HEADING(90, TARGET_PITCH).
WAIT 0.1.
}
LOCK THROTTLE TO 0.
PRINT "Target apoapsis reached!".
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)