Install
openclaw skills install agent-ontologyCreate, update, and query typed entities and relations like Person, Project, and Task in a verifiable knowledge graph with validation.
openclaw skills install agent-ontologyA typed vocabulary + constraint system for representing knowledge as a verifiable graph.
memory/ontology/graph.jsonl - append-only JSONL format
| Relation | From | To |
|---|---|---|
| has_owner | Project, Task | Person |
| assigned_to | Task | Person |
| belongs_to | Task | Project |
| blocks | Task | Task (acyclic) |
python3 scripts/ontology.py create --type Person --props '{"name":"Alice"}'
python3 scripts/ontology.py list --type Person
python3 scripts/ontology.py query --type Task --where '{"status":"open"}'
python3 scripts/ontology.py get --id p_001
python3 scripts/ontology.py relate --from proj_001 --rel has_owner --to p_001