Skip to content

Commit 30f4907

Browse files
committed
fix: remove stale Kernel.js/EdgeKernel.js refs from processes.ttl, relations.ttl
Replaced 7 implementation-specific dc:description annotations with semantic descriptions. No more references to non-existent Node.js source.
1 parent 4d296fe commit 30f4907

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

docs/public/ontology/v3.5/processes.ttl

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,13 @@ ckpp:occursIn a owl:ObjectProperty , owl:FunctionalProperty ;
112112

113113
#################################################################
114114
# 1. Invocation Process
115-
# Implementation: /core/src/Kernel.js:handleJob()
116115
#################################################################
117116

118117
ckpp:InvocationProcess a owl:Class ;
119118
rdfs:subClassOf ckpp:Process ;
120119
rdfs:label "Invocation Process"@en ;
121120
rdfs:comment "A computational process that unfolds over time when a kernel processes a job. Lifecycle: Acceptance → Processing → Completion."@en ;
122-
dc:description "Implemented in /core/src/Kernel.js:handleJob():69-126, finalize():165-213" ;
121+
dc:description "Kernel invocation process — tool execution lifecycle" ;
123122
ckp:implementationStatus "PARTIAL"^^xsd:string ;
124123
ckp:coverageScore "0.60"^^xsd:decimal ;
125124
ckp:criticalGap "No Process URN generation. Temporal parts not tracked."^^xsd:string .
@@ -167,14 +166,13 @@ ckpp:CompletedPhase a owl:Class ;
167166

168167
#################################################################
169168
# 2. Edge Communication Process (FUNDAMENTAL)
170-
# Implementation: /core/src/EdgeKernel.js:relayDirect()
171169
#################################################################
172170

173171
ckpp:EdgeCommunicationProcess a owl:Class ;
174172
rdfs:subClassOf ckpp:Process ;
175173
rdfs:label "Edge Communication Process"@en ;
176174
rdfs:comment "The FUNDAMENTAL process by which kernels interact - mediated by EdgeKernel. This is the ONLY way kernels can communicate (architectural constraint)."@en ;
177-
dc:description "Implemented in /core/src/EdgeKernel.js:relayDirect():183-236" ;
175+
dc:description "Edge communication process — inter-kernel message relay" ;
178176
dc:description "Also: EdgeRequestBuilder.js:createEdgeRequests():64-128" ;
179177
ckp:implementationStatus "PARTIAL"^^xsd:string ;
180178
ckp:coverageScore "0.65"^^xsd:decimal ;
@@ -232,14 +230,14 @@ ckpp:TypeValidatedPhase a owl:Class ;
232230
rdfs:subClassOf ckpp:TemporalPart ;
233231
rdfs:label "Type Validated Phase"@en ;
234232
rdfs:comment "EdgeKernel validates instance type against edge type_mapping"@en ;
235-
dc:description "Code: /core/src/EdgeKernel.js:validateSource():245-250" ;
233+
dc:description "Validates source kernel identity before accepting edge communication" ;
236234
ckp:implementationStatus "IMPLICIT"^^xsd:string .
237235

238236
ckpp:RoutedPhase a owl:Class ;
239237
rdfs:subClassOf ckpp:TemporalPart ;
240238
rdfs:label "Routed Phase"@en ;
241239
rdfs:comment "EdgeKernel creates symlink in target inbox (routing)"@en ;
242-
dc:description "Code: /core/src/EdgeKernel.js:createDestinationLink():332-362" ;
240+
dc:description "Establishes destination link for edge communication" ;
243241
ckp:implementationStatus "IMPLICIT"^^xsd:string .
244242

245243
ckpp:DeliveredPhase a owl:Class ;

docs/public/ontology/v3.5/relations.ttl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ ckpr:type_compatible_with a owl:ObjectProperty ;
206206
rdfs:comment "Instance type is compatible with Edge type_mapping"@en ;
207207
rdfs:domain ckp:Instance ;
208208
rdfs:range ckp:Edge ;
209-
dc:description "Validated by /core/src/EdgeKernel.js:validateSource():245-250" .
209+
dc:description "Validated during edge communication setup" .
210210

211211
ckpr:accepts_type a owl:ObjectProperty ;
212212
rdfs:label "accepts type"@en ;

0 commit comments

Comments
 (0)