weekly-report

weekly-report is a skill for Claude Code from Itsokay-co/bio-vibing. It costs 49 tokens per session (5,826 once invoked), scanned A, original, Apache-2.0.

A weekly health report built from data from Oura Ring, Whoop, Fitbit, or Apple Health. It compares recent results with the previous week and personal baselines, including sleep debt and recovery-related trends.

In plain words
What is it for?
Use it to review sleep, recovery, training load, heart-rate and HRV trends, personal bests, possible disruptions, and suggested bedtime or routine changes.
Why use it?
It turns health measurements into a short list of actions and highlights changes that may need attention. Sleep debt is the accumulated shortfall between needed and actual sleep.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the bio-vibing plugin — 8 skills shipped together

Good fit Use it to review sleep, recovery, training load, heart-rate and HRV trends, personal bests, possible disruptions, and suggested bedtime or routine changes.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Itsokay-co/bio-vibing
Claude Code
/plugin install bio-vibing

Made for: Claude Code.

Or install bio-vibing, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for weekly-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/itsokay-co/bio-vibing/weekly-report/github.svg)](https://agentmods.dev/skills/itsokay-co/bio-vibing/weekly-report)
Your own site
<a href="https://agentmods.dev/skills/itsokay-co/bio-vibing/weekly-report"><img src="https://agentmods.dev/badge/skills/itsokay-co/bio-vibing/weekly-report/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for weekly-report

Your own site · 80×15
<a href="https://agentmods.dev/skills/itsokay-co/bio-vibing/weekly-report"><img src="https://agentmods.dev/badge/skills/itsokay-co/bio-vibing/weekly-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,826 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.05826
Opus 5 $0.00024 $0.02913
Sonnet 5 $0.00010 $0.01165
Haiku 4.5 $0.00005 $0.00583

Measured 9d ago against content hash 2bef441f9d0b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

weekly-report scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/weekly-report/SKILL.md · 440 lines

How it starts

The opening of the file, as written. The whole thing — 440 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Weekly Report — What to do this week

Compare this week to last week AND your personal best. Track sleep debt. Surface actionable recommendations.

Steps

Pull 90 days of data (this week + last week + 3-month baseline for personal best detection):

python3 << 'PYEOF'
import sys, os
sys.path.insert(0, os.path.join(os.environ.get('CLAUDE_PLUGIN_ROOT', '.'), 'lib'))
from fetch import fetch_biometrics
from cycle import detect_cycle_phases
from metrics import (compute_hrv_cv, compute_sleep_regularity,
                     compute_allostatic_load,
                     compute_training_load, compute_chronotype,
                     compute_alcohol_detection, compute_early_warning_signals,
                     compute_hr_zones, compute_intensity_minutes,
                     compute_recovery_index, compute_respiratory_trends,
                     compute_personal_baselines, compute_forward_signals,
                     compute_gut_score_correlations,
                     compute_sleep_debt, compute_disruption_classification,
                     compute_poincare_hrv)
from dataclasses import asdict
from datetime import datetime, timedelta
from statistics import mean, stdev
from collections import defaultdict

data = fetch_biometrics(days=90)
d = asdict(data)

today = datetime.now()
this_week_start = (today - timedelta(days=6)).strftime("%Y-%m-%d")
last_week_start = (today - timedelta(days=13)).strftime("%Y-%m-%d")
end = today.strftime("%Y-%m-%d")

# --- Helpers ---
def split_weeks(records, date_key="day"):
    this_w = [r for r in records if r.get(date_key, "") >= this_week_start]
    last_w = [r for r in records if last_week_start <= r.get(date_key, "") < this_week_start]
    return last_w, this_w

def safe_mean(vals):
    return mean(vals) if vals else 0

def safe_stdev(vals):
    return stdev(vals) if len(vals) > 1 else 0

# --- Main sleep (exclude naps) ---
sleep = [s for s in d['sleep'] if s.get('sleep_type') in ('long_sleep', None)] or d['sleep']

# --- Weekly aggregation for personal best ---
def week_key(day_str):
    dt = datetime.strptime(day_str, "%Y-%m-%d")
    return (dt - timedelta(days=dt.weekday())).strftime("%Y-%m-%d")

weeks = defaultdict(list)
for s in sleep:
    if s.get('day'):
        weeks[week_key(s['day'])].append(s)

week_composites = {}
for wk, records in weeks.items():
    scores = [s['score'] for s in records if s.get('score')]
    effs = [s['efficiency'] for s in records if s.get('efficiency')]
    totals = [s['total_sleep_seconds']/3600 for s in records if s.get('total_sleep_seconds')]
    if scores and effs and totals:
        week_composites[wk] = {
            'score': safe_mean(scores),
            'efficiency': safe_mean(effs),
            'total_h': safe_mean(totals),
            'composite': safe_mean(scores) * 0.4 + safe_mean(effs) * 0.3 + min(safe_mean(totals)/8*100, 100) * 0.3,
        }

# --- Output ---
print(f"\n{'='*65}")
print(f"  WEEKLY HEALTH REPORT — {d['provider']}")
print(f"  {this_week_start} to {end}")
print(f"{'='*65}")

# Optimal bedtime
if d.get('optimal_bedtime'):
    print(f"\n  Optimal bedtime window: {d['optimal_bedtime']}")

# --- Sleep debt tracker ---
target_h = 7.5
this_week_sleep = [s for s in sleep if s.get('day', '') >= this_week_start]
total_hours = [s['total_sleep_seconds']/3600 for s in this_week_sleep if s.get('total_sleep_seconds')]
if total_hours:
    nightly_debt = [target_h - h for h in total_hours]
    cumulative_debt = sum(nightly_debt)
    print(f"\n  SLEEP DEBT (vs {target_h}h target)")
    print(f"  {'Night':<12} {'Slept':>6} {'Debt':>7}")
    print(f"  {'-'*28}")
    running = 0
    for s in sorted(this_week_sleep, key=lambda x: x.get('day', '')):
        if s.get('total_sleep_seconds'):
            h = s['total_sleep_seconds'] / 3600
            debt = target_h - h
            running += debt
            flag = " !!" if debt > 2 else ""
            print(f"  {s['day']:<12} {h:>5.1f}h {debt:>+6.1f}h{flag}")
    print(f"  {'':12} {'TOTAL':>6} {cumulative_debt:>+6.1f}h {'← critical' if cumulative_debt > 7 else '← concerning' if cumulative_debt > 3 else ''}")

# --- Night-to-night consistency ---
if len(total_hours) > 1:
    consistency_sd = safe_stdev(total_hours)
    print(f"\n  Consistency: σ = {consistency_sd:.1f}h {'(erratic — aim for <1h variation)' if consistency_sd > 1.5 else '(moderate)' if consistency_sd > 0.8 else '(good)'}")

# --- Week vs week comparison ---
last_w, this_w = split_weeks(sleep)
all_baseline = [s for s in sleep if s.get('day', '') < this_week_start]

def compare(last_vals, this_vals, baseline_vals, label, unit="", higher_is_better=True):
    if not last_vals or not this_vals:
        return None
    last_avg = safe_mean(last_vals)
    this_avg = safe_mean(this_vals)
    if last_avg == 0: return None
    pct = ((this_avg - last_avg) / abs(last_avg)) * 100
    baseline_sd = safe_stdev(baseline_vals) if baseline_vals else 0
    anomaly = abs(this_avg - safe_mean(baseline_vals)) > baseline_sd if baseline_sd > 0 else False
    direction = "up" if pct > 2 else "down" if pct < -2 else "flat"
    good = (direction == "up" and higher_is_better) or (direction == "down" and not higher_is_better)
    return {"label": label, "last": f"{last_avg:.1f}{unit}", "this": f"{this_avg:.1f}{unit}",
            "change": f"{pct:+.1f}%", "good": good, "direction": direction, "anomaly": anomaly}

results = []
if sleep:
    results.append(compare([s['score'] for s in last_w if s.get('score')], [s['score'] for s in this_w if s.get('score')], [s['score'] for s in all_baseline if s.get('score')], "Sleep Score", "", True))
    for field, label, unit, hib, div in [
        ("total_sleep_seconds", "Total Sleep", " hr", True, 3600),
        ("deep_sleep_seconds", "Deep Sleep", " min", True, 60),
        ("rem_sleep_seconds", "REM Sleep", " min", True, 60),
        ("efficiency", "Efficiency", "%", True, 1),
        ("avg_hrv_ms", "HRV", " ms", True, 1),
        ("avg_resting_hr_bpm", "Resting HR", " bpm", False, 1),
    ]:
        results.append(compare([s[field]/div for s in last_w if s.get(field)], [s[field]/div for s in this_w if s.get(field)], [s[field]/div for s in all_baseline if s.get(field)], label, unit, hib))

# Readiness
readiness = d['readiness']
if readiness:
    last_r, this_r = split_weeks(readiness)
    results.append(compare([r['score'] for r in last_r if r.get('score')], [r['score'] for r in this_r if r.get('score')], [r['score'] for r in readiness if r.get('score')], "Readiness", "", True))

# SpO2
spo2 = d.get('spo2', [])
if spo2:
    last_s, this_s = split_weeks(spo2)
    results.append(compare([s['avg_spo2_pct'] for s in last_s if s.get('avg_spo2_pct')], [s['avg_spo2_pct'] for s in this_s if s.get('avg_spo2_pct')], [s['avg_spo2_pct'] for s in spo2 if s.get('avg_spo2_pct')], "SpO2", "%", True))

results = [r for r in results if r is not None]

print(f"\n  {'Metric':<16} {'Last Wk':>10} {'This Wk':>10} {'Change':>8}")
print(f"  {'-'*48}")
for r in results:
    marker = " *" if r["anomaly"] else ""
    print(f"  {r['label']:<16} {r['last']:>10} {r['this']:>10} {r['change']:>8}{marker}")

# Wins/Watch
wins = [r for r in results if r["good"] and r["direction"] != "flat"]
flags = [r for r in results if not r["good"] and r["direction"] != "flat"]
if wins:
    print(f"\n  WINS: {', '.join(w['label'] + ' ' + w['change'] for w in wins)}")
if flags:
    print(f"  WATCH: {', '.join(f['label'] + ' ' + f['change'] for f in flags)}")

# --- Personal best comparison ---
if week_composites:
    best_week = max(week_composites, key=lambda w: week_composites[w]['composite'])
    best = week_composites[best_week]
    current_week = week_key(this_week_start)
    if current_week in week_composites:
        curr = week_composites[current_week]
        print(f"\n  PERSONAL BEST WEEK: {best_week}")
        print(f"    Score: {best['score']:.0f} (you: {curr['score']:.0f})")
        print(f"    Efficiency: {best['efficiency']:.0f}% (you: {curr['efficiency']:.0f}%)")
        print(f"    Sleep: {best['total_h']:.1f}h (you: {curr['total_h']:.1f}h)")

# --- Resilience trend ---
resilience = d.get('resilience', [])
if resilience:
    last_res, this_res = split_weeks(resilience)
    this_levels = [r['level'] for r in this_res if r.get('level')]
    if this_levels:
        print(f"\n  RESILIENCE: {', '.join(this_levels)}")

# --- Autonomic flexibility ---
hrv_cv_all = compute_hrv_cv(sleep)
if hrv_cv_all['current_cv_7d'] is not None:
    # Compute for this week vs last week
    this_w_sleep = [s for s in sleep if s.get('day', '') >= this_week_start]
    last_w_sleep = [s for s in sleep if last_week_start <= s.get('day', '') < this_week_start]
    this_cv = compute_hrv_cv(this_w_sleep, windows=[7])
    last_cv = compute_hrv_cv(last_w_sleep, windows=[7])
    print(f"\n  AUTONOMIC FLEXIBILITY:")
    print(f"    HRV-CV (60d): {hrv_cv_all['current_cv_7d']:.1f}% ({hrv_cv_all['interpretation']})")
    if this_cv['current_cv_7d'] is not None and last_cv['current_cv_7d'] is not None:
        diff = this_cv['current_cv_7d'] - last_cv['current_cv_7d']
        print(f"    This week: {this_cv['current_cv_7d']:.1f}% vs Last week: {last_cv['current_cv_7d']:.1f}% ({diff:+.1f}%)")
    print(f"    Trend: {hrv_cv_all['trend']}")

# --- Sleep regularity ---
sri = compute_sleep_regularity(sleep)
if sri['sri_score'] is not None:
    print(f"\n  SLEEP REGULARITY: {sri['sri_score']}/100 ({sri['classification']})")
    if sri['classification'] == 'irregular':
        print(f"    Irregular schedule is likely hurting more than any single bad night")

# --- Chronotype ---
chrono = compute_chronotype(sleep)
if chrono['chronotype_hour'] is not None:
    h = int(chrono['chronotype_hour'])
    m = int((chrono['chronotype_hour'] % 1) * 60)
    print(f"\n  CHRONOTYPE: {chrono['classification']} (mid-sleep {h:02d}:{m:02d})")
    if chrono['social_jetlag_hours'] > 1:
        print(f"    Social jetlag: {chrono['social_jetlag_hours']}h — aim for <1h")

# --- Allostatic load ---
stress = d.get('stress', [])
al = compute_allostatic_load(sleep, readiness, spo2, stress)
if al['load_score'] is not None and al['load_score'] >= 2:
    print(f"\n  STRESS BURDEN: {al['load_score']}/6 ({al['classification']}, {al['trend']})")
    flagged = [k for k, v in al['per_metric'].items() if v['unfavorable']]
    if flagged:
        print(f"    Overloaded: {', '.join(flagged)}")

# --- Training load ---
workouts = d.get('workouts', [])
heartrate = d.get('heartrate', [])
if workouts:
    tl = compute_training_load(workouts, heartrate, sleep)
    if tl['acwr'] is not None:
        print(f"\n  TRAINING LOAD: ACWR {tl['acwr']} ({tl['acwr_zone']}), Weekly TRIMP {tl['weekly_trimp']}")
        if tl['acwr_zone'] == 'danger':
            print(f"    ⚠ Injury risk — back off intensity")
        elif tl['acwr_zone'] == 'undertraining':
            print(f"    Consider increasing training volume")

# --- Alcohol detection ---
alc = compute_alcohol_detection(sleep)
if alc['flagged_nights']:
    recent_flags = [n for n in alc['flagged_nights'] if n >= this_week_start]
    if recent_flags:
        print(f"\n  ALCOHOL: Probable alcohol nights this week: {', '.join(recent_flags)}")

# --- Early warning ---
ews = compute_early_warning_signals(sleep)
if ews['warning_level'] == 'approaching_transition':
    print(f"\n  ⚠ EARLY WARNING: Rising autocorrelation + variance — body approaching a transition")

# --- Cycle context ---
tags = d.get('tags', [])
readiness = d['readiness']
cycle = detect_cycle_phases(readiness, sleep, period_tags=tags or None)
if cycle['current_phase'] != 'unknown':
    phase = cycle['current_phase']
    day = cycle['estimated_cycle_day']
    print(f"\n  CYCLE: {phase} phase (day {day}), confidence: {cycle['confidence']}")
    if phase in ('luteal', 'luteal (extended)'):
        print(f"    Expect: temp elevated, HRV lower, RHR higher — don't over-interpret dips")
    if cycle['next_period_estimate']:
        print(f"    Next period estimate: {cycle['next_period_estimate']}")

# --- Tags this week ---
this_week_tags = [t for t in tags if t.get('day', '') >= this_week_start]
if this_week_tags:
    print(f"\n  LOGGED EVENTS:")
    for t in this_week_tags:
        label = (t.get('tag_type') or '').replace('tag_generic_', '').replace('_', ' ')
        comment = f" — {t['comment']}" if t.get('comment') else ""
        print(f"    {t['day']}: {label}{comment}")

# --- Workout summary ---
workouts = d.get('workouts', [])
this_week_workouts = [w for w in workouts if w.get('day', '') >= this_week_start]
if this_week_workouts:
    total_cal = sum(w.get('calories', 0) for w in this_week_workouts)
    total_dur = sum(w.get('duration_seconds', 0) for w in this_week_workouts) / 60
    activities = {}
    for w in this_week_workouts:
        a = w.get('activity', 'unknown')
        activities[a] = activities.get(a, 0) + 1
    activity_str = ', '.join(f"{v}x {k}" for k, v in activities.items())
    print(f"\n  EXERCISE: {len(this_week_workouts)} sessions ({activity_str})")
    print(f"    Total: {total_dur:.0f} min, {total_cal:.0f} cal")

    # Exercise-sleep correlation
    workout_days = set(w['day'] for w in this_week_workouts)
    workout_sleep = [s for s in this_week_sleep if s.get('day') in workout_days and s.get('score')]
    rest_sleep = [s for s in this_week_sleep if s.get('day') not in workout_days and s.get('score')]
    if workout_sleep and rest_sleep:
        wo_avg = safe_mean([s['score'] for s in workout_sleep])
        rest_avg = safe_mean([s['score'] for s in rest_sleep])
        diff = wo_avg - rest_avg
        print(f"    Sleep on workout days: {wo_avg:.0f} vs rest days: {rest_avg:.0f} ({diff:+.0f})")

# --- HR zones & intensity ---
heartrate = d.get('heartrate', [])
user = d.get('user') or {}
if heartrate:
    this_week_hr = [h for h in heartrate if h.get('timestamp', '')[:10] >= this_week_start]
    if this_week_hr:
        hz = compute_hr_zones(this_week_hr, user)
        im = compute_intensity_minutes(this_week_hr, user)
        if hz['zone_minutes']:
            active_zones = {k: v for k, v in hz['zone_minutes'].items() if v > 0 and k != 'below_z1'}
            if active_zones:
                zone_str = ', '.join(f"{k}={v}min" for k, v in active_zones.items())
                print(f"\n  HR ZONES: {zone_str}")
        if im['moderate_minutes'] or im['vigorous_minutes']:
            print(f"  INTENSITY: {im['moderate_minutes']}min moderate, {im['vigorous_minutes']}min vigorous ({im['combined_minutes']}min combined)")

# --- Recovery index ---
ri = compute_recovery_index(sleep, readiness)
if ri['score'] is not None:
    print(f"\n  RECOVERY INDEX: {ri['score']}/100 ({ri['interpretation']})")

# --- Respiratory rate ---
respiration = d.get('respiration', [])
if respiration:
    rt = compute_respiratory_trends(respiration)
    if rt['avg_rate'] is not None:
        print(f"\n  RESPIRATORY RATE: {rt['avg_rate']} brpm avg, trend: {rt['trend']}")

# --- Best/worst night ---
scored = [s for s in this_week_sleep if s.get('score')]
if scored:
    best_night = max(scored, key=lambda s: s['score'])
    worst_night = min(scored, key=lambda s: s['score'])
    print(f"\n  Best night:  {best_night['day']} (score {best_night['score']}, {(best_night.get('total_sleep_seconds') or 0)/3600:.1f}h)")
    print(f"  Worst night: {worst_night['day']} (score {worst_night['score']}, {(worst_night.get('total_sleep_seconds') or 0)/3600:.1f}h)")

# --- Personal Baselines (NEW) ---
spo2 = d.get('spo2', [])
stress_data = d.get('stress', [])
bl = compute_personal_baselines(sleep, readiness, spo2, stress_data, respiration)
if bl.get('status') == 'ok':
    print("---")
    print("YOUR BASELINE (30d)")
    for mk in ['hrv', 'rhr', 'sleep_score', 'deep', 'efficiency']:
        m = bl['metrics'].get(mk, {})
        baseline = m.get('baselines', {}).get('30d', {})
        current = m.get('current', {}).get('7d', {})
        if baseline.get('mean') is not None and current.get('z_score') is not None:
            z = current['z_score']
            print(f"  {mk}: {baseline['mean']} avg — this week z={'+' if z>0 else ''}{z}")

# --- Forward Signals (NEW) ---
fs = compute_forward_signals(sleep, readiness, d.get('workouts', []))
if fs:
    print()
    print("LOOKING AHEAD")
    debt = fs.get('sleep_debt', {})
    if debt.get('weekly_debt_hours') is not None:
        ntc = debt.get('nights_to_clear')
        print(f"  Sleep debt: {debt['weekly_debt_hours']}h" +
              (f" — clears in ~{ntc} nights" if ntc else " — not clearing at current pace"))
    hrv_p = fs.get('hrv_projection', {})
    if hrv_p.get('direction'):
        print(f"  HRV: {hrv_p['direction']} ({hrv_p.get('slope_per_day', 0)}/day), projected 7d: {hrv_p.get('projected_7d')}")
    acwr = fs.get('acwr_trajectory', {})
    if acwr.get('zone'):
        print(f"  Training: ACWR {acwr['acwr']} ({acwr['zone']})")

# --- Gut Score Trend (NEW, if Suna connected) ---
gut_scores = d.get('gut_scores', [])
if gut_scores:
    from statistics import mean as _mean
    scores = [g.get('score', 0) for g in gut_scores if g.get('score') is not None]
    if scores:
        # This week vs last week
        this_week_gs = [g for g in gut_scores if g.get('day', '') >= this_week_start]
        last_week_gs = [g for g in gut_scores if last_week_start <= g.get('day', '') < this_week_start]
        tw_scores = [g['score'] for g in this_week_gs if g.get('score')]
        lw_scores = [g['score'] for g in last_week_gs if g.get('score')]
        print()
        print("GUT SCORE")
        if tw_scores:
            print(f"  This week avg: {round(_mean(tw_scores))}", end="")
            if lw_scores:
                diff = round(_mean(tw_scores) - _mean(lw_scores))
                print(f" ({'+' if diff>0 else ''}{diff} vs last week)", end="")
            print()

        gc = compute_gut_score_correlations(gut_scores, sleep)
        corr = gc.get('correlations', {})
        for k, v in corr.items():
            if abs(v) >= 0.2:
                print(f"  {k}: r={v}")

# --- SLEEP DEBT + DISRUPTIONS ---
sdebt = compute_sleep_debt(sleep)
if sdebt.get('debt_hours') is not None and sdebt['debt_hours'] > 3:
    print("SLEEP DEBT")
    print(f"  14-day debt: {sdebt['debt_hours']}h ({sdebt['avg_recent_hours']}h avg vs {sdebt['target_hours']}h target)")
    print(f"  Trajectory: {sdebt['trajectory']}")
    print()

disrupt = compute_disruption_classification(sleep, readiness, spo2)
this_week_events = [e for e in disrupt.get('events', []) if e.get('day', '') >= this_week_start]
if this_week_events:
    print("DISRUPTIONS THIS WEEK")
    for e in this_week_events:
        print(f"  {e['day']}: {e['classification'].replace('probable_', '')} ({e['recovery_shape']}-shape, {e.get('days_to_recovery', '?')}d recovery)")
    print()

poincare = compute_poincare_hrv(sleep)
if poincare.get('ratio') is not None:
    print(f"AUTONOMIC: Poincaré SD1/SD2 = {poincare['ratio']} ({poincare['interpretation']})")
    print()

print()
PYEOF

Read the full file on GitHub · 440 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 440 lines · 49 tokens per session scan A 2bef441f9d0b

Subscribe to this mod's changes

weekly-report is a skill published in the GitHub repository Itsokay-co/bio-vibing (16 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 49 tokens to every session and 5,826 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens