From personal-assistant
Update the context system based on our conversation so far.
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 Imli's context system.
Scan the current conversation and update Imli'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 imli-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 prince-khanna/claude-code-plugins --plugin personal-assistantCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.