| name | speediance |
| description | Read completed workouts (summaries and full per-set detail), browse and export the exercise catalog, and push custom training programs to your Speediance (Gym Monster) smart cable machine via its cloud API. Authenticates with your account credentials, caches a session token in your OS user-cache directory (override with SPEEDIANCE_TOKEN_CACHE), and makes outbound HTTPS requests to the Speediance cloud API. Reads and emits structured data — the caller decides where to store it. Ships as a single static binary — no Python or other runtime required.
|
| metadata | {"openclaw":{"emoji":"🏋️","homepage":"https://github.com/stozo04/speediance-cli","primaryEnv":"SPEEDIANCE_EMAIL","permissions":{"network":"[Truncated]","files.read":"[Truncated]","files.write":"[Truncated]"},"requires":{"bins":"[Truncated]","env":"[Truncated]"},"envVars":["[Truncated]","[Truncated]","[Truncated]","[Truncated]","[Truncated]","[Truncated]"]}} |
Speediance — Gym Monster CLI Skill
Talk to your Speediance (Gym Monster) smart cable machine from any agent. Read
completed workouts and push custom programs that appear on the machine ready to run —
no app navigation mid-session.
Unofficial — reverse-engineered from the Android app. Personal use, your own
account only. Built on the MIT-licensed UnofficialSpeedianceWorkoutManager (hbui3)
and speediance-influx (gavinmcfall).
Tested on Gym Monster v1 (SPEEDIANCE_DEVICE_TYPE=1). GM2 is untested.
Setup (one time)
speediance-cli is a single static binary — no Python or other runtime needed.
Install it one of two ways:
go install github.com/stozo04/speediance-cli/cmd/speediance-cli@latest
Then authenticate:
speediance-cli login
Credentials
Set as environment variables — the CLI reads them automatically:
| Variable | Required | Default | Notes |
|---|
SPEEDIANCE_EMAIL | ✓ | — | Account email |
SPEEDIANCE_PASSWORD | ✓ | — | Account password |
SPEEDIANCE_REGION | — | Global | Global or EU |
SPEEDIANCE_DEVICE_TYPE | — | 1 | 1 = Gym Monster v1 |
Alternatively, write a config.json in the working directory (gitignored by the repo):
{
"email": "you@example.com",
"password": "yourpassword",
"region": "Global"
}
You can also put these variables in a gitignored .env file in the working directory — the
SPEEDIANCE_* keys are read from it automatically (exported environment variables still take
precedence). Only those keys are read; the file is parsed into a map and any other keys are
ignored, so a stray .env can never inject unrelated variables into the process environment.
Commands
Read workouts
speediance-cli today --json
speediance-cli today --date 2026-06-17 --json
speediance-cli workouts --days 7 --json
speediance-cli session <training_id> --json
today is the one-shot, agent-friendly entry point. When the client just says
"I did a workout," call today — you do not need to know whether it was a
program, free weights, or a rowing/ski session. The tool finds the day's session(s)
and returns each one fully resolved, as an array of the same {training_id, kind, info, detail} shape that session emits. (kind is "program", "free", or
"".)
Sample workouts --json output (a digest for picking; kind lets you filter):
[
{
"training_id": 123456,
"title": "Upper Body",
"date": "2025-06-15",
"duration_secs": 2700,
"calories": 320,
"volume": 4200.0,
"type": "Strength",
"kind": "program"
}
]
session <id> --json is autonomous and a faithful, complete passthrough. Given
only an id it figures out what the session was — a program/Coach session, free
weights, or a rowing/ski free session — and emits the verbatim Speediance payloads
under a uniform shape. The field names, nesting, and values are exactly what
Speediance returned (leftWatts, forceControlScore, weights, leftBreakTimes,
totalDistance, …); the CLI does not rename, reshape, compute, or fill gaps.
kind tells you which namespace answered, so a type-agnostic consumer always reads
the same two fields:
kind | info | detail |
|---|
"program" | cttTrainingInfo payload (incl. completionRate) | cttTrainingInfoDetail — per-exercise, per-rep arrays |
"free" | freeTraining payload (totals: totalCapacity, totalEnergy, totalDistance for rowing/ski; name for guided sessions) | freeTrainingDetail — [] for a freestyle Free Lift, populated for a guided session (e.g. Aerobic Rowing → per-interval finishedReps with distance/pace/spm + per-stroke traces) |
"" | null | null (no session found in either namespace) |
kind:"free" is the free namespace, not "freestyle". It spans both a
freestyle Free Lift (no info.name, detail: [], aggregates only) and a
guided free-namespace session (has info.name, often a populated detail) —
guided cardio like Aerobic Rowing carries the full per-interval breakdown.
Distinguish via info.name + whether detail has rows; don't assume free ⇒ empty.
A program session:
{
"training_id": 940759,
"kind": "program",
"info": {
"completionRate": 100.0
},
"detail": [
{
"actionLibraryName": "Standing Dual-Handle Hammer Curl",
"maxWeight": 15.0, "maxWeightCount": 5,
"score": 16, "completionScore": 5, "forceControlScore": 4,
"bilateralBalanceScore": 4, "amplitudeStableScore": 3, "actionRating": 3
Notes for consumers:
- Auto-detection is built in — no caller knowledge of the session type is
needed.
session <id> probes the program namespace and falls back to free;
today picks each session's probe order from the day's record list (which
carries the authoritative type — free-first for non-program types), with the
same fallback. The result shape is identical either way.
weight is never invented. There is no synthesized per-set weight. For a
program, the real per-rep weights are in trainingInfoDetail.weights[] (already
per attachment, so a single-handle average is just their mean); a mid-set drop
(e.g. 15×5 → 10×9) is therefore visible. Average or summarize as you see fit.
- Free-namespace detail varies. A freestyle Free Lift records session-level
totals only (
info aggregates, detail: []). A guided free-namespace session
does more: Aerobic Rowing fills detail with per-interval rows
(distance/pace/spm/time) and per-stroke rope-length traces. Always read
detail rather than assuming kind:"free" is empty.
- Absence is preserved. A field or array Speediance omits is omitted in the
output too (e.g. a sparse capture with only
weights); nothing is back-filled.
- Values are unvalidated passthrough. Speediance's fields aren't guaranteed
internally consistent, so derive the metric you want from raw values rather than
trusting a single field — e.g. a rowing split is
distance / time, not the
per-interval pace field (which is an instantaneous sample). The CLI never
"corrects" a value; that interpretation is yours.
- Empty shape.
info is object | null; detail is array | null. These are
the verbatim endpoint payloads (never normalized), so treat both null and
[] as "no rows" — e.g. if not detail. In practice detail is a populated
array for kind:"program", [] for a freestyle Free Lift, populated for a
guided free-namespace session (see above), and null only for .
A trainingId can identify different sessions in the program vs. free
namespaces. Auto-detection prefers the program match; pass --program or
--free to session to force a namespace when an id is ambiguous.
Browse the exercise catalog
speediance-cli library --search "chest" --json
speediance-cli library
Returns [{id, name, muscle, tab}]. The id is required for plan JSON.
Every run saves the full catalog to --out (default library.json) — --search
filters only the stdout view, it does not narrow the saved file.
A committed library.json snapshot ships with the repo (Gym Monster v1) for offline
browsing — regenerate with speediance-cli library to get the freshest catalog or a
different device's exercises.
Create a training program
Author a plan JSON, then push it — the program appears on the machine immediately:
speediance-cli push plan.json --dry-run
speediance-cli push plan.json
Plan JSON format:
{
"name": "Pull Day",
"exercises": [
{
"id": 434,
"title": "Seated Dual-Handle Lat Pulldown",
"sets": [
{"reps": 12, "weight": 20, "mode": 1, "rest": 75},
{"reps": 10, "weight": 22, "mode": 1, "rest": 75},
{"reps": 8
| Field | Type | Notes |
|---|
id | int | From speediance-cli library — IDs differ per account/device |
weight | float | Kilograms |
mode | int | 1=Standard, 2=Eccentric, 3=Isokinetic, 4=Constant, 5=Spotter |
rest | int | Seconds between sets |
Storing what you read
The CLI owns no log format. To keep a record of a session, pull it with workouts --json
and session <id> --json, then write it wherever you keep data (a Markdown sheet, a
database, a notebook). The tool reads and emits structured data; the caller decides the
layout.
Full command reference
| Command | What it does | --json |
|---|
login | Authenticate and cache a session token | — |
workouts [--days N] | List recent completed sessions | ✓ |
today [--date D] | Every session on a day, auto-resolved to type-correct detail (the one-shot entry point) | ✓ |
session <training_id> [--free|--program] | Full, verbatim detail for one session; auto-detects program/free/rowing | ✓ |
library [--search X] [--out FILE] | Dump or search exercise catalog | ✓ |
push <plan.json> [--dry-run] | Create a training program on the account | ✓ |
config show|set|path | Manage config.json | ✓ (show) |
version | Build metadata (also --version) | ✓ |
completion <shell> | Shell completion (bash/zsh/fish/powershell) | — |
Conventions
- stdout is parseable with
--json; all human-readable hints go to stderr.
- Exit codes:
0 success, 2 authentication failure, non-zero for other errors.
- Secrets:
config.json, .token.json, .env are gitignored — never commit them.
- Token caching: after the first login, the token is cached in your OS user-cache
directory (e.g.
%LocalAppData%\speediance\token.json on Windows, ~/.cache/speediance/token.json
on Linux, ~/Library/Caches/speediance/token.json on macOS) and refreshed automatically on
expiry — not in the working directory (so it can't be swept into a commit) and not in the
roaming config dir (so a live credential isn't synced across machines). Override the location with
SPEEDIANCE_TOKEN_CACHE or the token_cache_path config key; run speediance-cli config path to
see where it resolved. A token left in a legacy .token.json by an older version is moved to the
per-user location on first run.
- Dry-run first: always use
--dry-run before push when authoring new programs to
confirm exercise IDs resolved correctly.
- If an endpoint breaks after a Speediance app update, all API calls live in
internal/api — that's the single place to patch.