Claude
Skills
Sign in
โ† Back

fix-life-in-1-day

Included with Lifetime
$97 forever

Fix your entire life in 1 day. 10 psychological sessions based on Dan Koe's viral article.

Writing & Docsscripts

What this skill does


# Fix Your Entire Life in 1 Day ๐Ÿง 

10 psychological sessions based on Dan Koe's viral article.

Based on:
- ๐Ÿ“ [@thedankoe](https://x.com/thedankoe) โ€” "How to fix your entire life in 1 day"
- ๐Ÿ”ง [@alex_prompter](https://x.com/alex_prompter) โ€” 10 AI prompts reverse-engineered from Dan's article
- โšก [@chip1cr](https://x.com/chip1cr) โ€” Clawdbot skill implementation

## What It Does

Guides users through 10 structured sessions:

1. **The Anti-Vision Architect** โ€” Build a visceral image of the life you're drifting toward
2. **The Hidden Goal Decoder** โ€” Expose what you're actually optimizing for
3. **The Identity Construction Tracer** โ€” Trace limiting beliefs to their origins
4. **The Lifestyle-Outcome Alignment Auditor** โ€” Compare required vs actual lifestyle
5. **The Dissonance Engine** โ€” Move from comfort to productive tension
6. **The Cybernetic Debugger** โ€” Fix your goal-pursuit feedback loop
7. **The Ego Stage Navigator** โ€” Assess developmental stage and transition
8. **The Game Architecture Engineer** โ€” Design life as a game with stakes
9. **The Conditioning Excavator** โ€” Separate inherited beliefs from chosen ones
10. **The One-Day Reset Architect** โ€” Generate a complete 1-day transformation protocol

## 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
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
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
bash scripts/handler.sh save "USER_RESPONSE" $WORKSPACE
```

## Handler Commands

```bash
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 sessions
- `life:prev` โ€” Previous phase
- `life:skip` โ€” Skip phase
- `life:save` โ€” Save and exit
- `life:continue` โ€” Continue
- `life:lang:en` / `life:lang:ru` โ€” Switch language
- `life: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 tracking
- `session-NN.md` โ€” User responses
- `insights.md` โ€” Key insights from completed sessions
- `final-document.md` โ€” Exported complete document

## Languages

- English (default)
- Russian (full translation)

## Requirements

- `jq` (JSON processor)
- `bash` 4.0+

## License

MIT

Related in Writing & Docs