Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

strong-app强大的应用程序

Agent Skill

strong-app 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,919

周安装

199

GitHub Stars

1

下载量

1,544
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:strong-app(强大的应用程序)
来源仓库:https://github.com/ivanvmoreno/strong-app
安装命令:
openclaw skills install strong-app
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install strong-app

简介

strong-app 对接 Strong v6 健身追踪器 REST API,支持登录、训练记录与模板管理。

  • 适合同步力量训练数据、管理文件夹标签与测量指标。
  • 可获取锻炼日志与自定义小部件配置信息。
  • 需用户提供账户凭据进行身份验证。strong-app 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 使用前请确认 API 版本兼容性与数据隐私政策。

SKILL.md

name
strong-app
description
>
version
1.1.0
homepage
https://github.com/dmzoneill/strongapp-api
metadata
clawdbot
requires
env
bins
primaryEnv
STRONG_USERNAME
emoji
\F4AA
files

Strong Workout Tracker (v6 API)

Unofficial REST API for the Strong workout tracking app (v6+). All API interaction goes through the CLI dispatcher at scripts/strong_runner.py.

Warning: This API is reverse-engineered and unofficial. Use at your own risk.

Environment Variables

VariableDescription
STRONG_USERNAMEStrong account username or email
STRONG_PASSWORDStrong account password

Both must be set before running any command. The CLI reads them automatically.

Runner

All commands are invoked via:

python3 scripts/strong_runner.py <command> [--param value ...]

Every command authenticates automatically (login is handled internally), prints JSON to stdout, and exits. No manual token management is needed.

Workflow

  1. Pick the appropriate subcommand from the list below.
  2. Run it — authentication and token handling happen inside the runner.
  3. All collection responses use HAL format with _links, _embedded, and total.

1. Login

Authenticate and return tokens. Rarely needed directly — all other commands log in automatically.

python3 scripts/strong_runner.py login

Output: { "accessToken": "eyJ...", "refreshToken": "kf3Z...", "userId": "uuid" }


2. Refresh Token

Renew an expired access token without re-entering credentials.

python3 scripts/strong_runner.py refresh_token

Output: { "accessToken": "eyJ...", "refreshToken": "...", "expiresIn": 1200, "userId": "uuid" }


3. Get User Profile

Fetch the authenticated user's profile, preferences, and purchases.

python3 scripts/strong_runner.py get_profile

Response keys: id, created, lastChanged, username, email, emailVerified, name, goal, preferences, purchases, legacyPurchase, legacyGoals, startHistoryFromDate, firstWeekDay, availableLogins, migrated.


4. List Exercises (Measurements)

Fetch all exercises in the user's library.

python3 scripts/strong_runner.py list_exercises

Response (HAL):

{
  "_links": { "self": {...} },
  "_embedded": {
    "measurement": [
      {
        "id": "uuid",
        "created": "ISO8601",
        "lastChanged": "ISO8601",
        "name": { "custom": "Bench Press (Barbell)" },
        "instructions": { "custom": "..." },
        "media": [],
        "cellTypeConfigs": [{ "cellType": "...", "mandatory": true }],
        "measurementType": "EXERCISE"
      }
    ]
  },
  "total": 360
}

5. Get Single Exercise

python3 scripts/strong_runner.py get_exercise --measurement_id <uuid>
ParameterRequiredDescription
--measurement_idYesExercise/measurement UUID

6. List Workout Templates

Fetch all workout templates (routines).

python3 scripts/strong_runner.py list_templates

Response (HAL):

{
  "_embedded": {
    "template": [
      {
        "id": "uuid",
        "created": "ISO8601",
        "lastChanged": "ISO8601",
        "name": { "custom": "Push Day" },
        "access": "PRIVATE",
        "logType": "TEMPLATE",
        "_embedded": {
          "cellSetGroup": [
            { "id": "uuid", "cellSets": [...] }
          ]
        }
      }
    ]
  },
  "total": 75
}

7. Get Single Template

python3 scripts/strong_runner.py get_template --template_id <uuid>
ParameterRequiredDescription
--template_idYesTemplate UUID

Response keys: id, created, lastChanged, name, access, logType, _embedded.cellSetGroup[] (each with id, cellSets[]).


8. List Workout Logs

Fetch all completed workout sessions.

python3 scripts/strong_runner.py list_logs

Response (HAL):

{
  "_embedded": {
    "log": [
      {
        "id": "uuid",
        "created": "ISO8601",
        "lastChanged": "ISO8601",
        "name": { "custom": "Push Day" },
        "access": "PUBLIC",
        "startDate": "ISO8601",
        "endDate": "ISO8601",
        "logType": "WORKOUT",
        "_embedded": {
          "cellSetGroup": [
            { "id": "uuid", "cellSets": [...] }
          ]
        }
      }
    ]
  },
  "total": 552
}

9. Get Single Log

Fetch a single workout log. Pass --include_measurement to embed exercise data.

python3 scripts/strong_runner.py get_log --log_id <uuid>
python3 scripts/strong_runner.py get_log --log_id <uuid> --include_measurement
ParameterRequiredDescription
--log_idYesLog UUID
--include_measurementNoInclude exercise/measurement data in the response

Response keys: id, created, lastChanged, name, access, startDate, endDate, logType, _embedded.cellSetGroup[] (each with id, cellSets[], _embedded.cellSet[]).


10. List Folders

Fetch workout template folders.

python3 scripts/strong_runner.py list_folders

Response (HAL): _embedded.folder[] with keys: id, created, lastChanged, name, index.


11. List Tags

Fetch exercise tags/categories.

python3 scripts/strong_runner.py list_tags

Response (HAL): _embedded.tag[] with keys: id, created, name, color, isGlobal.


12. List Widgets

Fetch dashboard widget configuration.

python3 scripts/strong_runner.py list_widgets

Response (HAL): _embedded.widget[] with keys: id, created, lastChanged, index, widgetType, parameters.


13. Share a Template

Generate a shareable link for a workout template.

python3 scripts/strong_runner.py share_template --template_id <uuid>
ParameterRequiredDescription
--template_idYesTemplate UUID

14. Share a Workout Log

Generate a shareable link for a workout log.

python3 scripts/strong_runner.py share_log --log_id <uuid>
ParameterRequiredDescription
--log_idYesLog UUID

15. Get Shared Link

Retrieve a shared template or log by its link ID.

python3 scripts/strong_runner.py get_shared_link --link_id <id>
ParameterRequiredDescription
--link_idYesShared link ID

16. Get Log at Date

Fetch workout logs whose startDate falls on a specific date. Client-side filter over list_logs.

python3 scripts/strong_runner.py get_log_at_date --date 2025-03-15
python3 scripts/strong_runner.py get_log_at_date --date 2025-03-15T14:30:00+01:00
ParameterRequiredDescription
--dateYesTarget date (YYYY-MM-DD or ISO-8601 timestamp)

Response (HAL): _embedded.log[] — only logs matching the given calendar date.


17. Get Logs in Range

Fetch workout logs between two dates (inclusive). Client-side filter over list_logs.

python3 scripts/strong_runner.py get_logs_in_range --from 2025-01-01 --to 2025-03-31
ParameterRequiredDescription
--fromYesStart date (YYYY-MM-DD or ISO-8601)
--toYesEnd date (YYYY-MM-DD or ISO-8601)

Response (HAL): _embedded.log[] — logs sorted by startDate, within the range.


18. Get Latest Log

Return the single most recent workout log by startDate. Client-side filter over list_logs.

python3 scripts/strong_runner.py get_latest_log

Response: A single log object (not wrapped in _embedded).


19. Search Logs by Name

Search workout logs by name using a case-insensitive substring match. Client-side filter over list_logs.

python3 scripts/strong_runner.py search_logs_by_name --name "push day"
ParameterRequiredDescription
--nameYesSubstring to match against log names

Response (HAL): _embedded.log[] — matching logs.


20. Search Exercises by Name

Search exercises by name using a case-insensitive substring match. Client-side filter over list_exercises.

python3 scripts/strong_runner.py search_exercises_by_name --name "bench press"
ParameterRequiredDescription
--nameYesSubstring to match against exercise names

Response (HAL): _embedded.measurement[] — matching exercises.


21. Get Exercise History

Return all workout logs that contain a specific exercise (by measurement ID). Client-side filter over list_logs.

python3 scripts/strong_runner.py get_exercise_history --measurement_id <uuid>
ParameterRequiredDescription
--measurement_idYesExercise/measurement UUID to search for

Response (HAL): _embedded.log[] — logs containing the exercise, sorted by startDate.


External endpoints

EndpointPurpose
https://back.strong.app/auth/loginAuthenticate and obtain JWT tokens
https://back.strong.app/auth/login/refreshRefresh an expired access token
https://back.strong.app/api/users/{userId}User profile
https://back.strong.app/api/users/{userId}/measurementsExercises (measurements)
https://back.strong.app/api/users/{userId}/templatesWorkout templates
https://back.strong.app/api/users/{userId}/logsWorkout logs
https://back.strong.app/api/users/{userId}/foldersTemplate folders
https://back.strong.app/api/users/{userId}/tagsExercise tags
https://back.strong.app/api/users/{userId}/widgetsDashboard widgets
https://back.strong.app/api/links/{linkId}Shared links

No other external endpoints are contacted.


Security and privacy

  • Credentials are read exclusively from STRONG_USERNAME and STRONG_PASSWORD environment variables and are never logged, cached, or written to disk.
  • Tokens (JWT access and refresh) are held in memory only for the duration of a single invocation and are never persisted.
  • All traffic uses HTTPS only to back.strong.app.
  • The runner script (scripts/strong_runner.py) is pure Python using only the standard library — no shell expansion or interpolation of user input occurs.
  • No local files are read or written.

Model invocation note

The agent should invoke this skill whenever the user asks about their Strong app workouts, exercises, templates, workout history, tags, folders, or training data. The agent should call login implicitly before any data-fetching command and never expose raw tokens to the user. Prefer list_logs and list_templates for broad queries, and get_log --log_id ... or get_template --template_id ... for specific lookups.


Trust statement

This skill is unofficial and reverse-engineered. It is not affiliated with, endorsed by, or supported by Strong Fitness Ltd. The API surface may change without notice. Use at your own risk. The author assumes no liability for data loss or account restrictions resulting from use of this skill.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.67%
按下载量换算1,415

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills