fix-life-in-1-day
10 psychological sessions based on Dan Koe's method.
Installation
npx clawhub@latest install fix-life-in-1-dayView the full skill documentation and source below.
Documentation
Fix Your Entire Life in 1 Day π§
10 psychological sessions based on Dan Koe's viral article.
Based on:
- π [@thedankoe]() β "How to fix your entire life in 1 day"
- π§ [@alex_prompter]() β 10 AI prompts reverse-engineered from Dan's article
- β‘ [@chip1cr]() β Clawdbot skill implementation
What It Does
Guides users through 10 structured sessions:
Commands
| 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 |
Usage Flow
When User Says /life
Step 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 Commands
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
Callbacks
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 N
Files
life-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
User Data
Stored in $WORKSPACE/memory/life-architect/:
state.jsonβ Progress trackingsession-NN.mdβ User responsesinsights.mdβ Key insights from completed sessionsfinal-document.mdβ Exported complete document
Languages
- English (default)
- Russian (full translation)
Requirements
jq(JSON processor)bash4.0+