Files
chemenu/types/entity.schema.yaml
T
torben 18ae28f918
CI / verify (push) Failing after 32s
Release / release (push) Successful in 38s
Chemenu 2.1.0 - deterministischer Wissenskompiler
Chemenu kompiliert Rohnotizen zu einem verlinkten, quellengebundenen Wiki:
raw/ -> types/ + tools/ -> kb/ -> reports/. Was mechanisch ist, macht
tools/wikitool; was Urteil braucht, macht ein Agent unter Contracts, deren
Grenzen in Code durchgesetzt sind statt im Prompt.

Dieser Commit ist der Startpunkt der oeffentlichen Historie. Die vorherige
Entwicklung fand in einer privaten Instanz statt und ist nicht Teil dieses
Repositorys; ihre Erzaehlung steht vollstaendig in CHANGES.md, das mit 44
Eintraegen von 0.1.0 bis 2.1.0 erhalten geblieben ist.

Der mitgelieferte Korpus ist ein Testbett und eine Demo: 170 Seiten ueber den
Stack selbst - Gates, Lint, Versionierung, Suche, das Wiki-Muster. Er
dokumentiert das Werkzeug mit den eigenen Mitteln des Werkzeugs.

Lizenz: AGPL-3.0 fuer den Stack (tools/, types/), CC-BY-4.0 fuer die Inhalte.
Die Grenze zwischen beiden ist der Dateiplan, den dist export berechnet -
siehe NOTICE.
2026-09-01 16:26:14 +02:00

65 lines
1.7 KiB
YAML

# YAML Schema for entity type
type: object
properties:
type:
type: string
const: "types/entity.md"
description: Must reference the entity type-spec
entity_type:
type: string
enum: [project, system, tool, technology, person]
description: The specific category of entity
tags:
type: array
items:
type: string
description: Navigation tags for categorization
created:
type: string
format: date
pattern: "^\\d{4}-\\d{2}-\\d{2}$"
description: Creation date in YYYY-MM-DD format
modified:
type: string
format: date
pattern: "^\\d{4}-\\d{2}-\\d{2}$"
description: Last modification date in YYYY-MM-DD format
related:
type: array
items:
type: string
description: Related page titles
sources:
type: array
items:
type: string
description: Source page titles that support claims
confidence:
type: number
minimum: 0.0
maximum: 1.0
default: 0.5
description: Confidence score for the entity's information (derived - recomputed by `wikitool confidence decay` from confidence_base)
confidence_base:
type: number
minimum: 0.0
maximum: 1.0
default: 0.5
description: Undecayed confidence at last confirmation; the input `wikitool confidence decay` decays from. Set this, not `confidence`, when re-assessing a page.
provenance:
type: string
enum: [sourced, general, mixed]
default: general
description: Provenance classification
summary:
type: string
description: 1-line summary for index.md
minLength: 1
required:
- type
- entity_type
- created
- modified
- provenance
- summary
additionalProperties: false