From cortexmd
Use cortexmd's cheap code-navigation and memory tools instead of Read/Grep when working in an indexed repo or when knowledge worth recalling is created. Triggers on code search/navigation, "remember this", and session recall.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cortexmd:cortexmdThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
cortexmd exposes MCP tools that are far cheaper than Read/Grep for TS/JS/Python/Rust/Go,
cortexmd exposes MCP tools that are far cheaper than Read/Grep for TS/JS/Python/Rust/Go, plus a persistent memory + knowledge graph. Prefer them.
code_symbol_search(query, repo) — find symbols by name/signature/docstringcode_file_outline(repo, path) — file overview without reading the bodycode_symbol_get(id) — body of one symbol (capped ~200 lines)code_symbol_callers(id) / code_symbol_callees(id) — call-graph navigationcode_change_impact(id, depth) — transitive callers ("if I change X, who breaks?")code_call_chain(source, target) — shortest call pathcode_find_semantic_duplicates(repo) / code_find_dead_code(repo) / code_find_import_cycles(repo)Read/Grep are the fallback — only when the symbol is missing from the index or you need literal bytes (comments, non-source content).
memory_wakeup(agentName, preset) — boot context (preset: tiny|standard|full)memory_recall(query) — hybrid recall over memories + notesmemory_store(content, ...) — store a durable fact/decision/observation (auto-links + KG seed)notes_upsert / notes_get / notes_search — vault noteskg_query / graph_neighbors / graph_traverse — knowledge-graph navigationmemory_dream — consolidation: decay, archive, and reconcile cold notes into projectscortexmd recall --hook recalls relevant memory per prompt (the sweep).grep/cat/head/tail on indexed repos to code-nav.These require the cortexmd binary on PATH and a running cortexmd server (see the
plugin README).
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub leicas/cortexmd --plugin cortexmd