From sundial-org-awesome-openclaw-skills-4
Guides through 10 psychological sessions to fix life in one day, based on Dan Koe's article. Invoke directly with /life or /architect; auto-activates on relevance.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
10 psychological sessions based on Dan Koe's viral article.
README.mdreferences/sessions.mdreferences/sessions/en/01-anti-vision.mdreferences/sessions/en/02-hidden-goals.mdreferences/sessions/en/03-identity-tracer.mdreferences/sessions/en/04-lifestyle-audit.mdreferences/sessions/en/05-dissonance-engine.mdreferences/sessions/en/06-cybernetic-debugger.mdreferences/sessions/en/07-ego-navigator.mdreferences/sessions/en/08-game-architect.mdreferences/sessions/en/09-conditioning-excavator.mdreferences/sessions/en/10-one-day-reset.mdreferences/sessions/ru/01-anti-vision.mdreferences/sessions/ru/02-hidden-goals.mdreferences/sessions/ru/03-identity-tracer.mdreferences/sessions/ru/04-lifestyle-audit.mdreferences/sessions/ru/05-dissonance-engine.mdreferences/sessions/ru/06-cybernetic-debugger.mdreferences/sessions/ru/07-ego-navigator.mdreferences/sessions/ru/08-game-architect.mdGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
10 psychological sessions based on Dan Koe's viral article.
Based on:
Guides users through 10 structured sessions:
| Command | Action |
|---|---|
/life | Start or continue (shows intro for new users) |
/life ru | Start in Russian |
/life status | Show progress |
/life session N | Jump to session N |
/life reset | Start over |
/lifeStep 1: Check if intro needed
bash scripts/handler.sh intro en $WORKSPACE
If showIntro: true โ Send intro message with image and "๐ Jump into the rabbit hole" button (life:begin)
If showIntro: false โ Run start and show current phase
Step 2: Get current state
bash scripts/handler.sh start en $WORKSPACE
Step 3: Format and show to user:
๐ง **Life Architect** โ Session {session}/10
**{title}**
Phase {phase}/{totalPhases}
โโโโโโโโโโโโโโโโโโโโโโโโโโโ
{content}
โโโโโโโโโโโโโโโโโโโโโโโโโโโ
Step 4: When user responds, save and advance:
bash scripts/handler.sh save "USER_RESPONSE" $WORKSPACE
handler.sh intro [en|ru] # Check if should show intro
handler.sh start [en|ru] # Start/continue session
handler.sh status # Progress JSON
handler.sh session N # Jump to session N
handler.sh save "text" # Save response & advance
handler.sh skip # Skip current phase
handler.sh reset # Clear all progress
handler.sh callback <cb> # Handle button callbacks
handler.sh lang en|ru # Switch language
handler.sh reminders "07:00" "2026-01-27" # Create Session 10 reminders
handler.sh insights # Get accumulated insights
life:begin / life:begin:ru โ Start sessionslife:prev โ Previous phaselife:skip โ Skip phaselife:save โ Save and exitlife:continue โ Continuelife:lang:en / life:lang:ru โ Switch languagelife:session:N โ Jump to session Nlife-architect/
โโโ SKILL.md # This file
โโโ assets/
โ โโโ intro.jpg # Intro image
โโโ references/
โ โโโ sessions.md # Session overview
โ โโโ sources.md # Original sources
โ โโโ sessions/
โ โโโ en/ # English sessions (1-10)
โ โโโ ru/ # Russian sessions (1-10)
โโโ scripts/
โโโ handler.sh # Main command handler
โโโ export.sh # Export final document
Stored in $WORKSPACE/memory/life-architect/:
state.json โ Progress trackingsession-NN.md โ User responsesinsights.md โ Key insights from completed sessionsfinal-document.md โ Exported complete documentjq (JSON processor)bash 4.0+MIT