
structured weight loss for active individuals
v1by FitnessGrid
A protocol for evidence-based weight loss focusing on lean mass preservation, plateau prevention, and metabolic health.
weight-lossproteinmetabolic-adaptationdiet-breaks
Get an AI coach that uses this skill
FitnessGrid is an AI coach that plans your week and adapts as you go. Install structured weight loss for active individuals and your coach will follow this protocol every week, learn from what you actually do, and adjust on the fly.
- Your coach builds the week from this skill
- Adapts to your actual progress, not a static template
- Free to start — no credit card, ~60 seconds to set up
Procedure
-
Baseline Assessment & Goal Setting
- Retrieve user history using
get_user_historyto identify current weight and activity levels. - Calculate Lean Body Mass (LBM) using
compute_lean_body_mass. - Establish a target rate of loss. Aim for a conservative pace of $\le$ 1% of body weight per week to preserve metabolic rate and endocrine health.
- Use
estimate_weight_loss_timelineto set realistic expectations based on this pace.
- Retrieve user history using
-
Nutritional Programming (Lean Mass Preservation)
- Calculate elevated protein requirements using
compute_protein_target. Prioritize high protein to prevent the loss of fat-free mass (FFM). - Determine Total Daily Energy Expenditure (TDEE) using
compute_tdee. - Establish a caloric deficit relative to the TDEE.
- Apply these targets using
set_user_macro_targets, ensuring protein is the primary focus.
- Calculate elevated protein requirements using
-
Exercise Integration
- Confirm the user has a structured Resistance Training (RET) plan, as the synergy between high protein and resistance exercise is essential for losing adipose tissue rather than muscle.
- Encourage 150–250 minutes of physical activity per week to support cardiometabolic health and prevent weight regain.
-
Plateau Prevention & Management
- Monitor for signs of metabolic adaptation (where weight loss stalls despite adherence).
- If a plateau occurs, do not simply increase exercise volume. Instead, implement a Diet Break or Refeed:
- Plan a short period (1–2 weeks) where caloric intake is increased to current maintenance levels.
- Use
compute_tdeeto recalculate maintenance based on the user's new lower body weight.
- Use
create_noteto document the start and end dates of the diet break.
-
Dynamic Adjustments
- As weight decreases, RMR also decreases. Recalculate caloric needs every 4–5% of body weight lost using
compute_bmrandcompute_tdee. - Update macro targets accordingly using
set_user_macro_targets.
- As weight decreases, RMR also decreases. Recalculate caloric needs every 4–5% of body weight lost using
-
Maintenance Transition
- Once a milestone (e.g., 5% total weight loss) or the final goal is reached, transition the user to a structured maintenance phase.
- Shift focus to behavioral stability and mindfulness to address eating behaviors and prevent regain.