{
  "@context": { "aku": "https://aiobn.com/schema/v1/", "schema": "https://schema.org/" },
  "@type": "aku:Kernel",
  "@id": "aku:kernel",
  "aku:protocolVersion": "1.0.0",
  "aku:worldEndpoint": "/api/v1/world.json",
  "aku:trajectoriesEndpoint": "/api/v1/trajectories/",
  "aku:observationsEndpoint": "/api/v1/observations/",
  "aku:skillsEndpoint": "/api/v1/skills/",
  "aku:primitives": ["State", "Transition", "Trajectory", "Observation", "Projection"],
  "aku:properties": [
    { "@id": "aku:confidence", "@type": "xsd:float", "description": "置信度 [0,1]" },
    { "@id": "aku:currentConfidence", "@type": "xsd:float", "description": "实时衰减置信度" },
    { "@id": "aku:halfLife", "@type": "xsd:integer", "description": "衰减半衰期（步数）" },
    { "@id": "aku:decayFunction", "@type": "xsd:string", "description": "衰减函数类型（exponential/linear/step）" },
    { "@id": "aku:worldVersion", "@type": "xsd:integer", "description": "世界状态版本号" },
    { "@id": "aku:worldVersionCreated", "@type": "xsd:integer", "description": "条目创建时的世界版本" },
    { "@id": "aku:worldVersionRange", "@type": "aku:VersionRange", "description": "条目有效期版本范围" },
    { "@id": "aku:compressedAs", "@type": "aku:Skill", "description": "被压缩为的技能" },
    { "@id": "aku:sourceTrajectories", "@type": "aku:Trajectory", "description": "来源轨迹列表" },
    { "@id": "aku:transitionType", "@type": "xsd:string", "description": "转移类型（action/decision/event）" },
    { "@id": "aku:hypothetical", "@type": "xsd:boolean", "description": "是否反事实路径" },
    { "@id": "aku:trigger", "@type": "xsd:string", "description": "技能触发条件" },
    { "@id": "aku:procedure", "@type": "aku:Procedure", "description": "可执行步骤序列" },
    { "@id": "aku:successRate", "@type": "xsd:float", "description": "技能成功率" },
    { "@id": "aku:lossiness", "@type": "xsd:float", "description": "压缩损失度 [0,1]" },
    { "@id": "aku:projectionType", "@type": "xsd:string", "description": "投影类型（human/agent/token）" },
    { "@id": "aku:audience", "@type": "xsd:string", "description": "投影受众（human/agent）" },
    { "@id": "aku:format", "@type": "xsd:string", "description": "投影格式（html/json/tokens）" },
    { "@id": "aku:scope", "@type": "xsd:string", "description": "观测适用范围" },
    { "@id": "aku:reasoning", "@type": "xsd:string", "description": "推理文本" },
    { "@id": "aku:input", "@type": "aku:State", "description": "输入状态" },
    { "@id": "aku:output", "@type": "aku:State", "description": "输出状态" },
    { "@id": "aku:delta", "@type": "aku:Delta", "description": "状态变化量" },
    { "@id": "aku:options", "@type": "aku:State", "description": "决策选项集" },
    { "@id": "aku:chosen", "@type": "aku:State", "description": "被选择的选项" },
    { "@id": "aku:steps", "@type": "aku:Step", "description": "步骤序列" },
    { "@id": "aku:source", "@type": "xsd:string", "description": "来源标识" },
    { "@id": "aku:name", "@type": "xsd:string", "description": "名称" },
    { "@id": "aku:content", "@type": "xsd:string", "description": "内容文本" },
    { "@id": "aku:target", "@type": "aku:State", "description": "目标状态" }
  ],
  "aku:axioms": [
    "Experience Graph > Knowledge Graph",
    "World Versioning > Timestamping",
    "Decay is Natural"
  ]
}
