用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kmshihab7878/claude-code-setup --skill understand-memory-sync命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Anti-over-engineering guardrail that activates when an AI coding agent expands scope, adds abstractions, or changes files the user did not request.
Write JavaScript code in n8n Code nodes. Use when writing JavaScript in n8n, using $input/$json/$node syntax, making HTTP requests with $helpers, working with dates using DateTime, troubleshooting Code node errors, or choosing between Code node modes.
Complete n8n skill — workflow building, node configuration, JavaScript/Python code nodes, expression syntax, validation, MCP tools, credentials, administration, Docker deployment, backup/restore, internal API, and troubleshooting. Auto-triggers on any n8n task including workflow creation, node configuration, code nodes, expressions, validation errors, credential management, instance administration, n8n setup, n8n upgrade, n8n backup, and n8n API usage.
基于 SOC 职业分类
正在显示 SKILL.md
| name | understand-memory-sync |
| description | Sync knowledge graph entities to Memory MCP for cross-session codebase awareness |
| argument-hint | ["project-path"] |
Sync the most important entities from a project's knowledge graph to the Memory MCP server, enabling cross-session codebase recall without re-analysis.
Locate the knowledge graph:
$ARGUMENTS contains a path, use that as the project directory.understand-anything/knowledge-graph.json/understand firstExtract key entities (top ~50-100 nodes by architectural importance):
module nodes (architectural boundaries)class nodes tagged as agent, core-module, or governanceCreate Memory MCP entities using mcp__memory__create_entities:
{project}:{node.name} (e.g., CoreMind:CoreMind)module → Architecture, class → Component, file → File, function → Function)Create Memory MCP relations using mcp__memory__create_relations:
imports edge between synced nodes → imports relationinherits edge → extends relationdepends_on edge between modules → depends_on relationcontains edge (module → key class) → contains relationAdd a project-level observation via mcp__memory__add_observations:
CoreMindReport what was synced:
Synced to Memory MCP:
- {N} entities created
- {M} relations created
- Key modules: {list}
- Key components: {list}
These entities are now available across sessions via mcp__memory__search_nodes.
Re-sync after running /understand on new changes (incremental update). The skill should check if entities already exist and update observations rather than creating duplicates.