Back to Marketplace
FREE
Scanned
Grow Business

BulkCut Coach - Fitness & Diet Tracker

Fitness and diet tracking tool. Use when the user wants to analyze food photos for calories, log workouts, calculate metabolism (BMR/TDEE), get daily calorie summaries, or generate training/diet plans. Invoked with /bulkcut-coach.

Install in one line

mfkvault install bulkcut-coach-fitness-diet-tracker

Requires the MFKVault CLI. Prefer MCP?

New skill
No reviews yet
New skill
FREE

Free to install — no account needed

Copy the command below and paste into your agent.

Instant access • No coding needed • No account needed

What you get in 5 minutes

  • Full skill code ready to install
  • Works with 1 AI agent
  • Lifetime updates included
SecureBe the first

Description

--- name: bulkcut-coach description: Fitness and diet tracking tool. Use when the user wants to analyze food photos for calories, log workouts, calculate metabolism (BMR/TDEE), get daily calorie summaries, or generate training/diet plans. Invoked with /bulkcut-coach. user-invocable: true license: MIT --- # BulkCut Coach - Fitness & Diet Tracker Uses Gemini 3 Flash (via OpenRouter) for food photo analysis and personalized planning. ## How to Use All commands run from the project root. Parse the user's natural language and call the appropriate command via Bash. ### Food Photo Analysis When user shares a food image path: ```bash python scripts/app.py photo <image_path> ``` ### Text Meal Logging When user describes what they ate: ```bash python scripts/app.py meal "<description>" ``` ### Workout Logging When user describes their training (exercises, sets, reps, weight), do NOT use the interactive `train` command. Instead call Python directly: ```bash python -c " import sys; sys.path.insert(0, 'scripts') from training import log_training r = log_training([ {'name': '<exercise>', 'sets': <n>, 'reps': <n>, 'weight_kg': <n>}, ]) print(f'Calories burned: {r[\"calories_burned\"]} kcal') " ``` Parse the user's natural language into the exercise list. Examples: - "4x4 squat at 112.5kg" → `{'name': 'Back Squat', 'sets': 4, 'reps': 4, 'weight_kg': 112.5}` - "3x2 power clean 67.5kg" → `{'name': 'Power Clean', 'sets': 3, 'reps': 2, 'weight_kg': 67.5}` ### Body Metrics When user provides height/weight/age/gender/body fat: ```bash python -c " import sys; sys.path.insert(0, 'scripts') from metabolism import set_metrics p = set_metrics(<height_cm>, <weight_kg>, <age>, '<gender>', <body_fat_pct_or_None>) print(f'BMR: {p[\"bmr\"]} kcal/day\nTDEE: {p[\"tdee\"]} kcal/day') " ``` ### Goal Setting ```bash python scripts/app.py goal <cut|bulk|maintain> ``` ### Daily Summary ```bash python scripts/app.py summary ``` ### Generate Plan ```bash python scripts/app.py plan ``` ### History ```bash python scripts/app.py history ```

Preview in:

Security Status

Scanned

Passed automated security checks

Time saved
How much time did this skill save you?

Related AI Tools

More Grow Business tools you might like

codex-collab

Free

Use when the user asks to invoke, delegate to, or collaborate with Codex on any task. Also use PROACTIVELY when an independent, non-Claude perspective from Codex would add value — second opinions on code, plans, architecture, or design decisions.

Rails Upgrade Analyzer

Free

Analyze Rails application upgrade path. Checks current version, finds latest release, fetches upgrade notes and diffs, then performs selective upgrade preserving local customizations.

Asta MCP — Academic Paper Search

Free

Domain expertise for Ai2 Asta MCP tools (Semantic Scholar corpus). Intent-to-tool routing, safe defaults, workflow patterns, and pitfall warnings for academic paper search, citation traversal, and author discovery.

Hand Drawn Diagrams

Free

Create hand-drawn Excalidraw diagrams, flows, explainers, wireframes, and page mockups. Default to monochrome sketch output; allow restrained color only for page mockups when the user explicitly wants webpage-like fidelity.

Move Code Quality Checker

Free

Analyzes Move language packages against the official Move Book Code Quality Checklist. Use this skill when reviewing Move code, checking Move 2024 Edition compliance, or analyzing Move packages for best practices. Activates automatically when working

Claude Memory Kit

Free

"Persistent memory system for Claude Code. Your agent remembers everything across sessions and projects. Two-layer architecture: hot cache (MEMORY.md) + knowledge wiki. Safety hooks prevent context loss. /close-day captures your day in one command. Z