Borrowing it
Nothing to install: this file belongs to DIGI-UW/OpenELIS-Global-2. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/DIGI-UW/OpenELIS-Global-2/develop/.specify/oe/commands/download-ci-logs.mdgit clone --depth 1 https://github.com/DIGI-UW/OpenELIS-Global-2Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/digi-uw/openelis-global-2/download-ci-logs)<a href="https://agentmods.dev/commands/digi-uw/openelis-global-2/download-ci-logs"><img src="https://agentmods.dev/badge/commands/digi-uw/openelis-global-2/download-ci-logs/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/digi-uw/openelis-global-2/download-ci-logs"><img src="https://agentmods.dev/badge/commands/digi-uw/openelis-global-2/download-ci-logs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01324 |
| Opus 5 | $0.00000 | $0.00662 |
| Sonnet 5 | $0.00000 | $0.00265 |
| Haiku 4.5 | $0.00000 | $0.00132 |
Grade A, and why
download-ci-logs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Download CI Logs
When the user invokes /download-ci-logs with optional arguments, run the shim
script so that CI logs are downloaded with safe defaults when the user does not
specify a target.
Behavior
- Explicit target: If the user passes
--pr <number>,--branch <name>, or--run-id <id>, pass all arguments through to the downloader script. - Free text / no target: If the user passes only free text or no arguments,
run the shim with current branch and failed-only (so the downloader is
invoked with
--branch <current-branch>and--failed).
Before downloading logs, ALWAYS run a holistic status check first:
# Show ALL workflows at a glance (same view as GitHub PR UI)
gh pr checks $(gh pr view --json number -q '.number') 2>/dev/null || \
gh run list --branch "$(git branch --show-current)" --limit 10
This ensures you identify ALL failing workflows (Backend, Frontend, E2E, etc.)
before downloading logs for just one. A formatting failure in 01 - Backend is
just as blocking as an E2E failure in 03 - E2E.
OpenELIS E2E Pipeline — Finding the Right Run
This project's E2E tests run in a workflow_run-triggered workflow
(E2E Tests) that fires after the 03 - E2E build workflow completes.
The E2E / Tests runs always show head_branch: develop in the API, even
when testing PR code. This means:
gh run list --branch <pr-branch>will NOT find E2E test runs- You must use
gh pr checksto find the E2E test run ID
To find the correct E2E run for a PR:
# Get the E2E / Tests run URL from the PR's check status
gh pr checks $PR_NUMBER 2>&1 | grep "03 Checkpoint - E2E[^-]"
# Output: 03 Checkpoint - E2E fail 0 https://github.com/.../actions/runs/<RUN_ID> ...
# Extract the run ID
RUN_ID=$(gh pr checks $PR_NUMBER 2>&1 | grep "03 Checkpoint - E2E[^-]" | grep -o 'runs/[0-9]*' | cut -d/ -f2)
# Then download logs for that specific run
.specify/scripts/bash/download-ci-logs-shim.sh --run-id $RUN_ID
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 129 lines · 0 tokens per session scan A 4417bb4863a4
download-ci-logs is a command published in the GitHub repository DIGI-UW/OpenELIS-Global-2 (252 stars, last pushed today), licensed MPL-2.0. It costs nothing until one of its globs matches a file; then it loads 1,324 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
domains
Apply the CLI runtime and safety contract before executing a command. Runtime --help is authoritative.
access
Apply the CLI runtime and safety contract before executing a command. Runtime --help is authoritative.
ship
Deploy feature through automated staging validation to production with rollback testing.
check-release-health
Summarize the CI health of an OpenShift release using live data from the openshift-ci-mcp server.
release
Standalone SDK release command for the BUILD repo. Not a workspace phase — runs independently after any number of implement/redteam cycles. Handles PyPI publishing, documentation deployment, and CI management for the kailash Python SDK and its framework packages.
ADO: Get Build Info
Query Azure DevOps build pipeline status and failure details, optionally linking results to work items.