← ClaudeAtlas

weekly-reviewlisted

Generate the weekly review report for the current ISO week. Writes to .claude-code-hermit/compiled/review-weekly-YYYY-Www.md and sends a channel-friendly summary with an evolution block. Runs every Sunday at 23:00 via routine.
gtapps/claude-code-hermit · ★ 59 · Code & Development · score 81
Install: claude install-skill gtapps/claude-code-hermit
# Weekly Review Generates the weekly review for the current ISO week. ## Steps 1. Run: ``` node ${CLAUDE_PLUGIN_ROOT}/scripts/weekly-review.js .claude-code-hermit ``` 2. Report the result. On success, output the review filename. If a **Knowledge Health** section appears in the review output, summarize the issues to the operator. 3. Build the weekly evolution block from the freshly-written review file: - Read `.claude-code-hermit/compiled/review-weekly-<current-week>.md` frontmatter (just written in step 1). - Also read the prior week's `compiled/review-weekly-*.md` frontmatter (sort by `week` descending, take the second file). - Compute deltas directly from frontmatter values (no synthesis or inference) and format: ``` ## This week's evolution - Cost: $X.XX (vs $Y.YY prior week, Δ+/-N%) - Autonomy: N% self-directed (vs M% prior, Δ+/-N pp) - Proposals: +A created, B resolved (C pending review, D in flight) - Oldest open accepted: PROP-NNN (Nd since accepted) [or "none"] ``` - If no prior week file exists: omit the "vs" comparisons and show this week's numbers only. - If the current-week file is missing (script failed): skip the evolution block entirely. 4. Channel-send the combined weekly summary: - Compose the message: one-line review headline (session count, cost, self-directed rate from frontmatter) followed by the evolution block from step 3. - Resolve the outbound channel: ``` node ${CLAUDE_P