From evolving-lite
Reads session memory, orients on project context, announces status, and auto-resumes on commands like 'continue'. Useful for maintaining continuity across sessions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/evolving-lite:system-bootThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
On every session start, perform this bootup sequence:
On every session start, perform this bootup sequence:
Read ${CLAUDE_PLUGIN_ROOT}/_memory/index.json for:
active_project: Which project the user was working onlast_session: When the last session wasIf active_project is set, read ${CLAUDE_PLUGIN_ROOT}/_memory/projects/{active_project}.json for:
progress: Array of recent progress entriesnext_step: What was planned nextfailures: Known blockers or failuresBased on memory:
Output a compact status line:
Evolving Lite | Session {n} | Tier {tier} | {experience_count} experiences
Last: {last_progress_summary}
Next: {next_step}
If this is the first session ever (no progress), announce with a short, visible cold-start sequence so the system does not feel inert on day 1:
Evolving Lite v1.0 | First session
[1/3] Loading {prewarmed_count} pre-warmed experiences ... ok
[2/3] Tier 1 (Safety) active: context warnings, bash security, hook sentinels
[3/3] Self-Star Doctor: wiring verified (run /health for the full board)
Ready. The system learns from your corrections automatically and self-tunes its
delegation routing from your sessions (see "Self-Evolution is ON" in the README).
The Self-Star Doctor also runs a quick wiring + preflight check automatically on this
first session. If it reports a missing prerequisite (most often Kairn), surface that to
the user and point them at /health and pip install kairn-ai.
If the user hasn't specified what to work on, suggest the next_step from memory. Don't start multiple tasks - pick one.
When the user says "continue", "weiter", "weitermachen", "fortsetzen", or "resume":
${CLAUDE_PLUGIN_ROOT}/_memory/sessions/When a session ends naturally (user says goodbye, or Stop hook fires):
npx claudepluginhub primeline-ai/evolving-liteRebuilds agent identity after cold starts: progressive context loading, fresh-vs-continuation detection, calibration, and coherence verification. Use at session start or after interruptions.
Saves session summaries, decisions, pending tasks, and auto-loads a briefing on the next Claude Code session for continuity across sessions.
Bootstraps a Claude Code session by loading shared memories and team standards from the Mori server. Invoke at session start or after context compaction with --post-compact.