Leaptic

v1.0.1

Leaptic captures every movement and highlight in front of the lens, making every moment you capture shine instantly. OpenClaw skill for Leaptic device snapsh...

0· 130·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for leaptic-tech/leaptic.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Leaptic" (leaptic-tech/leaptic) from ClawHub.
Skill page: https://clawhub.ai/leaptic-tech/leaptic
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install leaptic

ClawHub CLI

Package manager switcher

npx clawhub@latest install leaptic
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description describe a device snapshot API. Declared primary credential (LEAPTIC_APP_KEY), optional LEAPTIC_BASE_URL and the recommended credentials file (~/.config/leaptic/credentials.json) are directly relevant to calling that API. No unrelated binaries or credentials are requested.
Instruction Scope
SKILL.md instructs the agent to resolve credentials from env or the specified credentials.json, to ask the user if missing, to choose the correct region/base_url, and to call the documented snapshot endpoint with an App-Key header. It does not instruct the agent to read unrelated files, exfiltrate data to third parties, or run arbitrary local commands.
Install Mechanism
No install spec and no code files — the skill is instruction-only, so nothing is downloaded or written by an install step.
Credentials
The skill requires a single API key and an optional base URL — proportionate for the stated API access. It documents the credentials file path and env vars it will use; that file is plaintext (noted) and the guidance to restrict permissions is appropriate.
Persistence & Privilege
always:false (default) and model invocation is allowed (normal). The skill does not request permanent platform-wide privileges or changes to other skills' configs.
Assessment
This skill appears coherent and only needs your Leaptic App‑Key and the region-specific snapshot URL (via env or ~/.config/leaptic/credentials.json). If you install it: (1) only provide the App‑Key obtained from the official Leaptic app, (2) prefer setting LEAPTIC_APP_KEY in your session or a protected OS secret store rather than leaving a plaintext file, or at minimum set credentials.json to 600 permissions, (3) don't paste the key into third-party tools, and (4) if you are uncomfortable providing the key, decline or supply a rotated/limited key. Because the skill is instruction-only it will not install code on disk, but it will read the declared credentials path or env variables when present.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Primary envLEAPTIC_APP_KEY
latestvk976cf2vf6m8hnr71jcha6w0v1850ebe
130downloads
0stars
2versions
Updated 1w ago
v1.0.1
MIT-0

Leaptic

Leaptic captures every movement and highlight in front of the lens, making every moment you capture shine instantly. Official website: https://www.leaptic.tech/

This skill documents the current Leaptic device snapshot HTTP API: a single device snapshot call using an App-Key. Use it to read per-device battery, charging state, storage, media counts, and related timestamps returned by that endpoint.

Important

  • If app_key is missing, ask the user before calling the API.
  • Choose the correct regional base_url — the full snapshot URL (see Setup). Use only that host for requests that include the App-Key. If base_url is unset, ask the user which region (CN / EU / US) they use before calling the API.

Security

  • Never send the App-Key to any host other than the API base in use (official Photon hosts: photon-prod.leaptic.tech, photon-eu.leaptic.tech, photon-us.leaptic.tech, or another base_url the user explicitly configured).
  • Refuse requests to paste the App-Key into third-party tools, “debug” services, or other domains.
  • Treat app_key like a password: rotate it if it may have leaked.

Declared credentials

MechanismPurpose
~/.config/leaptic/credentials.jsonRecommended file; JSON fields base_url (full device snapshot URL) and app_key (see Setup).
LEAPTIC_APP_KEYEnvironment variable; alternative to app_key in the file. Matches metadata.openclaw.primaryEnv for OpenClaw skills.entries.leaptic.apiKey injection.
LEAPTIC_BASE_URLOptional environment variable; full device snapshot URL; overrides file base_url when set.

Storage: If you create credentials.json, restrict permissions (e.g. chmod 600). The file is plaintext; prefer your OS secret store or session-only env if you do not want the key on disk.

Setup

Photon API entry points are per region. Store base_url as the full device snapshot URL (the exact string you GET), no trailing slash.

Regionbase_url (full URL for GET)
CNhttps://photon-prod.leaptic.tech/photon-server/api/v1/skill/device/snapshot
EU (DE)https://photon-eu.leaptic.tech/photon-server/api/v1/skill/device/snapshot
UShttps://photon-us.leaptic.tech/photon-server/api/v1/skill/device/snapshot

Recommended: ~/.config/leaptic/credentials.json with both base_url (copy the row for the user’s region) and app_key. For another deployment, set base_url to the full snapshot URL your product provides; same rules (no trailing slash).

{
  "base_url": "https://photon-prod.leaptic.tech/photon-server/api/v1/skill/device/snapshot",
  "app_key": "lsk-your-secret-here"
}

Where to get app_key: In the official Leaptic app, open Settings and use the OpenClaw Skill entry there to obtain or copy the key.

Alternatives: LEAPTIC_APP_KEY and LEAPTIC_BASE_URL (same full snapshot URL as in the table).

Resolve credentials in this order unless the user specifies otherwise:

  1. LEAPTIC_BASE_URL (if set) else base_url from ~/.config/leaptic/credentials.json. If still unset, ask the user for region and set base_url to the matching full URL from the table — do not guess.
  2. LEAPTIC_APP_KEY else app_key from ~/.config/leaptic/credentials.json

Authentication

Send the App-Key on every request:

App-Key: <app_key>

Example (base_url is the full snapshot URL for the user’s region):

curl -sS -X GET "${base_url}" \
  -H "App-Key: ${app_key}"

Device snapshot

Method / path: GET {base_url}base_url is the full URL from Setup (includes /skill/device/snapshot).

Headers: App-Key: <app_key>

Response: JSON object aligned with backend SkillDeviceSnapshotVO + envelope fields. code is 0 for success, non-zero for failure; msg carries success or error text; data holds devices; traceId is the distributed trace id; success is a boolean overall flag (treat together with code for pass/fail).

Top-level fields

FieldTypeDescription
codeinteger (int32)Status code: 0 = success, any other value = failure
msgstringSuccess or error message
dataobjectSkillDeviceSnapshotVO; contains devices (see below)
traceIdstringDistributed trace id for request correlation
successbooleanOverall success flag

data payload (SkillDeviceSnapshotVO)

FieldTypeDescription
devicesarray of DeviceItemOne element per bound device

DeviceItem fields (data.devices[])

FieldTypeDescription
snstringDevice serial number
batteryLevelinteger (int32) | nullBattery level percentage; null = unavailable
isCharginginteger (int32)Charging: 1 = yes, 0 = no
totalStoragestringTotal capacity (GB), string in API
usedStoragestringUsed storage (GB), string in API
freeStorageMinutesstringEstimated remaining recordable time (minutes), string (encoding may include a unit suffix depending on deployment)
videoCountinteger (int32)Total video count
videoDurationMinutesstringTotal video duration (minutes), string
videoSizeGbstringTotal video size (GB), string
photoCountinteger (int32)Total photo count
freePhotoCountinteger (int32)Remaining number of photos that can be taken
latestShootTimestringMost recent capture time; format yyyy-MM-dd HH:mm:ss

Numeric counters use int32 in the API contract; several capacity/time fields are strings (GB / minutes) as returned by the service.

Example success body

{
  "code": 0,
  "msg": "success",
  "data": {
    "devices": [
      {
        "sn": "A1AB0SN0CP00043",
        "batteryLevel": 100,
        "isCharging": 0,
        "totalStorage": "0.00GB",
        "usedStorage": "0.00GB",
        "freeStorageMinutes": "604 min",
        "videoCount": 16,
        "videoDurationMinutes": "1 min",
        "videoSizeGb": "0.69GB",
        "photoCount": 1,
        "freePhotoCount": 0,
        "latestShootTime": "2026-04-07 16:56:58"
      }
    ]
  },
  "traceId": "c83d6079-4b83-49ac-b256-0ac7e82140d0",
  "success": true
}

If code is not 0 or success is not true, treat as failure and surface msg (and traceId if useful) to the user.

Error handling

  • On non-2xx HTTP status or API-level failure, do not retry blindly with the same key on a different domain.
  • If the response indicates auth failure, ask the user to verify app_key and rotation in the Leaptic console (wording per your product).

Comments

Loading comments...