Daily Routine

Generates a morning briefing combining crypto movers, tweets, papers, GitHub issues, and HN digest.

Updated May 25, 2026
One-click install
npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill daily-routine-cbowcrptex
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: Daily Routine
Source: https://github.com/Cbowcrptex/CBOWCRYPTEX/tree/main/skills/daily-routine
Command: npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill daily-routine-cbowcrptex

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Staying current across crypto markets, AI research, developer news, and social chatter requires checking many sources every morning. This Skill consolidates token movers, X/Twitter chatter, a daily paper pick, GitHub issue updates, and Hacker News highlights into a single notification. ## Core Features & Use Cases - Aggregated Morning Briefing: Combines top 10 crypto winners/losers, tweet roundups by topic, a paper of the day, GitHub issues, and an HN digest into one message under 4000 characters. - Chain-Aware Execution: Runs as part of an aeon.yml chain using prior step outputs, or falls back to executing sub-skills (token-movers, paper-pick, github-issues, hn-digest) inline when run standalone. - Flexible Tweet Search: Uses the X.AI API with x_search when XAI_API_KEY is set, falling back to WebSearch otherwise. - Use Case: A crypto-interested developer configures topics like "crypto", "AI agents", and "developer tools", then receives one daily notification summarizing market movers, viral tweets, a recommended research paper, open GitHub issues, and top HN stories. ## Quick Start Run the daily routine skill to generate and send my morning briefing covering crypto, AI, and developer news.

Frequently Asked Questions about Daily Routine

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up an automated daily crypto and tech news briefing?▼

Configure the daily-routine skill with your topics of interest and run it each morning, either standalone or chained in aeon.yml. It aggregates token movers, tweets, a paper pick, GitHub issues, and HN stories into one notification.

How do I search X/Twitter for trending topics using an API?▼

Set the XAI_API_KEY environment variable and the skill calls the X.AI responses API with the x_search tool over a date range. If the key is missing, it falls back to WebSearch and summarizes the top results per topic.

Can the daily routine skill run without the aeon chain setup?▼

Yes, when no chain context is provided it reads and executes each sub-skill inline: token-movers, paper-pick, github-issues, and hn-digest. Chained execution is preferred since it reuses prior step outputs directly.

What happens if the briefing message exceeds the character limit?▼

The notification is capped at 4000 characters. When trimming is needed, the HN and tweet sections are shortened first because token mover data and the paper pick are treated as highest priority.

Why does the tweet roundup fail in a sandboxed environment?▼

Sandboxes may block outbound curl requests to the X.AI API. Use WebFetch as a fallback for URL fetches, and apply the pre-fetch/post-process pattern for APIs that require authentication.