Agent skill
update-context
Update the context system based on our conversation so far.
Install this agent skill to your Project
npx add-skill https://github.com/kenneth-liao/ai-launchpad-marketplace/tree/main/personal-assistant/skills/update-context
SKILL.md
Context Update
Scan the current conversation and update Elle's context system.
Prerequisites
Check that the context system has been initialized:
ls ~/.claude/.context/
If not, run /personal-assistant:setup first.
Update Flow
1. Read update instructions
Read ~/.claude/.context/context-update.md for the full update philosophy.
2. Scan conversation
Review the current conversation for:
- New facts about the user (identity, relationships)
- New preferences or workflow patterns
- Corrections to Claude's behavior (rules)
- Project status changes
- Important dates or deadlines (triggers)
- Session context updates
3. Classify and route
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 |
4. Write confirmed updates
Write updates to the appropriate files. Follow each file's update policy (see context-update.md).
5. Auto-sync
If any of these files were updated:
rules.mdpreferences.mdidentity.mdprojects.md
Automatically 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.
6. Summary
Briefly summarize what was updated and which files were modified.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
test-skill
Run or generate test suites for any skill. Use when testing a skill before deployment, after making changes, before/after plugin upgrades, when validating skill behavior, or when the user says "test skill", "run skill tests", "generate tests for skill", or "check for regressions".
upgrade-plugin
Upgrade a plugin's skills, hooks, and patterns to align with latest Claude Code capabilities and best practices. Use when a plugin needs modernization, after Claude Code updates, or when the user says "upgrade plugin", "modernize plugin", or "update plugin to latest patterns".
skill-retro
Use when reviewing how skills performed during a session, when the user wants to analyze skill invocations and identify improvements, or when the user says "skill retro", "review skills", "how did skills do", "improve this skill", or "skill retrospective".
view-team-session
Generate a self-contained HTML viewer for any Claude Code session, including agent team sessions with full inter-agent DM timelines. Use whenever the user asks to "view a session", "visualize a conversation", "show me what happened in session X", "generate a session viewer", "replay a session", "show me what my agents did", "session replay", "team timeline", or references viewing/inspecting Claude Code JSONL logs. Also use when the user provides a session ID and wants to see the conversation.
analyze-team-session
Use when reviewing an agent team session export for quality, when asked to "analyze this team session", "review my agent team run", "what went wrong with this session", "how can I improve my agent team usage", or when provided a markdown team session transcript and asked for feedback on agent teams effectiveness.
youtube-data
Retrieve YouTube data using the YouTube Data API. Use when you need to search videos, get video or channel details, fetch transcripts, read comments, find trending or related content, or when the user mentions 'YouTube data', 'video stats', 'transcript', or 'channel info'.
Didn't find tool you were looking for?