aim-freshness-report
Scan code-patterns collection for stale memories by comparing against GitHub code blob data
npx skills add majiayu000/claude-skill-registry --skill aim-freshness-report-hidden-history-ai-memory --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
```python """Freshness report skill: /aim-freshness-report Scans code-patterns collection and compares against GitHub code blob ground truth to detect stale memories. Usage: /aim-freshness-report # Scan all projects /aim-freshness-report my-project # Scan specific project """ from __future__ import annotations import os import sys import time _install_dir = os.path.expanduser("~/.ai-memory") sys.path.insert(0, os.path.join(_install_dir, "src")) from memory.config import get_config from memory.freshness import FreshnessReport, FreshnessTier, run_freshness_scan from memory.metrics_push import push_skill_metrics_async def format_freshness_report(report: FreshnessReport) -> str: """Format FreshnessReport as markdown table for skill output. Output format: 1. Summary header with counts 2. Tier breakdown table 3. Detailed results table (non-fresh only, sorted by severity) 4. Recommended actions Args: report: FreshnessReport from run_freshness_scan(). Returns: Markdown-formatted report string. """ lines: list[str] = [] # Header lines.append("## Freshness Report") lines.append("") lines.append( f"Scanned **{report.total_checked}** code-patterns memories " f"in {report.duration_seconds:.1f}s
What does the aim-freshness-report skill do?
Scan code-patterns collection for stale memories by comparing against GitHub code blob data
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill aim-freshness-report-hidden-history-ai-memory --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
