Help us improve
Share bugs, ideas, or general feedback.
From personal-assistant
Audits Elle context system at ~/.claude/.context/core/ for staleness, contradictions, bloat, missing data, sync issues, and improvements. Use when responses feel generic, outdated, or after changes.
npx claudepluginhub kenneth-liao/ai-launchpad-marketplace --plugin personal-assistantHow this skill is triggered — by the user, by Claude, or both
Slash command
/personal-assistant:context-healthclaude-sonnet-4-6The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Audit the Elle context system at `~/.claude/.context/core/` for data quality issues.
Detects structural drift (stale paths, broken references, constitution violations) and semantic drift (outdated conventions, superseded decisions) in context files. Use after refactors or session starts.
Audits project configuration and documentation for drift, staleness, and broken references. Scans CLAUDE.md files, configs, plugin manifests, and knowledge files.
Audits project context files (CLAUDE.md, rules, knowledge) for progressive disclosure compliance: checks all knowledge files are reachable from rules, detects stale references, orphaned files, and CLAUDE.md index leakage.
Share bugs, ideas, or general feedback.
Audit the Elle context system at ~/.claude/.context/core/ for data quality issues.
Run each check in order. Report findings as a summary table at the end.
Read ~/.claude/.context/core/triggers.md:
Read ~/.claude/.context/core/session.md:
Read ~/.claude/.context/core/projects.md:
For each file in ~/.claude/.context/core/:
<guide> sections that could be filled with real datawc -l ~/.claude/.context/core/*.md
Read ~/.claude/.context/core/preferences.md and ~/.claude/.context/core/rules.md:
For each file, check if key sections are still placeholder text:
identity.md -- Basic Info, Professional, Personal Lifepreferences.md -- Communication, Working Stylerelationships.md -- any entries at all?triggers.md -- any upcoming events?workflows.md -- any workflows defined?Compare ~/.claude/rules/elle-core.md against source files:
head -5 ~/.claude/rules/elle-core.md
grep "Last synced" ~/.claude/rules/elle-core.md
If out of sync, recommend running /sync-context.
Read ~/.claude/.context/core/improvements.md:
Locate the evolve skill's platform capabilities reference:
EVOLVE_REF=""
# Source mode (marketplace repo)
if [ -f "<cwd>/personal-assistant/skills/evolve/references/platform-capabilities.md" ]; then
EVOLVE_REF="<cwd>/personal-assistant/skills/evolve/references/platform-capabilities.md"
else
# Deployed mode (plugin cache)
EVOLVE_REF=$(find ~/.claude/plugins/cache -path "*/personal-assistant/*/skills/evolve/references/platform-capabilities.md" 2>/dev/null | sort -V | tail -1)
fi
If found, read the ## System State section and check:
/evolve to check for obsolete skills"If reference file not found, skip with note: "Evolve reference files not found -- cannot check system freshness"
Recommend running /evolve if any flags are raised.
Present findings as:
| Check | Status | Details |
|---|---|---|
| Staleness | OK / Warning | [specific issues] |
| Bloat | OK / Warning | [file: line count] |
| Contradictions | OK / Warning | [specific conflicts] |
| Gaps | OK / Warning | [empty sections] |
| Sync | OK / Warning | [sync status] |
| Improvements | OK / Warning | [stale proposals] |
| System Freshness | OK / Warning | [evolve run recency, version drift] |
Recommended actions: List specific fixes the user can take, prioritized by impact.