← 返回 Skills 市场
evgyur

Fix Your Entire Life in 1 Day

作者 evgyur · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2699
总下载
4
收藏
12
当前安装
1
版本数
在 OpenClaw 中安装
/install fix-life-in-1-day
功能描述
Fix your entire life in 1 day. 10 psychological sessions based on Dan Koe's viral article.
使用说明 (SKILL.md)

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:

  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 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 \x3Ccb>     # 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

安全使用建议
What to do before installing or running this skill: - Inspect the bundled scripts (scripts/handler.sh, scripts/export.sh, scripts/init.sh, scripts/status.sh) before executing anything. Search for network commands (curl, wget, nc, netcat, ssh, scp), remote hosts, base64/openssl decode+exec patterns, and any use of eval, backticks, or unescaped variable expansion that could allow command injection when handling user text. - Pay special attention to how user input is handled. The handler is called like: handler.sh save "USER_RESPONSE" — if the script inserts that text into shell commands without sanitization, a maliciously crafted response could execute arbitrary commands. - Check whether the scripts modify system schedulers (crontab, at, systemctl timers) or edit files outside the skill workspace. If they do, ask the author to justify why and consider running in a restricted environment. - Run the skill in a sandbox first (a throwaway VM or container) and monitor outbound network connections and file writes. Verify reminders behavior (do they only schedule local notifications or attempt to contact external services?). - Ensure the agent process has minimal permissions; avoid running as root. Back up any important data from your normal workspace before first run. - If you are not comfortable auditing shell scripts, decline installation or ask the maintainer for a review that documents: (a) that no external network calls are made, (b) that scheduling is done only via local, user-owned crontab entries (if at all), and (c) that user input is safely escaped/handled. If the scripts are clean and only write session files under $WORKSPACE and schedule reminders via safe, local mechanisms, the skill appears coherent for its coaching purpose. If the scripts contact remote endpoints, modify system-wide config, or use unsafe shell practices, consider the skill untrusted.
功能分析
Type: OpenClaw Skill Name: fix-life-in-1-day Version: 1.0.0 The OpenClaw skill 'fix-life-in-1-day' is benign. It uses standard bash scripting and `jq` for managing user session state, saving user responses to markdown files, and generating a final document within its designated `$WORKSPACE`. The `SKILL.md` and session markdown files define the AI's persona and interaction flow, but contain no instructions for malicious prompt injection, data exfiltration, or unauthorized system access. The `create_reminders` function in `scripts/handler.sh` generates a JSON file with reminder data for the agent to potentially act upon, rather than directly creating system-level cron jobs, which is a safe design pattern. All file operations are confined to the skill's workspace, and there are no external network calls or attempts at persistence or privilege escalation.
能力评估
Purpose & Capability
Name, description, and declared requirements (bash + jq) align with a local, interactive coaching skill that stores session text in $WORKSPACE. There are no requested environment variables or external credentials that would be disproportionate for the stated purpose.
Instruction Scope
Runtime instructions explicitly tell the agent to execute scripts/handler.sh and export.sh and to write user session files under $WORKSPACE/memory/life-architect/. Those scripts are called with raw user responses (e.g., handler.sh save "USER_RESPONSE"), and the skill can create reminders (handler.sh reminders ... and an explicit question about cron reminders). Because the script contents were not provided for review here, this raises concern: shell scripts that accept arbitrary user text can be vulnerable to command injection or could invoke network tools, edit crontab, or upload data. The SKILL.md itself does not document any external endpoints, but the scripts could add them — review of the actual scripts is required.
Install Mechanism
There is no install spec (no downloads) — the skill ships code in the skill bundle. That reduces supply-chain concerns from remote fetches, but executing included scripts still runs code delivered with the skill. This is lower-risk than a remote download, but it's not as low-risk as instruction-only skills with no code files.
Credentials
The skill requests no environment variables or external credentials and stores data under $WORKSPACE, which is proportionate to a journaling/coaching tool. The only privileged surface is the filesystem and whatever the agent process is allowed to do (scheduling, network, etc.), so those runtime capabilities should be reviewed.
Persistence & Privilege
always:false and user-invocable:true (normal). The skill writes persistent user data into $WORKSPACE/memory/life-architect/ (state.json, session files, final-document.md), which is expected. However the SKILL.md and handler interface reference creating reminders; if the scripts create OS-level scheduled tasks (cron/systemd/at) or modify system configuration, that increases persistence and privilege — confirm whether the scripts only write to the skill workspace or also modify system schedulers.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fix-life-in-1-day
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fix-life-in-1-day 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: 10 psychological sessions based on Dan Koe
元数据
Slug fix-life-in-1-day
版本 1.0.0
许可证
累计安装 13
当前安装数 12
历史版本数 1
常见问题

Fix Your Entire Life in 1 Day 是什么?

Fix your entire life in 1 day. 10 psychological sessions based on Dan Koe's viral article. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2699 次。

如何安装 Fix Your Entire Life in 1 Day?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install fix-life-in-1-day」即可一键安装,无需额外配置。

Fix Your Entire Life in 1 Day 是免费的吗?

是的,Fix Your Entire Life in 1 Day 完全免费(开源免费),可自由下载、安装和使用。

Fix Your Entire Life in 1 Day 支持哪些平台?

Fix Your Entire Life in 1 Day 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Fix Your Entire Life in 1 Day?

由 evgyur(@evgyur)开发并维护,当前版本 v1.0.0。

💬 留言讨论