# Send Lofy Fitness to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lofy-fitness",
    "name": "Lofy Fitness",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/harrey401/lofy-fitness",
    "canonicalUrl": "https://clawhub.ai/harrey401/lofy-fitness",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lofy-fitness",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lofy-fitness",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/lofy-fitness"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lofy-fitness",
    "downloadUrl": "https://openagent3.xyz/downloads/lofy-fitness",
    "agentUrl": "https://openagent3.xyz/skills/lofy-fitness/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lofy-fitness/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lofy-fitness/agent.md"
  }
}
```
## Documentation

### Fitness Tracker — Workout & Health Accountability

Tracks workouts, meals, PRs, and fitness consistency. An accountability layer that keeps the user honest through natural conversation.

### Data File: data/fitness.json

{
  "profile": { "goal": "", "weight_log": [], "start_date": null },
  "workouts": [],
  "meals": [],
  "prs": {},
  "weekly_summary": [],
  "current_week": { "workout_count": 0, "target": 0, "workouts": [] }
}

### Workout Entry Format

{
  "date": "2026-02-07",
  "type": "strength",
  "muscle_groups": ["chest", "triceps"],
  "exercises": [
    { "name": "Bench Press", "sets": [{"weight": 185, "reps": 5}] }
  ],
  "duration_min": 60,
  "notes": ""
}

### Meal Entry Format

{
  "date": "2026-02-07",
  "meal": "lunch",
  "description": "Chicken bowl with rice",
  "estimated_calories": 650,
  "estimated_protein_g": 45,
  "time": "12:30"
}

### Workouts

"bench 185x5 185x4" → Bench Press, 2 sets: 185×5, 185×4
"tricep pushdowns 50x12 x3" → 3 sets of 50×12
"went for a 5k run, 28 minutes" → cardio, running, 5km, 28min
"did legs" (no details) → log muscle group, note "details not provided", still counts

### Meals

"had chipotle for lunch" → estimate ~650 cal, ~40g protein
"protein shake after gym" → estimate ~200 cal, ~30g protein
"skipped breakfast" → note it; if 3+ day pattern, gently mention

### PR Detection

After parsing workouts, check each exercise against stored PRs:

Epley 1RM = weight × (1 + reps/30)
If new 1RM exceeds stored PR: update and celebrate
Only celebrate PRs, not every workout

### Instructions

Always read data/fitness.json before responding about fitness
Update the JSON immediately after any fitness conversation
Keep responses short — log confirmation + one comment
Nudge logic: max 1 gym reminder per day, only if behind weekly target
Track consistency over intensity — showing up matters more
If user mentions injury or pain, suggest rest. Never push through pain
Weekly report: show trends (improving? plateauing? declining?) with data
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: harrey401
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lofy-fitness)
- [Send to Agent page](https://openagent3.xyz/skills/lofy-fitness/agent)
- [JSON manifest](https://openagent3.xyz/skills/lofy-fitness/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lofy-fitness/agent.md)
- [Download page](https://openagent3.xyz/downloads/lofy-fitness)