用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gaiaaiagent/regen-heartbeat --skill weekly命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | weekly |
| description | Generate a weekly digest rolling up dailies into higher-level pattern analysis |
Generate a structured weekly digest that synthesizes daily digests and fresh MCP data into a mid-range view of the Regen ecosystem for a given ISO week.
Parse arguments:
--week YYYY-WNN — ISO week to generate for (defaults to current week)--template name — use a specific template (defaults to the value in
settings.json at defaults.template.weekly)--character name — voice the digest through a character personaDetermine the target week's date range (Monday through Sunday)
Load the template from templates/weekly/{name}.md
Read the template's rollup and comparison frontmatter to understand the
synthesis directives
Read all daily digests within the target week from content/digests/
For each section, query data sources and synthesize from dailies:
Week in Review:
Governance Summary:
ledger: list_governance_proposals — current state (supplements dailies)ledger: get_governance_tally_result — tallies for proposals active this weekEcocredit Trends:
ledger: list_credit_batches — fresh query for the latest stateledger: analyze_market_trends — trend analysis across the weekEcosystem Narrative:
koi: generate_weekly_digest — the KOI system's own weekly summarykoi: search — topics that emerged during the weekForward Look:
Synthesize into a coherent weekly digest that reads as authored narrative, not a summarized list
If --character is specified, load the character skill and voice the digest
Write YAML frontmatter:
---
title: "Weekly Heartbeat — {YYYY-WNN}"
date: {YYYY-MM-DD} # Monday of the week
week: {YYYY-WNN}
template: {template-name}
character: {character-name or null}
cadence: weekly
dailies_consumed: [list of daily digest paths]
sources:
koi: true
ledger: true
web: true
historic: true
---
Write to content/digests/YYYY/MM/weekly/YYYY-WNN.md (create directories as needed)
Also render the full digest to the terminal
/weekly
/weekly --week 2026-W06
/weekly --character narrator
/weekly --template default --character governor
content/digests/YYYY/MM/DD/daily.mdtemplates/weekly/A markdown file at content/digests/YYYY/MM/weekly/YYYY-WNN.md with frontmatter,
plus terminal output of the same content.