plugins/claude-code-fitness-hermit/skills/set-rpe/SKILL.md
Manually record RPE and subjective notes for a specific Strava activity. Use for backfilling, correcting entries, or rating a non-latest activity that the auto-capture skill skipped.
npx skillsauth add gtapps/claude-code-hermit set-rpeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Records perceived effort and subjective notes for any Strava activity. Thin wrapper over scripts/fitness-lab.ts rpe, which validates the RPE, resolves latest if needed, and does the atomic upsert into state/activity-notes.json.
/claude-code-fitness-hermit:set-rpe <activity-id|latest> <rpe> [notes...]
Parse arguments:
latest.fetch error and exit 1).Run the script:
bun ${CLAUDE_PLUGIN_ROOT}/scripts/fitness-lab.ts rpe <activity-id|latest> <rpe> [notes...]
The script writes {rpe, notes, recorded_at} keyed by activity ID (notes is null when none were provided) and emits {activity_id, written:true, previous:{…}|null}. On {"error":"strava_auth",…} (only reachable via latest, which resolves the ID from Strava) relay the message verbatim; on {"error":"fetch",…} report it and stop.
Confirm from the returned JSON:
previous is null: "Saved RPE <rpe>/10 for activity <activity_id>."previous is present: "Updated RPE for activity <activity_id>. (was: RPE <previous.rpe>/10 — <previous.notes>)"tools
Composes and delivers the daily fitness brief — a forward-looking morning read (readiness + today's plan) or a backward-looking evening read (today's training, or an earned-rest note, + tomorrow's setup) — in the operator's configured voice. Invoke with /claude-code-fitness-hermit:fitness-brief --morning|--evening|--slot <name>. Becomes the plugin's two daily beats — the morning Strava connectivity check and the evening activity sync, RPE binding, and Run deep-dive.
development
Renew the hermit's long-lived Claude login token over the channel, before it expires. Relays a one-time sign-in link to the operator, takes the code back, installs the new token, and restarts. Activates on messages like 'relogin', 'renew my login', 'reauth', 'the login is expiring', or when doctor's credential-expiry check flags setup-token.
development
Synthesizes the past 7 days of archived briefs into a weekly digest — top stories, emerging vs faded themes, category activity, and per-source performance built from archive frontmatter. Delivers to the operator's configured channel and archives a weekly note. Designed as a weekly routine. Invoke with /feed-hermit:weekly-digest.
development
Manage developing story arcs tracked across briefs — add, resolve, and list active arcs in compiled/story-arcs-*.md. Arc Watch keywords drive the feed-brief arc-tagging enrichment. Invoke with /feed-hermit:story-arcs add|resolve|list.