Telos

1 program Added 2026-03-13T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ConceptBase Telos
Provenance: commit ceec6b7ee5 · authored 2026-03-13T04:48:16+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/telos
LLM (this repo) · 1Pldb

Related languages

Concurnas (0.15)jLOS (0.13)XL (0.13)TERSE (0.12)STklos (0.12)

LLM-contributed programs

University Information System Schema

Provenance: commit ceec6b7ee5 · authored 2026-03-13T04:48:16+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.telos · added: 2026-03-13T10:00:00Z
%  Telos schema example: University information system
%  Demonstrates class hierarchy, attributes, and instances in Telos
%  Based on the ConceptBase knowledge base system

Class Entity in ConceptualClass
  attribute
    name: String
    description: String
end

Class Person in Entity
  isA Entity
  attribute
    firstName: String
    lastName: String
    birthYear: Integer
end

Class AcademicRole in ConceptualClass
  structural
    holder: Person
  attribute
    startYear: Integer
end

Class Student in AcademicRole
  isA AcademicRole
  attribute
    studentId: String
    program: String
    degree: String
end

Class Professor in AcademicRole
  isA AcademicRole
  attribute
    employeeId: String
    department: String
    rank: String
end

Class Course in Entity
  isA Entity
  attribute
    courseCode: String
    credits: Integer
  structural
    taughtBy: Professor
end

Individual JohnSmith in Person
  attribute
    name: "John Smith"
    firstName: "John"
    lastName: "Smith"
    birthYear: 1995
end

Individual DrJaneRoe in Person
  attribute
    name: "Dr. Jane Roe"
    firstName: "Jane"
    lastName: "Roe"
    birthYear: 1970
end

Individual CS101 in Course
  attribute
    name: "Introduction to Computer Science"
    courseCode: "CS101"
    credits: 3
    description: "Fundamentals of programming and computation"
end

Individual JohnEnrollment in Student
  structural
    holder: JohnSmith
  attribute
    studentId: "S20230042"
    program: "Computer Science"
    degree: "BSc"
    startYear: 2023
end

Individual JanePosition in Professor
  structural
    holder: DrJaneRoe
  attribute
    employeeId: "F10087"
    department: "Computer Science"
    rank: "Associate Professor"
    startYear: 2005
end

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.)

Contribute — propose a file extension

Tell us where to find evidence about Telos (mapped to pl/telos). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Telos/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← telnet-protocol telsim →