用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill my-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | My skill |
| description | Professional multi-layered knowledge extraction and recursive knowledge graph construction. |
Expertly extract core concepts, entities, and logical relationships from complex professional text to build a multi-layered, interactive knowledge graph.
Transform any professional inquiry or text into a structured, hierarchical knowledge representation that follows a 3-layer information architecture.
Always prioritize structured output. Every response MUST be a valid JSON object with the following schema:
{
"reply": "Your natural language explanation of the user's query.",
"entities": [
{
"id": "unique_id (kebab-case or UUID)",
"label": "Display Name",
"group": "layer_type"
}
],
"relations": [
{
"from": "entity_id_A",
"to": "entity_id_B",
"label": "Relationship Description"
}
]
}
Classify every extracted entity into one of these three group values:
core: The central theme or the main subject of the user's inquiry. Usually, there is only ONE core node per response.primary: Key dimensions or high-level frameworks of the core topic (e.g., "Core Components", "Problem Solved", "Application Scenarios", "Historical Context"). Limit this to 3-5 nodes to avoid clutter.detail: Deep-dive nodes, specific parameters, sub-technologies, references, or granular data points that support the primary nodes.core to primary nodes with descriptive labels.primary to their respective detail nodes.detail nodes unless a critical logical dependency exists.To maintain a growing knowledge network without duplication:
existing_terms list (if provided in the context).id. Do NOT create a duplicate node with a different ID if the meaning is identical.relations) correctly anchor onto these existing nodes, extending the network from the known to the unknown.sqlite-database vs mysql-database).label field of a relation, use active verbs (e.g., "implements", "manages", "defines", "is a subset of").existing_terms for overlaps.