Agent Skills
› semantica-agi/semantica
› ontology
ontology
GitHub管理语义网本体的定义、概念详情查询及验证。支持展示概念属性与关系,以及基于模式文件对知识图谱或数据进行校验并返回错误修正建议。
Trigger Scenarios
查询本体概念详情
验证知识图谱数据合规性
检查本体模式文件
Install
npx skills add semantica-agi/semantica --skill ontology -g -y
SKILL.md
Frontmatter
{
"name": "ontology",
"description": "Manage ontology schemas, concepts, relationships, and alignments for Semantica knowledge graphs."
}
/semantica:ontology
Manage ontology definitions and validation. Usage: /semantica:ontology <task> [args]
$ARGUMENTS = task + optional ontology item or schema file.
describe <concept>
Show ontology concept details.
from semantica.ontology import OntologyManager
manager = OntologyManager()
concept = manager.get_concept(concept_name)
Output: properties, relationships, inherited types, and examples.
validate [--schema <file>]
Validate the graph or schema against the ontology.
result = manager.validate_graph(graph=graph, schema_file=schema_file)
Return: validation status, errors, and correction suggestions.
Version History
- 9094f1e Current 2026-07-05 09:26


