lando
1
总安装量
1
周安装量
#52042
全站排名
安装命令
npx skills add https://github.com/jwmossmoz/agent-skills --skill lando
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
claude-code
1
Skill 文档
Lando
Check the status of Mozilla Lando landing jobs using the public API.
Usage
# Check landing job status
curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/<JOB_ID>" | jq
# Example
curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/173397" | jq
# Check only the status field
curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/173397" | jq -r '.status'
# Poll every 90 seconds until landed or failed
JOB_ID=173397
while true; do
STATUS=$(curl -s "https://lando.services.mozilla.com/api/v1/landing_jobs/$JOB_ID" | jq -r '.status')
echo "$(date): $STATUS"
[[ "$STATUS" == "landed" || "$STATUS" == "failed" ]] && break
sleep 90
done
API Response
The API returns a JSON object with these key fields:
| Field | Description |
|---|---|
status |
Job status: submitted, in_progress, landed, failed |
error |
Error message if status is failed |
landed_commit_id |
Commit hash if successfully landed |
created_at |
When the job was submitted |
updated_at |
Last status update time |
Common Statuses
submitted– Job is queuedin_progress– Currently being processedlanded– Successfully landed to the repositoryfailed– Landing failed (checkerrorfield)
Prerequisites
None – the API is publicly accessible. No authentication required for read operations.
Documentation
- Lando Service: https://lando.services.mozilla.com/
- API Base: https://lando.services.mozilla.com/api/v1/
- Mozilla Conduit Documentation: https://moz-conduit.readthedocs.io/
- Source Code: https://github.com/mozilla-conduit/lando-api