PowerLoom

1 program Added 2026-02-10T20:18:07Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: PowerLoom KR&R System
Provenance: commit f1c2b36baa · authored 2026-02-10T21:19:00+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Laning and Zierler System (0.21)A-3 (0.21)Red/System (0.21)Klerer-May System (0.19)Red (0.19)

LLM-contributed programs

Family Relations Example

Provenance: commit f1c2b36baa · authored 2026-02-10T21:19:00+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.plm · added: 2026-02-10T20:18:07Z
(in-module "FAMILY")

(defconcept PERSON (?p))
(defconcept MALE (?m) :=> (PERSON ?m))
(defconcept FEMALE (?f) :=> (PERSON ?f))

(defrelation PARENT (?p ?c)
  :documentation "?p is a parent of ?c")

(defrelation FATHER (?f ?c)
  :=> (and (MALE ?f) (PARENT ?f ?c)))

(defrelation MOTHER (?m ?c)
  :=> (and (FEMALE ?m) (PARENT ?m ?c)))

(assert (MALE John))
(assert (FEMALE Mary))
(assert (MALE Tom))
(assert (PARENT John Tom))
(assert (PARENT Mary Tom))

(retrieve all (?f ?c) (FATHER ?f ?c))

Contribute — propose a file extension

Tell us where to find evidence about PowerLoom (mapped to pl/powerloom). 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/PowerLoom/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Powerlist powerloom-knowledgebase →