Agent skill
plan-adjuster
Recomputes upcoming workouts based on recent runs and user feedback. Use when recent performance deviates from plan, user provides negative feedback, or recovery signals indicate adjustment needed with deterministic safety caps.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/plan-adjuster
Metadata
Additional technical details for this skill
- agent
- cursor
- short description
- Adaptive adjustment of future sessions with change logs and recovery tips.
SKILL.md
When Cursor should use this skill
- Nightly job or immediately after a run is logged
- When the user reports fatigue/injury or requests easier/harder weeks
- When performance data indicates plan adjustment is needed
- When implementing adaptive training features or debugging adjustment logic
Invocation guidance
- Load
Plan,Workout,TrainingHistory, andRecentRunTelemetry[]. - Apply deterministic ceilings from
v0/lib/planAdaptationEngine.tsandv0/lib/plan-complexity-engine.tsbefore calling the model. - Return
Adjustment[], optionalRecoveryRecommendation, andconfidence. - Only adjust future workouts - never modify completed runs.
- Maintain weekly volume within safe limits (±20-30%).
Input schema (JSON)
ts
{
"profile": UserProfile,
"currentPlan": Plan,
"trainingHistory": TrainingHistory,
"feedback": { "rpeTrend"?: number, "soreness"?: string, "sleepQuality"?: string }
}
Output schema (JSON)
ts
{
"appliedAt": string,
"updates": Adjustment[],
"recovery"?: RecoveryRecommendation,
"confidence": "low" | "medium" | "high",
"safetyFlags"?: SafetyFlag[]
}
Integration points
- API:
v0/app/api/plan/adjust(to add), or chat-triggered adjustments - Logic:
v0/lib/planAdjustmentService.ts- Adjustment orchestrationv0/lib/planAdaptationEngine.ts- Adaptive algorithmsv0/lib/plan-complexity-engine.ts- Safety caps
- UI: Plan/Today screens (badge adjusted sessions)
- Notifications:
v0/lib/email.ts- Email user about significant adjustments - Database: Update
workoutstable, log adjustments inplan_adjustments(if added)
Safety & guardrails
- Never rewrite completed history; adjust only future sessions.
- If fatigue/injury signals present, lower intensity/volume and consider rest-day insertion.
- Emit
SafetyFlagon unsafe load proposals; clamp to deterministic caps. - Maintain at least one rest day per week.
- If multiple negative signals, reduce load by at least one level.
- Hard stop on pain/injury mentions - recommend rest and professional consultation.
Adjustment types and triggers
Intensity adjustments
- Trigger: High RPE trend (>7 for easy runs), poor sleep, soreness
- Action: Reduce pace target by 15-30 seconds/km, lower HR zone
- Example: Tempo → Easy, Intervals → Tempo
Volume adjustments
- Trigger: Missed runs, fatigue, low consistency
- Action: Reduce duration by 10-30%, maintain intensity
- Example: 60min easy → 45min easy
Session swaps
- Trigger: Schedule conflicts, weather, preferences
- Action: Reschedule within same week, maintain weekly pattern
- Example: Tuesday intervals ↔ Thursday tempo
Rest day insertion
- Trigger: Multiple fatigue signals, injury risk, poor recovery
- Action: Replace easy run with rest or cross-training
- Example: Easy run → Rest day
Cross-training substitution
- Trigger: Soreness, minor injury, surface limitations
- Action: Replace easy run with cycling/swimming/walking
- Example: Easy run → 45min cycling
Telemetry
- Emit
ai_skill_invokedandai_adjustment_appliedwith:adjustments_countconfidencesafety_flagsadjustment_types(array of change types)user_id(hashed)latency_ms
Common edge cases
- No adjustment needed: Return empty adjustments array, confirm plan is on track
- Conflicting signals: Prioritize safety, default to more conservative option
- Major deviation: Consider full plan regeneration instead of adjustments
- Peak training: Allow slightly higher load if race is imminent and recovery is adequate
- Taper period: Protect taper, only minor adjustments allowed
Testing considerations
- Test with various feedback combinations (RPE, soreness, sleep)
- Verify load caps are enforced
- Test that completed runs are never modified
- Validate adjustment rationale clarity
- Test with missing data (partial feedback)
- Verify SafetyFlag emission for risky adjustments
Didn't find tool you were looking for?