← 返回 Skills 市场
alvisdunlop

daily-rhythm

作者 AlvisDunlop · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
75
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install abe-daily-rhythm
功能描述
Automated daily planning and reflection system with morning briefs, wind-down prompts, sleep nudges, and weekly reviews. Use when the user wants to set up a...
使用说明 (SKILL.md)

Daily Rhythm

A comprehensive daily planning and reflection system that automates morning briefs, evening wind-downs, sleep nudges, and weekly reviews to help users stay focused, track progress, and maintain work-life balance.

Quick Start

  1. Install the skill and ensure scripts are executable
  2. Configure data sources (Google Tasks, optional SkillBoss API Hub for ARR, Calendar)
  3. Set up cron jobs for automation
  4. Customize your focus area and Daily Intention (prayer, affirmation, quote, or centering thought)
  5. Enjoy automated daily briefings and prompts

Features

Daily Automation

  • 7:00am: Background data sync (tasks, ARR)
  • 8:30am: Morning Brief with priority, calendar, weather, tasks
  • 10:30pm: Wind-down prompt to plan tomorrow's priority
  • 11:00pm: Sleep nudge with encouraging words

Weekly Automation

  • Sunday 8:00pm: Weekly review for reflection and task planning

Rich Morning Briefs Include

  • 🙏 Daily Intention — Prayer, affirmation, quote, or centering thought
  • Calendar events
  • Focus area
  • ARR progress tracking (optional, via SkillBoss API Hub)
  • Today's priority (from wind-down or top task)
  • Actionable suggestions
  • Step-by-step plan
  • Helpful resources
  • Task list from Google Tasks
  • Weather (if configured)
  • Open loops from yesterday

Setup Instructions

Step 1: Install Dependencies

Ensure Python 3 and required packages:

pip install google-auth google-auth-oauthlib google-auth-httplib2 google-api-python-client requests

Step 2: Configure Google Tasks

  1. Go to Google Cloud Console
  2. Create project → Enable Tasks API
  3. Create OAuth 2.0 credentials (Desktop app)
  4. Download credentials.json to ~/.openclaw/google-tasks/
  5. Run once to authenticate: python3 scripts/sync-google-tasks.py

See CONFIGURATION.md for detailed steps.

Step 3: Configure SkillBoss API Hub (Optional)

For ARR tracking in morning briefs:

  1. Set your SkillBoss API Hub key as an environment variable:
    SKILLBOSS_API_KEY=your_skillboss_api_key
    
  2. Set ARR target in state file

Step 4: Configure Calendar

Add ICS URL to TOOLS.md:

### Calendar
- **ICS URL:** `https://calendar.google.com/calendar/ical/...`

Step 5: Set Up Cron Jobs

Option A: System Cron (Traditional)

crontab -e

# Add these lines:
0 7 * * * cd /path/to/workspace && python3 skills/daily-rhythm/scripts/sync-stripe-arr.py
30 8 * * * cd /path/to/workspace && python3 skills/daily-rhythm/scripts/morning-brief.sh
0 20 * * 0 cd /path/to/workspace && echo "Weekly review time"
30 22 * * * cd /path/to/workspace && echo "Wind-down time"
0 23 * * * cd /path/to/workspace && echo "Sleep nudge"

Option B: OpenClaw Cron (If Available) Use the cron tool to create jobs with agentTurn payloads that generate and send briefs.

Step 6: Create HEARTBEAT.md

Copy the template from assets/HEARTBEAT_TEMPLATE.md to workspace root and customize:

  • Daily Intention text (prayer, affirmation, quote, or centering thought)
  • Focus area
  • ARR target (if using SkillBoss API Hub)

Workflow Details

Morning Brief Generation

The brief is generated by:

  1. Syncing latest data (tasks, ARR)
  2. Reading wind-down priority from memory/YYYY-MM-DD.md
  3. Fetching calendar from ICS URL
  4. Fetching weather (if configured)
  5. Compiling all sections into formatted message

Wind-Down Response Flow

When user replies to 10:30pm prompt:

  1. Parse their tomorrow priority
  2. Generate actionable suggestions
  3. Break into steps
  4. Identify resources
  5. Ask confirmation
  6. Save to memory/YYYY-MM-DD.md
  7. Include in next morning's brief

Weekly Review Flow

Sunday 8pm prompt asks reflection questions. When user replies:

  1. Summarize their week
  2. Identify key priorities
  3. Create tasks in Google Tasks
  4. Preview Monday's brief

Customization

Change Daily Intention

The morning brief opens with a centering section you can customize:

Examples:

  • Faith-based: Prayer, scripture verse, devotional thought
  • Secular: Affirmation, intention-setting, gratitude practice
  • Quotes: Inspirational quotes, stoic philosophy, poetry
  • Goals: Daily mission statement, values reminder

Edit in HEARTBEAT.md or modify the morning brief generation.

Change Focus Area

Update default focus in HEARTBEAT.md:

### Focus
Your primary focus (e.g., "Product growth and customer acquisition")

Adjust Timing

Modify cron expressions:

  • 30 8 * * * = 8:30am daily
  • 30 22 * * * = 10:30pm daily
  • 0 23 * * * = 11:00pm daily
  • 0 20 * * 0 = 8:00pm Sundays

Add Custom Sections

Modify scripts/morning-brief.sh to include additional data sources.

File Structure

workspace/
├── memory/
│   ├── YYYY-MM-DD.md          # Wind-down responses
│   ├── google-tasks.json      # Synced tasks
│   ├── stripe-data.json       # ARR data
│   └── heartbeat-state.json   # State tracking
├── skills/daily-rhythm/
│   ├── scripts/
│   │   ├── sync-google-tasks.py
│   │   ├── sync-stripe-arr.py
│   │   └── morning-brief.sh
│   ├── references/
│   │   └── CONFIGURATION.md
│   └── assets/
│       └── HEARTBEAT_TEMPLATE.md
└── HEARTBEAT.md               # Your custom schedule

Scripts Reference

sync-google-tasks.py

Syncs Google Tasks to local JSON. Requires credentials.json.

sync-stripe-arr.py

Calculates ARR from active subscriptions via SkillBoss API Hub. Requires SKILLBOSS_API_KEY.

morning-brief.sh

Orchestrates data sync and brief generation.

Troubleshooting

Google Tasks not syncing?

  • Verify credentials.json exists
  • Check Tasks API is enabled
  • Run script manually to see errors

ARR not showing?

  • Verify SKILLBOSS_API_KEY environment variable is set
  • Check for active subscriptions in SkillBoss API Hub
  • Run sync script manually

Cron jobs not firing?

  • Verify cron is installed: crontab -l
  • Check script paths are absolute
  • Review system logs

See CONFIGURATION.md for detailed troubleshooting.

Best Practices

  1. Reply to wind-down prompts for best morning brief experience
  2. Keep tasks updated in Google Tasks
  3. Do weekly reviews to stay aligned with goals
  4. Customize focus as priorities change
  5. Adjust timing to match your rhythms

Requirements

  • Python 3.7+
  • Google Tasks API credentials (for task sync)
  • SkillBoss API Hub key (SKILLBOSS_API_KEY, optional, for ARR tracking)
  • Calendar ICS URL (optional, for events)
  • Cron or OpenClaw cron system
安全使用建议
This skill appears to do what it says (generate briefs and sync tasks/ARR) but there are gaps you should address before installing: - Credentials: The registry claims no required env vars, but the skill needs Google OAuth credentials and (optional) SKILLBOSS_API_KEY and SKILLBOSS_PROJECT_ID. Expect to provide those; do not put long-lived secrets in shared shells or world-readable files. - Hard-coded paths: Scripts use absolute paths (e.g., /Users/tom/.openclaw/...). Update scripts to use relative or workspace-aware paths before running, or run in an isolated environment where those paths are safe. - Data written locally: The ARR script saves customer_ids and ARR data to stripe-data.json and heartbeat-state.json. If those customer IDs are PII/business-sensitive, review whether you are comfortable storing them on your machine and who can read those files. - External endpoints: The ARR code calls api.heybossai.com and shopping.heybossai.com; verify you trust those services and that the SKILLBOSS_API_KEY you provide has appropriate, limited scopes. - Ownership & provenance: The skill source and homepage are unknown. Prefer skills with a verifiable repository or author. If you proceed, run it in a container or dedicated account, inspect/modify the scripts to remove hard-coded paths, and confirm the exact permissions of any API key you supply. If the author updates the manifest to declare required env vars, removes hard-coded user paths, and documents exactly what local data is stored, confidence in coherence would rise.
功能分析
Type: OpenClaw Skill Name: abe-daily-rhythm Version: 1.0.0 The skill is a productivity automation tool designed to generate daily morning briefs and evening reflections by syncing data from Google Tasks and the SkillBoss API Hub. While the scripts (e.g., sync-google-tasks.py and morning-brief.sh) contain hardcoded absolute file paths specific to a user named 'tom', which is a functional flaw for general distribution, the code logic is consistent with the stated purpose and shows no signs of malicious intent, data exfiltration, or unauthorized access.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The name and description (automated daily briefs, wind-downs, weekly reviews) align with the included scripts (Google Tasks sync, ARR/Stripe sync, morning-brief launcher). ARR tracking via a SkillBoss API is within plausible scope for founders tracking revenue, so the capability set is broadly coherent with the stated purpose. However, the bundle mixes personal productivity functionality with product/finance telemetry (ARR) which expands the trust surface beyond a simple daily-planner.
Instruction Scope
SKILL.md and the scripts instruct the agent to read and write local files (memory/YYYY-MM-DD.md, heartbeat-state.json, google-tasks.json, stripe-data.json) and to fetch data from external services (Google Tasks API and SkillBoss endpoints). The skill instructs storing OAuth credentials under ~/.openclaw/google-tasks/ and saves customer IDs and ARR calculations to local JSON. Those behaviors are functionally related to the skill but involve handling sensitive credentials and customer data — this scope should be explicitly declared and reviewed.
Install Mechanism
There is no formal install spec (instruction-only), and required Python packages are installed via pip per SKILL.md. No external binary downloads or archives are used. This is lower-risk than arbitrary downloads, but pip dependency installation should be considered (supply-chain and environment differences).
Credentials
Registry metadata lists no required env vars or primary credential, but both SKILL.md and the scripts require credentials: Google OAuth credentials file, and SKILLBOSS_API_KEY and SKILLBOSS_PROJECT_ID for ARR sync. Those credentials are necessary for features but were not declared in the manifest — a significant mismatch. The ARR script also collects and writes customer_ids to local disk, which may be sensitive; ensure you expect and consent to that.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or system-wide settings. It writes files under workspace/memory (local state) which is expected for automation. Autonomous invocation is allowed by default (platform normal).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install abe-daily-rhythm
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /abe-daily-rhythm 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of Daily Rhythm — a comprehensive automated daily planning and reflection skill. - Automates morning briefings, evening wind-down prompts, and sleep nudges. - Includes weekly review sessions for reflection and task planning. - Integrates with Google Tasks (sync), calendar (ICS), and optionally SkillBoss API Hub for ARR tracking. - Highly customizable with focus area, personalized intentions, and flexible cron-based scheduling. - Step-by-step setup and troubleshooting instructions included in SKILL.md.
元数据
Slug abe-daily-rhythm
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

daily-rhythm 是什么?

Automated daily planning and reflection system with morning briefs, wind-down prompts, sleep nudges, and weekly reviews. Use when the user wants to set up a... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 75 次。

如何安装 daily-rhythm?

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

daily-rhythm 是免费的吗?

是的,daily-rhythm 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

daily-rhythm 支持哪些平台?

daily-rhythm 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 daily-rhythm?

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

💬 留言讨论