Fit
What Most Fitness Advice Gets Wrong
Fitness advice is almost always written for someone with unlimited time, perfect recovery,
consistent sleep, no stress, no travel, and a body that responds predictably to training.
That person does not exist.
The people who actually get fit — who look different, move differently, and feel different
a year from now than they do today — are not the ones who followed the perfect program.
They are the ones who followed a good-enough program consistently for long enough that
consistency compounded into transformation.
This skill is built for real people with real constraints.
The System
FITNESS_OS = {
"assessment": {
"current_state": ["Current weight and body composition if known",
"Current training frequency and type",
"Movement limitations or injuries",
"Energy levels across the day",
"Sleep quality and quantity"],
"goal_clarity": {
"aesthetic": "Body composition change — fat loss, muscle gain, or both",
"performance": "Specific metric — run 5K, deadlift bodyweight, 10 pullups",
"health": "Blood markers, blood pressure, longevity, pain reduction",
"functional": "Move better, carry more, hurt less"
},
"constraint_map": ["Days per week available for training",
"Minutes per session realistic",
"Equipment available",
"Injuries or restrictions",
"Travel frequency"]
}
}
Training Architecture
PROGRAM_DESIGN = {
"minimum_effective_dose": {
"principle": "The smallest training stimulus that produces the desired adaptation.
More is not better. Enough is better.",
"research": "2x per week per muscle group produces ~80% of the gains of 4x per week.
3x per week per muscle group captures nearly all available adaptation.",
"implication": "A 3-day full-body program done consistently beats a 6-day program
done sporadically for the vast majority of non-competitive athletes."
},
"progressive_overload": {
"definition": "Systematically increasing training stimulus over time to force adaptation",
"methods": ["Add weight to the bar",
"Add reps at same weight",
"Add sets",
"Reduce rest period",
"Improve movement quality"],
"tracking": """
def log_workout(exercise, sets, reps, weight):
session = {
"date": today,
"exercise": exercise,
"volume": sets * reps * weight,
"top_set": max_weight_lifted
}
compare_to_last_session(session)
if no_progress_in_3_weeks:
flag_for_program_adjustment()
"""
},
"recovery_management": {
"signals_of_under_recovery": ["Resting HR elevated vs baseline",
"Performance declining week over week",
"Motivation to train is unusually low",
"Sleep quality deteriorating",
"Persistent muscle soreness beyond 72 hours"],
"response": "Reduce volume by 40-50% for one week before resuming progression"
}
}
Nutrition for Fitness Goals
NUTRITION_FRAMEWORK = {
"fat_loss": {
"principle": "Caloric deficit is required. Protein is non-negotiable.",
"target": "0.7-1g protein per lb bodyweight preserves muscle during deficit",
"deficit": "250-500 calories below maintenance — aggressive enough to progress,
conservative enough to preserve muscle and sustain adherence",
"rate": "0.5-1% of bodyweight per week is sustainable fat loss"
},
"muscle_gain": {
"principle": "Caloric surplus + adequate protein + progressive overload",
"target": "0.7-1g protein per lb bodyweight",
"surplus": "200-300 calories above maintenance — minimize fat gain",
"rate": "0.25-0.5 lb per week for natural trainers is realistic muscle gain"
},
"body_recomposition": {
"who": "Beginners, detrained individuals, people returning from injury",
"approach": "Maintenance calories, high protein, progressive training",
"reality": "Simultaneous fat loss and muscle gain is possible but slower than
dedicated phases for either goal"
}
}
When Life Disrupts the Plan
DISRUPTION_PROTOCOLS = {
"travel": {
"hotel_gym": "Minimum: 30 min, compound movements, maintain frequency",
"no_gym": "Bodyweight protocol — push, pull, hinge, squat, carry variations",
"principle": "Maintenance beats nothing. One session per week prevents detraining."
},
"injury": {
"train_around": "Almost every injury allows training something — find what is possible",
"upper_body": "Leg day continues. Lower body injury is not a rest day.",
"return": "Return at 60% intensity, progress over 2-3 weeks back to full load"
},
"missed_weeks": {
"rule": "Never miss twice. One disruption is life. Two is a pattern.",
"return": "Reduce weight by 20-30%, rebuild over 1-2 weeks — prevents injury"
}
}
Progress Tracking
METRICS_THAT_MATTER = {
"performance": "Weight lifted, reps completed, pace, distance — objective and motivating",
"body": "Weekly average weight, monthly measurements, photos every 4 weeks",
"habits": "Training sessions completed vs planned — consistency is the metric",
"energy": "Subjective energy and mood — leading indicator of program sustainability",
"avoid": "Daily scale weight as primary metric — noise overwhelms signal"
}
Quality Check
- - [ ] Goal is specific and time-bound
- [ ] Program is matched to actual available time and equipment
- [ ] Progressive overload built into the plan
- [ ] Nutrition targets provided for stated goal
- [ ] Disruption protocols ready for travel and injury
- [ ] Progress tracking is objective and scheduled
健身
大多数健身建议错在哪里
健身建议几乎总是写给那些拥有无限时间、完美恢复能力、规律睡眠、没有压力、无需出差、身体对训练反应可预测的人。
这种人并不存在。
那些真正练出效果的人——一年后与现在相比,体型不同、动作不同、感觉也不同——并不是那些遵循完美计划的人。他们是那些长期坚持执行一个足够好的计划,让坚持累积成蜕变的人。
这项技能是为那些面临真实限制的真实人群打造的。
系统
FITNESS_OS = {
评估: {
当前状态: [已知的当前体重和身体成分,
当前的训练频率和类型,
运动限制或伤病,
全天精力水平,
睡眠质量和时长],
目标清晰度: {
审美: 身体成分改变——减脂、增肌或两者兼有,
表现: 具体指标——跑5公里、硬拉自身体重、完成10个引体向上,
健康: 血液指标、血压、长寿、减轻疼痛,
功能性: 动作更佳、负重更多、疼痛更少
},
限制因素图: [每周可用于训练的天数,
每次训练可用的分钟数,
可用设备,
伤病或限制,
出差频率]
}
}
训练架构
PROGRAM_DESIGN = {
最小有效剂量: {
原则: 能产生预期适应的最小训练刺激。更多并不更好。足够才是更好。,
研究: 每个肌群每周训练2次可获得每周4次训练约80%的收益。
每个肌群每周训练3次几乎能获得所有可用的适应。,
启示: 对于绝大多数非竞技运动员来说,坚持执行每周3次全身训练计划,
远胜于断断续续地执行每周6次训练计划。
},
渐进超负荷: {
定义: 系统性地随时间增加训练刺激以迫使身体适应,
方法: [增加杠铃重量,
以相同重量增加次数,
增加组数,
减少休息时间,
改善动作质量],
追踪:
def log_workout(exercise, sets, reps, weight):
session = {
date: today,
exercise: exercise,
volume: sets reps weight,
topset: maxweight_lifted
}
comparetolast_session(session)
if noprogressin3weeks:
flagforprogram_adjustment()
},
恢复管理: {
恢复不足信号: [静息心率高于基线,
表现逐周下降,
训练动力异常低下,
睡眠质量恶化,
肌肉酸痛持续超过72小时],
应对: 在恢复渐进前,将训练量减少40-50%并维持一周
}
}
针对健身目标的营养
NUTRITION_FRAMEWORK = {
减脂: {
原则: 需要热量缺口。蛋白质摄入不容妥协。,
目标: 每磅体重摄入0.7-1克蛋白质,可在热量缺口期间保护肌肉,
缺口: 低于维持热量250-500卡路里——足够激进以取得进展,
又足够保守以保护肌肉并维持依从性,
速度: 每周减重体重的0.5-1%是可持续的减脂速度
},
增肌: {
原则: 热量盈余 + 充足蛋白质 + 渐进超负荷,
目标: 每磅体重摄入0.7-1克蛋白质,
盈余: 高于维持热量200-300卡路里——尽量减少脂肪增加,
速度: 对于自然训练者,每周增重0.25-0.5磅是现实的增肌速度
},
身体重组: {
适用人群: 初学者、停训者、伤愈回归者,
方法: 维持热量、高蛋白、渐进训练,
现实: 同时减脂和增肌是可能的,但速度慢于
专门针对任一目标的阶段
}
}
当生活打乱计划时
DISRUPTION_PROTOCOLS = {
出差: {
酒店健身房: 最低要求:30分钟,复合动作,保持频率,
无健身房: 自重训练方案——推、拉、铰链、蹲、负重行走变式,
原则: 维持训练总比不练好。每周一次训练可防止停训效应。
},
伤病: {
绕开训练: 几乎每种伤病都允许训练某些部位——找到可行的训练,
上肢受伤: 腿部训练日继续。下肢受伤不是休息日。,
回归: 以60%强度回归,用2-3周时间逐步恢复到完全负荷
},
错过数周: {
规则: 永远不要连续错过两次。一次中断是生活。两次是模式。,
回归: 将重量减少20-30%,用1-2周重建——可防止受伤
}
}
进度追踪
METRICSTHATMATTER = {
表现: 举起的重量、完成的次数、配速、距离——客观且激励人心,
身体: 每周平均体重、每月测量数据、每4周拍照,
习惯: 完成的训练次数 vs 计划次数——坚持本身就是衡量标准,
精力: 主观精力和情绪——计划可持续性的领先指标,
避免: 将每日体重秤读数作为主要指标——噪音会淹没信号
}
质量检查
- - [ ] 目标是具体且有时限的
- [ ] 计划与实际可用时间和设备相匹配
- [ ] 计划中内置了渐进超负荷
- [ ] 为既定目标提供了营养目标
- [ ] 为出差和伤病准备好了中断应对方案
- [ ] 进度追踪是客观且按计划进行的