Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计通过

open-ontologies开放本体

Agent Skill

open-ontologies 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,949

周安装

423

GitHub Stars

公开资料未说明

下载量

3,486
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:open-ontologies(开放本体)
来源仓库:https://github.com/fabio-rovai/open-ontologies
安装命令:
openclaw skills install open-ontologies
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install open-ontologies

简介

open-ontologies 支持 RDF/OWL 本体的构建与管理。

  • 基于内存 Oxigraph 三重存储实现高效查询。
  • 提供 39 多种 MCP 工具用于知识图谱工程。
  • 安装前需确认是否支持 SPARQL 查询接口。
  • 建议核实本体导入导出格式兼容性。open-ontologies 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
open-ontologies
version
0.5.1
description
>
tags
metadata
openclaw
requires
mcp
description
>
Install
cargo install open-ontologies OR download binary from
https
//github.com/fabio-rovai/open-ontologies/releases
config
command
open-ontologies
args
["serve"]
bins
network
direction
outbound
optional
true
direction
outbound
optional
true
notes
>

Open Ontologies

AI-native ontology engineering. Generate OWL/RDF directly, validate with MCP tools, iterate until clean, govern with a Terraform-style lifecycle.

Prerequisites

This skill requires the Open Ontologies MCP server to provide the onto_* tools.

Install: cargo install open-ontologies or download from GitHub releases

MCP config (add to .mcp.json or Claude settings):

{
  "mcpServers": {
    "open-ontologies": {
      "command": "open-ontologies",
      "args": ["serve"]
    }
  }
}

No credentials needed. All processing runs locally in an in-memory Oxigraph triple store. Network access is only used when you explicitly call onto_pull (fetch remote ontology) or onto_push (send to SPARQL endpoint) with a URL you provide. Monitor alerts (onto_monitor) are logged to stdout only.

Core Workflow

When building or modifying ontologies, follow this workflow. Decide which tools to call and in what order based on results -- this is not a fixed pipeline.

1. Generate

  • Understand the domain requirements (natural language, competency questions, methodology constraints)
  • Generate Turtle/OWL directly -- Claude knows OWL, RDF, BORO, 4D modeling natively
  • For complex methodologies, ask for background documents or constraints

2. Validate and Load

  • Call onto_validate on the generated Turtle -- if it fails, fix syntax errors and re-validate
  • Call onto_load to load into the Oxigraph triple store
  • Call onto_stats to verify class count, property count, triple count match expectations

3. Verify

  • Call onto_lint to check for missing labels, comments, domains, ranges -- fix any issues found
  • Call onto_query with SPARQL to verify structure (expected classes, subclass hierarchies, competency questions)
  • If a reference ontology exists, call onto_diff to compare

4. Iterate

  • If any step reveals problems, fix the Turtle and restart from step 2
  • Continue until validation passes, stats match, lint is clean, and SPARQL queries return expected results

5. Persist

  • Call onto_save to write the final ontology to a .ttl file
  • Call onto_version to save a named snapshot for rollback

Ontology Lifecycle (Terraform-style)

For evolving ontologies in production:

  1. Plan -- onto_plan shows added/removed classes, blast radius, risk score. Check onto_lock for protected IRIs.
  2. Enforce -- onto_enforce with a rule pack (generic, boro, value_partition) checks design pattern compliance.
  3. Apply -- onto_apply with mode safe (clear + reload) or migrate (add owl:equivalentClass bridges).
  4. Monitor -- onto_monitor runs SPARQL watchers with threshold alerts. Use onto_monitor_clear if blocked.
  5. Drift -- onto_drift compares versions with rename detection and self-calibrating confidence.

Data Extension Workflow

When applying an ontology to external data:

  1. onto_map -- generate mapping config from data schema + loaded ontology
  2. onto_ingest -- parse structured data (CSV, JSON, NDJSON, XML, YAML, XLSX, Parquet) into RDF
  3. onto_shacl -- validate against SHACL shapes (cardinality, datatypes, classes)
  4. onto_reason -- run RDFS or OWL-RL inference, materializing inferred triples
  5. Or use onto_extend to run the full pipeline: ingest, SHACL validate, reason in one call

Clinical Terminology Support

For healthcare ontologies:

  • onto_crosswalk -- look up mappings between ICD-10, SNOMED CT, and MeSH
  • onto_enrich -- add skos:exactMatch triples linking classes to clinical codes
  • onto_validate_clinical -- check class labels against clinical crosswalk terminology

Ontology Alignment

For aligning two ontologies:

  • onto_align -- detect alignment candidates (equivalentClass, exactMatch, subClassOf) using 6 weighted signals
  • onto_align_feedback -- accept/reject candidates to self-calibrate confidence weights

Tool Reference

ToolWhen to use
onto_validateAfter generating or modifying Turtle -- always validate first
onto_loadAfter validation passes -- loads into triple store
onto_statsAfter loading -- sanity check on counts
onto_lintAfter loading -- catches missing labels, domains, ranges
onto_queryVerify structure, answer competency questions
onto_diffCompare against a reference or previous version
onto_savePersist ontology to a file
onto_convertConvert between formats (Turtle, N-Triples, RDF/XML, N-Quads, TriG)
onto_clearReset the store before loading a different ontology
onto_pullFetch ontology from a remote URL or SPARQL endpoint
onto_pushPush ontology to a SPARQL endpoint
onto_importResolve and load owl:imports chains
onto_versionSave a named snapshot before making changes
onto_historyList saved version snapshots
onto_rollbackRestore a previous version
onto_ingestParse structured data into RDF and load into store
onto_mapGenerate mapping config from data schema + ontology
onto_shaclValidate data against SHACL shapes
onto_reasonRun RDFS or OWL-RL inference
onto_extendFull pipeline: ingest, SHACL validate, reason
onto_planShow added/removed classes, blast radius, risk score
onto_applyApply changes in safe or migrate mode
onto_lockProtect production IRIs from removal
onto_driftCompare versions with rename detection
onto_enforceDesign pattern checks: generic, boro, value_partition, or custom
onto_monitorRun SPARQL watchers with threshold alerts
onto_monitor_clearClear blocked state after resolving alerts
onto_crosswalkLook up clinical terminology mappings (ICD-10, SNOMED, MeSH)
onto_enrichAdd skos:exactMatch triples linking to clinical codes
onto_validate_clinicalCheck class labels against clinical terminology
onto_alignDetect alignment candidates between two ontologies
onto_align_feedbackAccept/reject alignment candidates for self-calibrating weights
onto_lineageView session lineage trail (plan, enforce, apply, monitor, drift)
onto_lint_feedbackAccept/dismiss lint issues to teach suppression
onto_enforce_feedbackAccept/dismiss enforce violations to teach suppression

Usage Examples

Build a pizza ontology from scratch

Build me a pizza ontology with classes for Pizza, PizzaBase (ThinAndCrispy, DeepPan),
PizzaTopping (Mozzarella, Tomato, Pepperoni, Mushroom), and properties hasBase, hasTopping.
Include rdfs:labels and rdfs:comments on everything. Validate and run competency queries
to check I can ask "what toppings does a Margherita have?"

Load and query an existing ontology

Load the ontology from https://www.w3.org/TR/owl-guide/wine.rdf, show me stats,
lint it, and run a SPARQL query to find all subclasses of Wine.

Evolve an ontology safely

I need to add a new class "GlutenFreePizza" as a subclass of Pizza with a restriction
that hasBase only GlutenFreeBase. Plan the change, enforce against generic rules,
and apply in safe mode.

Ingest CSV data into a knowledge graph

I have a CSV of employees with columns: name, department, role, start_date.
Map it to the loaded HR ontology and ingest it. Then validate with SHACL shapes
and run inference to materialize department hierarchies.

Align two ontologies

Load schema.org and my company ontology. Run onto_align to find equivalentClass
and exactMatch candidates. I'll review and give feedback to calibrate the weights.

Key Principle

Dynamically decide the next tool call based on what the previous tool returned. If onto_validate fails, fix and retry. If onto_stats shows wrong counts, regenerate. If onto_lint finds missing labels, add them. The MCP tools are individual operations -- Claude is the orchestrator.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.4%
按下载量换算2,663

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills