From evolving-lite
Auto-activating session startup - reads memory, orients Claude, announces status. Triggers on session start or when user says "continue", "weiter", "resume".
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:
Evolving Lite v1.0 | First session | {prewarmed_count} pre-warmed experiences loaded
Ready to work. The system learns from your corrections automatically.
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 bunsdev/evolving-liteCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.