| name | mobilerun-webhooks |
| description | Build, run, test, or troubleshoot Python receivers for signed Mobilerun webhooks using the published mobilerun-sdk package. Use for HMAC verification, webhook retries and replay protection, secure downloads of files referenced by workflow events, or the bundled webhook showcase. Do not use for general Mobilerun tasks, outbound workflow configuration without a receiving webhook, or TypeScript task-runner integrations. |
Mobilerun webhooks
Use the repository's runnable
Python webhook receiver as the
source of truth. Resolve this link relative to this SKILL.md, even when the
current working directory is elsewhere. Preserve its authentication and
download safeguards when adapting it.
Keep responsibilities separated across config.py, security.py,
downloader.py, application.py, and http_server.py. Keep receiver.py as
the minimal executable entry point.
Workflow
- Inspect the repository-root
pyproject.toml and keep
mobilerun-sdk installed from PyPI. Do not add a local editable source
override.
- Read the receiver's
README.md
and .env.example.
Use MOBILERUN_CLOUD_API_KEY and MOBILERUN_BASE_URL exactly as shown.
- Configure a long random
WEBHOOK_PATH and the endpoint's signing secret in
WEBHOOK_SECRET.
- For offline work, run the tests and stop there. Do not create or modify a
real webhook endpoint or workflow.
- Only when the user explicitly requests live verification, start the
receiver and an HTTPS tunnel, create or configure the endpoint, trigger a
real webhook, and confirm a verified event and an atomically saved file
under
DOWNLOAD_DIR.
Required security properties
- Interpret
X-Mobilerun-Timestamp as Unix time in milliseconds. Verify
X-Mobilerun-Signature as sha256=<lowercase hex> where the hex value is
HMAC-SHA256(secret, timestamp-as-ASCII + b"." + exact-raw-body); never
reserialize JSON before verification.
- Use constant-time comparison and reject timestamps outside the configured
freshness window.
- Match the signed event ID/type to their headers and deduplicate event IDs.
- Validate
downloadPath, fileId, filename, declared size, and streamed size.
- Use the authenticated SDK client only for the mobilerun API request.
- Follow the presigned storage redirect without an
Authorization header.
- Write to a temporary file and atomically rename only after validation.
- Return 5xx for transient download failures so mobilerun can retry.
- Never print or commit API keys, signing secrets, or presigned URLs.
SDK usage
The file-content route is not a modeled SDK resource, so call the
mobilerun_sdk.Mobilerun client's public
get(..., cast_to=httpx.Response, stream=True) method for the authenticated API
hop. Handle a presigned storage redirect with a separate unauthenticated
httpx.Client.
After changes, run the repository check from the repository root and run the
skill validator when it is available. Never make live API changes unless the
user explicitly asks to modify or verify a real endpoint or workflow.