基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jr2804/mcp-config-converter --skill knowledge-management命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | knowledge-management |
| description | Universal knowledge storage and retrieval patterns using memory graph |
| license | MIT |
| compatibility | opencode |
| metadata | {"related_issue_tracking":"For tracking knowledge-related tasks, use skill `issue-tracking`","related_mcp_servers":"For MCP server integration, use skill `mcp-servers`"} |
Provide universal patterns for storing, retrieving, and managing project knowledge across different contexts and projects.
Store memories on these universal events:
# Universal memory fields
memory:
type: solution | problem | code_pattern | fix | error | workflow
title: "Specific, searchable title (not generic)"
content: "Detailed explanation with context"
tags: ["project-agnostic", "universal", "pattern"]
importance: 0.8 # 0.8+ critical, 0.5-0.7 standard, 0.3-0.4 minor
relationships: ["SOLVES:problem-1", "RELATED_TO:pattern-5"]
# Universal knowledge recall
from memorygraph import recall_memories, search_memories
# Fuzzy recall for conceptual queries
results = recall_memories(
query="timeout handling patterns",
memory_types=["solution", "pattern"]
)
# Exact search for specific terms
exact_results = search_memories(
tags=["timeout", "pattern"],
min_importance=0.7
)
Use this skill when:
# Universal knowledge storage
store_memory(
type="code_pattern",
title="Universal timeout handling pattern",
content="""
def with_timeout(func, timeout=5, default=None):
try:
return func()
except TimeoutError:
return default
""",
tags=["python", "timeout", "pattern", "universal"],
importance=0.9
)
# Universal relationship mapping
create_relationship(
from_memory_id="solution-timeout-pattern",
to_memory_id="problem-slow-api",
relationship_type="SOLVES",
context="Pattern addresses API timeout issues"
)
Designed for: