Cycript
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 113cfb5cab · authored 2026-03-12T05:29:12+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/cycriptExtensions 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 |
|---|---|---|---|
.cy | linguist | primary | 18.7K files |
Related languages
LLM-contributed programs
List Installed Applications
Provenance: commit 113cfb5cab · authored 2026-03-12T05:29:12+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// List installed applications via SpringBoard using Cycript
var SBApplicationController = objc_getClass("SBApplicationController");
var appController = [SBApplicationController sharedInstance];
var apps = [appController allApplications];
var count = [apps count];
for (var i = 0; i < count; i++) {
var app = [apps objectAtIndex:i];
var name = [app displayName];
var bundleId = [app bundleIdentifier];
NSLog(@"%@: %@", name, bundleId);
}
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.)