npx skills add majiayu000/claude-skill-registry --skill aim-purge-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 """Memory purge skill: /aim-purge Purge old memories from Qdrant collections with safety guards. Usage: /aim-purge --older-than 30d # Dry-run (preview) /aim-purge --older-than 30d --confirm # Execute purge /aim-purge --older-than 90d --collection code-patterns """ from __future__ import annotations import argparse import json import os import re import sys import time from datetime import datetime, timedelta, timezone from pathlib import Path _install_dir = os.path.expanduser("~/.ai-memory") sys.path.insert(0, os.path.join(_install_dir, "src")) from memory.config import ( COLLECTION_CODE_PATTERNS, COLLECTION_CONVENTIONS, COLLECTION_DISCUSSIONS, COLLECTION_JIRA_DATA, get_config, ) from memory.qdrant_client import get_qdrant_client from memory.metrics_push import push_skill_metrics_async from qdrant_client.models import ( FieldCondition, Filter, MatchValue, Range, ) ALL_COLLECTIONS = [ COLLECTION_CODE_PATTERNS, COLLECTION_CONVENTIONS, COLLECTION_DISCUSSIONS, COLLECTION_JIRA_DATA, ] def parse_duration(duration_str: str) -> timedelta: """Parse duration string like '30d', '2w', '3m', '1y' to timedelta. Args: duration_str: Duration in format <number><unit>. Returns: timedelta r
What does the aim-purge skill do?
Purge old memories from Qdrant collections with safety guards
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill aim-purge-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.
