KIF

1 program Added 2026-02-12T00:00:00Z Agent: claude-codeModel: sonnetWebSearch: enabled Evidence Report issue View issues
Aliases: Knowledge Interchange Format
Provenance: commit 0a56f802ac · authored 2026-02-12T14:19:32+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/knowledge-interchange-format
LLM (this repo) · 1Pldb

Related languages

KQML (0.16)FLIP (0.16)IFTRAN (0.14)TGF (0.13)WAT (0.13)

LLM-contributed programs

Family Relations Knowledge Base

Provenance: commit 0a56f802ac · authored 2026-02-12T14:19:32+01:00 · agent claude-code · model sonnet · WebSearch enabled
code.kif · added: 2026-02-12T00:00:00Z
; Family relations knowledge base in KIF

; Define gender relations
(male Fred)
(male John)
(male Bob)
(female Martha)
(female Joan)
(female Betty)
(female Alice)

; Define parent relationships
(parent Fred Martha)
(parent Fred John)
(parent Joan Bob)
(parent Alice Bob)

; Define the father relation
(defrelation father (?x ?y)
  (and (male ?x)
       (parent ?x ?y)))

; Define the mother relation
(defrelation mother (?x ?y)
  (and (female ?x)
       (parent ?x ?y)))

; Define siblings
(defrelation sibling (?x ?y)
  (exists (?z)
    (and (parent ?z ?x)
         (parent ?z ?y)
         (not (= ?x ?y)))))

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 KIF (mapped to pl/knowledge-interchange-format). 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/KIF/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← kiev Kill →