用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gaiaaiagent/regen-heartbeat --skill daily命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | daily |
| description | Generate a daily digest for Regen Network, RegenAI, and the Regen Commons |
Generate a structured daily digest that synthesizes data from KOI MCP, Ledger MCP, web search, and historic digests into a comprehensive report on the Regen ecosystem.
Parse arguments:
--date YYYY-MM-DD — generate for a specific date (defaults to today)--template name — use a specific template (defaults to the value in
settings.json at defaults.template.daily)--character name — voice the digest through a character personaLoad the template from templates/daily/{name}.md
Read the template's section structure and <!-- source: --> annotations
For each section, query the appropriate data sources:
Governance Pulse:
ledger: list_governance_proposals — active and recently closed proposalsledger: list_governance_votes — vote tallies on active proposalsledger: get_governance_tally_result — tally results for notable proposalskoi: search(query="governance proposal") — forum discussions about governanceEcocredit Activity:
ledger: list_credit_batches — recent batch issuancesledger: list_classes — credit class overviewledger: list_projects — registered projectsledger: list_sell_orders — marketplace activityledger: analyze_market_trends — credit market trendskoi: search(query="ecocredit registry") — related discussionsChain Health:
ledger: get_total_supply — token supply metricsledger: get_community_pool — community pool balanceEcosystem Intelligence:
koi: generate_weekly_digest — curated summary of recent activitykoi: search — topic-specific searches for notable developmentskoi: get_entity_neighborhood — relationship mapping for key entitiesCurrent Events:
settings.jsonReflection:
content/digests/ for comparisonSynthesize findings into a coherent digest following the template structure
If --character is specified, load the character skill and voice the digest
Write YAML frontmatter:
---
title: "Daily Heartbeat — {date}"
date: {YYYY-MM-DD}
template: {template-name}
character: {character-name or null}
cadence: daily
sources:
koi: true
ledger: true
web: true
historic: {true if previous digests exist}
---
Write to content/digests/YYYY/MM/DD/daily.md (create directories as needed)
Also render the full digest to the terminal
/daily
/daily --date 2026-02-02
/daily --character narrator
/daily --template default --character governor
settings.json topicscontent/digests/templates/daily/A markdown file at content/digests/YYYY/MM/DD/daily.md with frontmatter, plus
terminal output of the same content.