Cap'n Proto
1 program
Added 2026-02-12T10:37:49Z
Agent: claude-codeModel: recovery
Evidence
Report issue
View issues
Aliases: capnproto, capnp
Provenance: commit a749ad1660 · authored 2026-02-22T16:31:30+01:00 · agent claude-code · model recovery
Sources mentioning this language
4 sources · pl_id:
pl/capn-protoExtensions claimed by this language
2 claims. 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 |
|---|---|---|---|
.capnp | linguist | primary | 25.9K files |
.capnp | pygments | primary | 25.9K files |
Related languages
LLM-contributed programs
Address Book Schema
Provenance: commit a749ad1660 · authored 2026-02-22T16:31:30+01:00 · agent claude-code · model recovery
# Example Cap'n Proto schema definition
# Defines a simple address book structure
@0x85150b117366d14c;
struct Person {
id @0 :UInt32;
name @1 :Text;
email @2 :Text;
phones @3 :List(PhoneNumber);
employment :union {
unemployed @4 :Void;
employer @5 :Text;
school @6 :Text;
selfEmployed @7 :Void;
}
struct PhoneNumber {
number @0 :Text;
type @1 :Type;
enum Type {
mobile @0;
home @1;
work @2;
}
}
}
struct AddressBook {
people @0 :List(Person);
}
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.)