scrape-chatgpt-workout

scrape-chatgpt-workout is a skill for Claude Code from markmhendrickson/ateles. It costs 75 tokens per session (4,016 once invoked), scanned A, original, MIT.

A browser-based importer that reads a ChatGPT Fitness GPT conversation and reconstructs workout sessions in Neotoma, a knowledge store. It combines the assistant's summaries with the user's original messages.

In plain words
What is it for?
Use it to backfill historical workouts from a ChatGPT conversation when the required browser connection, logged-in tab, and Neotoma access are available.
Why use it?
It converts workout history trapped in a ChatGPT conversation into structured workout-session records that can be stored and reused.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to backfill historical workouts from a ChatGPT conversation when the required browser connection, logged-in tab, and Neotoma access are available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/markmhendrickson/ateles/scrape-chatgpt-workout
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add markmhendrickson/ateles --skill scrape-chatgpt-workout
Clone the repo
git clone --depth 1 https://github.com/markmhendrickson/ateles

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for scrape-chatgpt-workout

README.md
[![agentmods](https://agentmods.dev/badge/skills/markmhendrickson/ateles/scrape-chatgpt-workout.svg)](https://agentmods.dev/skills/markmhendrickson/ateles/scrape-chatgpt-workout)
Your own site
<a href="https://agentmods.dev/skills/markmhendrickson/ateles/scrape-chatgpt-workout"><img src="https://agentmods.dev/badge/skills/markmhendrickson/ateles/scrape-chatgpt-workout.svg" alt="Measured on agentmods" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,016 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.04016
Opus 5 $0.00037 $0.02008
Sonnet 5 $0.00015 $0.00803
Haiku 4.5 $0.00007 $0.00402

Measured 4d ago against content hash 279c4dcb8305, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

scrape-chatgpt-workout scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/scrape-chatgpt-workout/SKILL.md · 377 lines

How it starts

The opening of the file, as written. The whole thing — 377 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Scrape ChatGPT Workout

Capture a ChatGPT Fitness GPT conversation stream, reconstruct workout sessions from both assistant summaries and raw user messages, then store as workout_session entities in Neotoma.

When to Use

  • User says "scrape chatgpt workout", "import chatgpt fitness", "backfill workouts from chatgpt"
  • User provides a ChatGPT conversation URL (chatgpt.com/…/c/…)
  • User wants to backfill historical workout sessions from a ChatGPT fitness log

Prerequisites

  • Claude in Chrome extension connected (required for fetch interception)
  • ChatGPT tab open and logged in
  • Neotoma MCP available

Overview

The skill has two phases:

  1. Capture — Install a fetch interceptor in the ChatGPT tab, trigger conversation API re-fetch, buffer the full streaming response (~4MB for a long conversation)
  2. Reconstruct & Store — Parse the captured mapping tree, reconstruct sessions from assistant summaries + raw user messages, store each session to Neotoma

Phase 0: Cache Check

Before touching the browser, check whether a conversation entity for this chat already exists in Neotoma:

retrieve_entities(entity_type="conversation", search="chatgpt-fitness-gpt-254868b9")

Or by URL pattern:

retrieve_entity_by_identifier(identifier="254868b9-73d0-8329-b395-c48b6b8a8fef", entity_type="conversation")

If a matching entity exists and a linked file_asset (the JSONL transcript) is present, retrieve the file URL and load the messages from it instead of re-scraping. This allows re-analysis without re-opening the ChatGPT tab.

retrieve_file_url(entity_id="<file_asset_entity_id>")
# → download JSONL and parse into _allMessages equivalent

Only proceed to Phase 1 if no cached transcript is found, or if the user explicitly requests a fresh capture.


Phase 1: Capture

Step 1.1 — Confirm tab

Use tabs_context_mcp to confirm the ChatGPT conversation tab is open. If not, ask the user to navigate to the conversation URL first.

Read the full file on GitHub · 377 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 377 lines · 75 tokens per session scan A 279c4dcb8305

Subscribe to this mod's changes

scrape-chatgpt-workout is a skill published in the GitHub repository markmhendrickson/ateles (6 stars, last pushed today), licensed MIT. It adds 75 tokens to every session and 4,016 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.