/memtrace-daily
Orient at the start of a coding session, review what recently changed in a repository, and self-audit after completing work. Use when the user wants the daily briefing (what changed in the last 24h with complexity deltas), hotspots (complexity × churn refactor priorities), or a
$ npx -y skills add syncable-dev/memtrace-public --skill memtrace-daily --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/memtrace-daily
Context preview
The summary Claude sees to decide when to auto-load this skill.
Orient at the start of a coding session, review what recently changed in a repository, and self-audit after completing work. Use when the user wants the daily briefing (what changed in the last 24h with complexity deltas), hotspots (complexity × churn refactor priorities), or a
SKILL.md
memtrace-daily.SKILL.mdname: memtrace-daily
description: "Orient at the start of a coding session, review what recently changed in a repository, and self-audit after completing work. Use when the user wants the daily briefing (what changed in the last 24h with complexity deltas), hotspots (complexity × churn refactor priorities), or a session review (clean/review/risky verdicts per editing session). For catching up after time away or resuming a prior session, use memtrace-session-continuity; daily is the last-24h briefing + hotspots + self-audit. Do not reconstruct recent activity from git log; Memtrace diffs the graph at save granularity."
Overview
Session bookends: orient before you start, audit before you finish. All three tools read the bi-temporal version history — every save is a change event with complexity deltas, so "what happened" includes "did it make the code better or worse".
Quick Reference
| Tool | Purpose | |------|---------| | `get_daily_briefing` | Last 24h diffed at graph level: changed functions with complexity deltas, new functions, new endpoints, per-module distribution | | `find_hotspots` | Functions ranked by complexity × recent changes — the ordered refactor priority list | | `review_agent_sessions` | Editing sessions clustered by actor, judged clean / review / risky |
> **Parameter types:** MCP parameters are strictly typed. Numbers
Full parameter spec for every Memtrace tool: `references/mcp-parameters.md` (bundled at the memtrace-skills plugin root). > (`window_hours`, `window_days`, `top_n`) must be JSON numbers.
Steps
1. Orient at session start
`get_daily_briefing` with `repo_id`. Read the summary first:
- `net_cyclomatic_delta` positive → recent work added complexity; check
whether your task touches the same area before piling on.
- `changed` rows with large positive deltas → recently-destabilised code;
prefer `preflight_check` before editing anything in that list.
2. When the task is refactoring or cleanup
`find_hotspots` — work the list top-down. A hotspot you simplify pays off on every future change; a complex-but-untouched function can wait.
3. Self-audit before declaring work done
`review_agent_sessions` and find YOUR session (newest, your agent id):
- `clean` — done; state the verdict in your summary.
- `review` — re-read your top_changes rows; justify each complexity
increase or simplify it.
- `risky` — do not hand off yet. You added >30 net cyclomatic or touched
a >50-complexity function; extract helpers / flatten nesting first, then re-run the review.
The standard a session should meet
Net complexity delta ≤ 0 unless the task genuinely required new branching (new feature with new cases). "I left the code simpler than I found it" is verifiable here — verify it.
Output
| Tool | Returns | |------|---------| | `get_daily_briefing` | summary with `net_cyclomatic_delta`; `changed` rows (function + complexity delta); new functions, new endpoints, per-module distribution | | `find_hotspots` | ranked list of functions scored by complexity × recent changes | | `review_agent_sessions` | per-session verdict (`clean` / `review` / `risky`) with `top_changes` rows and net cyclomatic delta |
Read more
name: memtrace-daily description: "Orient at the start of a coding session, review what recently changed in a repository, and self-audit after completing work. Use when the user wants the daily briefing (what changed in the last 24h with complexity deltas), hotspots (complexity × churn refactor priorities), or a session review (clean/review/risky verdicts per editing session). For catching up after time away or resuming a prior session, use memtrace-session-continuity; daily is the last-24h briefing + hotspots + self-audit. Do not reconstruct recent activity from git log; Memtrace diffs the graph at save granularity."
Overview
Session bookends: orient before you start, audit before you finish. All three tools read the bi-temporal version history — every save is a change event with complexity deltas, so "what happened" includes "did it make the code better or worse".
Quick Reference
| Tool | Purpose | |------|---------| | `get_daily_briefing` | Last 24h diffed at graph level: changed functions with complexity deltas, new functions, new endpoints, per-module distribution | | `find_hotspots` | Functions ranked by complexity × recent changes — the ordered refactor priority list | | `review_agent_sessions` | Editing sessions clustered by actor, judged clean / review / risky |
> **Parameter types:** MCP parameters are strictly typed. Numbers
Full parameter spec for every Memtrace tool: `references/mcp-parameters.md` (bundled at the memtrace-skills plugin root). > (`window_hours`, `window_days`, `top_n`) must be JSON numbers.
Steps
1. Orient at session start
`get_daily_briefing` with `repo_id`. Read the summary first:
- `net_cyclomatic_delta` positive → recent work added complexity; check
whether your task touches the same area before piling on.
- `changed` rows with large positive deltas → recently-destabilised code;
prefer `preflight_check` before editing anything in that list.
2. When the task is refactoring or cleanup
`find_hotspots` — work the list top-down. A hotspot you simplify pays off on every future change; a complex-but-untouched function can wait.
3. Self-audit before declaring work done
`review_agent_sessions` and find YOUR session (newest, your agent id):
- `clean` — done; state the verdict in your summary.
- `review` — re-read your top_changes rows; justify each complexity
increase or simplify it.
- `risky` — do not hand off yet. You added >30 net cyclomatic or touched
a >50-complexity function; extract helpers / flatten nesting first, then re-run the review.
The standard a session should meet
Net complexity delta ≤ 0 unless the task genuinely required new branching (new feature with new cases). "I left the code simpler than I found it" is verifiable here — verify it.
Output
| Tool | Returns | |------|---------| | `get_daily_briefing` | summary with `net_cyclomatic_delta`; `changed` rows (function + complexity delta); new functions, new endpoints, per-module distribution | | `find_hotspots` | ranked list of functions scored by complexity × recent changes | | `review_agent_sessions` | per-session verdict (`clean` / `review` / `risky`) with `top_changes` rows and net cyclomatic delta |
Structural memory for AI coding agents. Bi-temporal graph, MCP-native, zero LLM calls. Cursor · Claude Code · Codex · Hermes · VS Code · Windsurf.
Repo: syncable-dev/memtrace-public
Other skills on memtrace-public.
- /memtrace-api-topology
Map API endpoints, outbound HTTP calls, and cross-repo service topology in indexed source code. Use when the user asks about API endpoints, HTTP routes, fetch/client calls, REST surface, service dependencies, cross-repo dependencies, or API topology. Do not use Grep, Glob, rg,
Open skill - /memtrace-change-impact-analysis
Compute what a planned source-code change will break — blast radius, affected processes, cross-repo callers, temporal stability, and Cortex decision-memory constraints — and produce a risk-rated change plan. Use for multi-symbol or multi-part edits, refactors, API changes,
Open skill - /memtrace-cochange
Find files that historically co-change with a target symbol or file, ranked by co-occurrence across git episodes. Use when the user asks about historical coupling, co-change, what changes with this, hidden dependencies, or what else needs to move for source code. Do not use git
Open skill - /memtrace-code-review
Review GitHub pull requests with Memtrace's local graph-backed review engine. Use when the user asks to review a GitHub pull request, run Memtrace code review, post Memtrace review comments, create a PR with a review step, or publish local graph-backed review findings to GitHub.
Open skill - /memtrace-codebase-exploration
Map an indexed source-code repo into a structured overview — scale, communities, central symbols, execution flows, API surface, recent activity. Use when the user wants to explore, understand, onboard to, map, or get an overview of an indexed source-code repo, architecture,
Open skill - /memtrace-continuous-memory
Keep the Memtrace index fresh while editing by watching a repo for live, incremental re-indexing. Use when the user asks to keep Memtrace fresh while editing, watch a repo, enable live or incremental indexing, set up always-on memory (meaning Memtrace index watching, not generic
Open skill

