From personal-assistant
Scans conversation to update ~/.claude/.context/ files with user identity, preferences, rules, workflows, projects, relationships, triggers; auto-syncs core context via Python script.
How this skill is triggered — by the user, by Claude, or both
Slash command
/personal-assistant:update-contextThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scan the current conversation and update Elle's context system.
Scan the current conversation and update Elle's context system.
Check that the context system has been initialized:
ls ~/.claude/.context/
If not, run /personal-assistant:setup first.
Read ~/.claude/.context/context-update.md for the full update philosophy.
Review the current conversation for:
For each finding, determine the destination file:
| Type | Destination |
|---|---|
| Identity info | ~/.claude/.context/core/identity.md |
| Preferences | ~/.claude/.context/core/preferences.md |
| Corrections | ~/.claude/.context/core/rules.md |
| Workflows | ~/.claude/.context/core/workflows.md |
| Relationships | ~/.claude/.context/core/relationships.md |
| Dates/deadlines | ~/.claude/.context/core/triggers.md |
| Project changes | ~/.claude/.context/core/projects.md |
| Session state | ~/.claude/.context/core/session.md |
Write updates to the appropriate files. Follow each file's update policy (see context-update.md).
If any of these files were updated:
rules.mdpreferences.mdidentity.mdprojects.mdAutomatically run the sync-context script to regenerate elle-core.md:
uv run python ${CLAUDE_PLUGIN_ROOT}/skills/sync-context/scripts/sync_context.py
Report what changed in the sync.
Briefly summarize what was updated and which files were modified.
npx claudepluginhub kenneth-liao/ai-launchpad-marketplace --plugin personal-assistantRegenerates ~/.claude/rules/elle-core.md from context files (identity.md, preferences.md, rules.md, projects.md). Run after /update-context, /upgrade, or manual edits to sync session rules and report changes.
Captures conversation outcomes into CLAUDE.md — decisions, preferences, patterns, and conventions established during the session.
Optimizes Claude Code context-window usage for accuracy and cost. Helps when hitting context limits, structuring prompts, or trimming injected content.