← 返回 Skills 市场
Agent Ontology
作者
Fang, Chao
· GitHub ↗
· v1.0.0
· MIT-0
110
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install agent-ontology
功能描述
Create, update, and query typed entities and relations like Person, Project, and Task in a verifiable knowledge graph with validation.
使用说明 (SKILL.md)
Ontology Skill
Core Concept
A typed vocabulary + constraint system for representing knowledge as a verifiable graph.
When to Use
- "Remember that..." → Create/update entity
- "What do I know about X?" → Query graph
- "Link X to Y" → Create relation
- "Show all tasks for project Z" → Graph traversal
Storage
memory/ontology/graph.jsonl - append-only JSONL format
Core Types
- Person: name (required), email?, phone?, notes?
- Project: name (required), status?, goals[], description?
- Task: title (required), status (required), due?, priority?, assignee?
Relations
| Relation | From | To |
|---|---|---|
| has_owner | Project, Task | Person |
| assigned_to | Task | Person |
| belongs_to | Task | Project |
| blocks | Task | Task (acyclic) |
CLI Commands
python3 scripts/ontology.py create --type Person --props '{"name":"Alice"}'
python3 scripts/ontology.py list --type Person
python3 scripts/ontology.py query --type Task --where '{"status":"open"}'
python3 scripts/ontology.py get --id p_001
python3 scripts/ontology.py relate --from proj_001 --rel has_owner --to p_001
Validation
- Required properties must exist
- Enum values from predefined sets
- No circular dependencies for acyclic relations
安全使用建议
Do not treat this as a complete approval; rerun the review in an environment where metadata.json and artifact/ can be read.
能力标签
能力评估
Purpose & Capability
Workspace command execution failed before files could be read, so purpose and capabilities could not be verified from artifact evidence.
Instruction Scope
No SKILL.md content was available for scope review due the workspace inspection failure.
Install Mechanism
No install metadata or artifact manifest content was available for review.
Credentials
Environment access could not be assessed because artifact contents were not readable through the available tool session.
Persistence & Privilege
No artifact-backed persistence or privilege concern was identified, but the relevant files could not be inspected.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-ontology - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-ontology触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of agent-ontology skill.
- Provides a typed vocabulary and constraint system for knowledge graphs.
- Supports core entity types: Person, Project, and Task.
- Defines key relations between entities, including ownership, assignment, and task dependencies.
- Stores data in an append-only JSONL file at memory/ontology/graph.jsonl.
- Offers CLI commands for creating, querying, and relating entities.
- Includes basic validation for required fields, enums, and acyclic relations.
元数据
常见问题
Agent Ontology 是什么?
Create, update, and query typed entities and relations like Person, Project, and Task in a verifiable knowledge graph with validation. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 110 次。
如何安装 Agent Ontology?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-ontology」即可一键安装,无需额外配置。
Agent Ontology 是免费的吗?
是的,Agent Ontology 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agent Ontology 支持哪些平台?
Agent Ontology 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Ontology?
由 Fang, Chao(@biociao)开发并维护,当前版本 v1.0.0。
推荐 Skills