Agent Skills
› semantica-agi/semantica
› ontology
ontology
GitHub管理 Semantica 知识图谱的本体定义与验证。支持描述本体概念详情(属性、关系等),以及基于图或模式文件验证数据合规性并返回错误修正建议。
Trigger Scenarios
查询本体概念详细信息
验证知识图谱或Schema的合规性
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


