openclaw-ci-limits
Manage OpenClaw GitHub Actions and Blacksmith CI capacity, runner-registration budgets, fanout caps, main-push single-flight, shard sizing, hosted-runner offload, queue health, and safe ramp-down/ramp-up changes. Use when tuning `.github/workflows/*`, `docs/ci.md`, CI runner labels, matrix `max-parallel`, ClawSweeper/Blacksmith burst protection, CodeQL runner placement, or investigating slow/queued OpenClaw CI.
DeepseekModel
キュレーション済みスキル
品質 優秀 · 90
v1.0.0
取得
https://deepseekmodel.com/api/download.php?id=openclaw-openclaw-agents-skills-openclaw-ci-limits-skill-md&format=skill
ダウンロード .skill
標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name openclaw-ci-limits description Manage OpenClaw GitHub Actions and Blacksmith CI capacity, runner-registration budgets, fanout caps, main-push single-flight, shard sizing, hosted-runner offload, queue health, and safe ramp-down/ramp-up changes. Use when tuning `.github/workflows/*`, `docs/ci.md`, CI runner labels, matrix `max-parallel`, ClawSweeper/Blacksmith burst protection, CodeQL runner placement, or investigating slow/queued OpenClaw CI. OpenClaw CI Limits Use this skill for CI capacity changes, not ordinary test failure triage. The goal is to keep OpenClaw fast while distinguishing runner registration, runner availability, Blacksmith control-plane health, and downstream queue drains. Core Facts Do not assume the scarce resource. Prove whether pressure is runner registrations, eligible runner availability, Blacksmith capacity/control plane, workflow dependencies, test runtime, or a downstream queue writer. GitHub runner registrations for openclaw currently report a 10,000 per 5-minute bucket in actions_runner_registration . Verify the live bucket before each tuning pass because GitHub can change it. The openclaw organization shares one bucket. Core REST quota does not draw down this bucket. Check actions_runner_registration separately; core quota can be healthy while runner registration is throttled. Use about 60% of the live bucket as the operating target. With the current 10,000-registration bucket, keep planned Blacksmith burst load under 6,000 registrations per 5 minutes and leave the rest for other repos, retries, and burst overlap. Jobs that route, notify, summarize, choose shards, or run short CodeQL quality scans should stay on GitHub-hosted runners unless measured evidence says Blacksmith is required. Rejected Experiments Hosted Mac exact dependencies (2026-09-01): The same-head publisher and consumer in run 33458856298 successfully saved and restored a 1.66-GB dependency archive, but setup took 142s versus 86s with the ordinary store cache. Extraction took 82s versus 27s; install improved only from 43s to 35s. Keep hosted Mac jobs on the ordinary store cache. Reconsider only with measured total setup savings, including transfer, extraction and frozen reconciliation, not a successful cache hit. Actions-artifact checkout (2026-08-16): Do not recommend replacing the shared Blacksmith Git fetch with a preflight-produced workspace or .git artifact. PR #124818 measured a 16s Blacksmith checkout baseline versus 7s hosted. The best direct artifact variant cost 1s to pack, 3s to upload, and 11s median to restore; including the serial prefix left only about 1s median improvement and regressed Blacksmith's fast-fetch runs. The official artifact client was worse: run 31971531521 measured 22s median download plus 2s materialization. Blacksmith's fast Actions-cache path does not imply fast Actions-artifact downloads. Reconsider only with measured end-to-end proof for a different transport, including its producer cost and fast-fetch regressions. First Checks Before changing CI, collect current pressure: ghx api rate_limit --jq '{core:.resources.core,graphql:.resources.graphql,search:.resources.search,actions_runner_registration:.resources.actions_runner_registration}' ghx run list -R openclaw/openclaw -- limit 20 --json databaseId,status,conclusion,workflowName,event,headBranch,createdAt,updatedAt,url ghx run list -R openclaw/clawsweeper -- limit 20 --json databaseId,status,conclusion,workflowName,event,headBranch,createdAt,updatedAt,url ghx api repos/openclaw/clawsweeper/actions/runs/<run-id>/jobs --paginate --jq '.jobs[] | {id,name,status,conclusion,labels,created_at,started_at,completed_at,runner_name,runner_group_name}' blacksmith testbox list --all curl -fsS https://clawsweeper.openclaw.ai/api/status | jq '{generated_at,fleet,diagnostics:{errors:.diagnostics.errors}}' curl -fsS https://clawsweeper.openclaw.ai/api/exact-review-queue | jq '{generated_at,review:.lanes.review,publication:.lanes.publication,state_writer,state_append}' node scripts/ci-run-timings.mjs --latest-main node scripts/ci-run-timings.mjs --recent 10 For a suspicious queued run, inspect its jobs. A run-level queued status does not reveal whether the job is waiting on dependencies or has no eligible runner. Compare created_at , started_at , labels , and runner_name . Recheck stale queued runs live before canceling them; cancel only runs proven obsolete. scripts/ci-run-timings.mjs start delay can include workflow dependency wait plus runner queue time. It is trend evidence, not runner-pressure proof alone. Read: .github/workflows/ci.yml .github/workflows/codeql-critical-quality.yml docs/ci.md test/scripts/ci-workflow-guards.test.ts touched planner files under scripts/lib/*ci* , scripts/lib/*test-plan* , or scripts/ci-changed-scope.mjs Diagnose The Bottleneck Classify the issue before changing caps: Runner-registration throttle: many jobs queued before runner assignment, Blacksmith/GitHub reports 403/429 or spam-style 422 responses from generate-jitconfig , and API core quota is still healthy. Treat 422 as this signal only when the request payload is otherwise valid. Fix burstiness and Blacksmith job count. Blacksmith capacity: Blacksmith dashboard shows actual concurrency caps or unavailable capacity. Do not solve this with GitHub workflow fanout alone. Blacksmith Testbox control plane: list, warm, status, or run calls time out before a lease is returned. This is separate from Actions runner registration and Actions job capacity. Trusted source may use the documented local fallback; untrusted source stays blocked. Unavailable runner label: a job is queued with a custom runs-on label, started_at and runner_name remain empty, and no eligible runner exists. Restore an available hosted or registered label; fanout cannot fix it. Workflow dependency wait: the job is queued but required predecessors are not terminal. Fix or wait for the dependency; do not call the whole delay runner queue pressure. OpenClaw test runtime: jobs start quickly but one lane dominates wall time. Use $openclaw-test-performance instead of runner tuning. Real failing CI: one job fails after starting. Use $github:gh-fix-ci or $openclaw-testing , not this skill. ClawSweeper review backlog: review pending/ready grows while publication and state writers remain healthy. Tune review admission/workers in openclaw/clawsweeper . ClawSweeper publication backlog: publication pending/ready and oldest age grow, net drain is zero or negative, or dead letters rise. Inspect publication batches, state-writer coordination, and GitHub mutation latency first. State materializer/append backlog: state_append.pending_rows , pending_bytes , or oldest age grows while the materializer is queued or absent. Recover that sole drain first; more review workers make it worse. Registration Budget Math Estimate worst-case registrations for a change before editing: new Blacksmith registrations ~= number of Blacksmith jobs that can become queued inside one 5 minute window For matrix jobs, count every row that can start in the 5-minute window. strategy.max-parallel only caps simultaneous rows; short rows can turn over and register more runners before the window resets. Use job duration, retries, and queue turnover to justify any lower estimate. Add non-matrix Blacksmith jobs such as preflight , security-fast , build-artifacts , and platform lanes. For repeated pull-request pushes, multiply by the number of runs expected to reach Blacksmith admission in the same 5-minute window, including runs canceled after admission. Canonical main uses two run-number-parity slots. Each slot keeps one active non-canceling run and one coalesced pending tip. Budget for up to two active main matrices plus their two pending tips entering the next admission wave, not every intermediate merge. Reject a change unless the org-level worst case stays below about 60% of the live bucket. With the current 10,000-registration bucket, keep planned Blacksmith burst load under 6,000 registrations per 5 minutes with headroom for ClawSweeper, ClawHub, Clownfish, OpenClaw RTT, and Clawbench. Safe Levers Prefer these in order: Preserve cancel-in-progress for superseded pull-request heads. Preserve canonical main as two non-canceling parity slots; each slot's default pending run coalesces to the newest tip. Move high-frequency, short, non-build jobs to ubuntu-24.04 . Reduce matrix rows by bundling related tests inside one runner job when the combined job stays under timeout and keeps useful failure names. Lower strategy.max-parallel for bursty Blacksmith matrices. Right-size runners from timing evidence. Use fewer/larger jobs only when elapsed time improves enough to justify registration count. Split truly slow tests with $openclaw-test-performance ; do not hide a slow test problem by registering more runners. Do not: add another Blacksmith installation expecting a higher registration bucket; move CodeQL Critical Quality back to Blacksmith; raise all max-parallel values at once; make manual workflow_dispatch runs cancel normal push/PR validation; delete coverage just to reduce runner count; treat cancelled superseded pull-request runs as failures without checking the newest run for the same ref. cancel old queued runs from a stale snapshot; re-query the exact run first and preserve any current run that still owns live work. Current OpenClaw Knobs These are intentionally guarded by test/scripts/ci-workflow-guards.test.ts : CI concurrency key version, PR cancellation, and canonical main 's two non-canceling parity slots, each with one coalesced pending tip. preflight and security-fast start immediately without a debounce or standalone admission job. The protected vitest-cache-warm workflow publishes the immutable semantic dependency archive after setup succeeds, before build and transform warming. Preflight and downstream Node jobs are restore-only consumers on eligible self-hosted runners. Exact misses and hosted paths, including Mac Node jobs, use the ordinary pnpm-store cache. Hybrid first attempts route preflight , security-fast , and ci-gate to the existing 4-vCPU Blacksmith runner after measured hosted queue delays. Contributor trust, manual/non-canonical fallbacks, hosted retries, and the github outage override remain intact. Budget all three registrations. The aggregate uses !cancelled() to report failed prerequisites without holding a superseded run open after workflow cancellation. CI matrix caps: fast/check lanes at 12, Node test shards at 28 on Blacksmith and 96 with the GitHub or hybrid planner profile, Windows at 2, and Android at 2. The compact row budgets are 112 for hosted-only GitHub and 96 for hybrid; the higher hosted row budget does not increase concurrency. Windows keeps two disjoint file inventories. Jobs requesting the existing Blacksmith class admit at most two project processes with one Vitest worker each; hosted fallbacks remain serial. Runtime preparation completes before project readers start. Native proof must cover available CPUs/RAM, concurrent fixture memory and cleanup. This adds no runner registrations. macOS Swift uses two mandatory matrix phases with max-parallel: 2 : release compilation and the complete shared/app test workload. This adds one registration per eligible Blacksmith native run: up to four across the two active and two pending main slots, plus one for each eligible trusted PR. Build caches are phase-owned; only the release phase writes the shared SwiftPM dependency cache. iOS Release, Debug/simulator tests, and both screenshot shards always use macos-26 . Repeated Blacksmith admission stalls were recovered by the same hosted image; do not require a failed first attempt to select that capacity. Their four fixed hosted rows are excluded from the 88-row non-Node inventory; conservatively count the remaining 84 rows, including other hosted/skipped jobs. This gives 180 rows per main run and 274 per broad PR, or 4 × 180 + 19 × 274 = 5,926 registrations in the observed five-minute arrival envelope. This is not organization-wide headroom: include queued carryover, adjacent repositories, and release arrivals. A complete npm qualification uses six Blacksmith jobs, three more than the former serial layout; parent retries reuse the existing producer. Hosted manual/retry CI paths add no Blacksmith registrations. Canonical PR Node tests use one precise changed-target job when possible; broad, deleted, unknown, or planner-failed changes fall back to the compact full-suite plan. Targeted plans retain the full built-artifact boundary gate. main uses compact integration; manual and release runs use full named shards. The combined Node matrix admits compact and plugin descriptors by estimated duration within the same cap. Catch-all, QA and provider configs use the existing 90-file job budget with native Vitest sharding; retain complete config discovery, exclusions and process isolation. Count every appended plugin row, including the five added QA/provider rows, in the burst envelope. build-artifacts on blacksmith-32vcpu-ubuntu-2404 . CPU-heavy test-type, core test-type stripe, runtime-topology, and npm preflight jobs request blacksmith-32vcpu-ubuntu-2404 . The 2026-09-01 x64 probe run 33538827388 measured requested 8/16/32 labels delivering 2/4/8 CPUs respectively. Treat larger requests as a measured capacity workaround, never as worker counts. Keep existing routing, fanout, and resource-based worker limits; reassess sizing after provider allocation changes. See docs/ci.md for the full table. lower-weight Node/check shards on blacksmith-4vcpu-ubuntu-2404 . heavy retained Linux/Android shards on blacksmith-8vcpu-ubuntu-2404 . CodeQL Critical Quality on ubuntu-24.04 with no blacksmith- labels. OPENCLAW_CI_RUNNER_BACKEND=github routes every configurable ci.yml job to its existing GitHub-hosted fallback label. Unset or blacksmith preserves the normal Blacksmith-first route. Vitest/test compile caches are restore-only in CI and use immutable Actions caches; the daily/dispatch warmer is their sole writer. Build compile cache writes rotate at most once per UTC day. PRs create no runtime-cache archives. When changing one knob, update docs/ci.md and the guard test in the same PR. Blacksmith Outage Circuit Breaker Use the repository variable only after confirming a Blacksmith outage or unavailable runner capacity. Do not set it merely for a failing test that has already started. gh variable set OPENCLAW_CI_RUNNER_BACKEND --repo openclaw/openclaw --body github In degraded mode, ci.yml uses the same hosted labels and non-Blacksmith paths as manual dispatches and fork pull requests. Blacksmith-only Docker and sticky steps stay off, dependency setup uses the ordinary Actions pnpm-store cache, and Android's large build uses separate low-memory Gradle processes. Standard 4-core hosted runners make builds and test lanes slower. Blacksmith runner registration is no longer part of the budget, while GitHub-hosted concurrency limits apply. Flip back after the outage by deleting the variable: gh variable delete OPENCLAW_CI_RUNNER_BACKEND --repo openclaw/openclaw Scheduled health detection and automatic flipping are a follow-up, not part of the current circuit breaker. Validation For workflow-only or docs/skill-only changes in a Codex worktree: node scripts/run-vitest.mjs test /scripts/ci-workflow-guards.test.ts node --import tsx scripts/check-workflows.mts node scripts/docs-list.js ./node_modules/.bin/oxfmt --check .github/workflows/ci.yml .github/workflows/codeql-critical-quality.yml docs/ci.md test /scripts/ci-workflow-guards.test.ts .agents/skills/openclaw-ci-limits/SKILL.md .agents/skills/openclaw-ci-limits/agents/openai.yaml git diff --check If pnpm docs:list tries to reconcile dependencies in a linked Codex worktree, stop and use node scripts/docs-list.js . For a PR before requesting maintainer approval: .agents/skills/autoreview/scripts/autoreview --mode branch --base origin/main ghx pr checks < pr > -R openclaw/openclaw --watch --interval 15 Use hosted exact-head gates for CI workflow tuning. Do not burn local pnpm test on unrelated full-suite proof. Only after the maintainer explicitly asks you to prepare or land the PR, run the repo-native mutating wrapper: scripts/pr review-init < pr > scripts/pr review-artifacts-init < pr > scripts/pr review-validate-artifacts < pr > OPENCLAW_TESTBOX=1 scripts/pr prepare-run < pr > prepare-run can push a prepared commit to the PR branch. Only run scripts/pr merge-run <pr> after the maintainer has explicitly asked you to land the PR. Both commands mutate GitHub state. Post-Land Monitoring After merge, watch at least one fresh main cycle and the adjacent repos: ghx run list -R openclaw/openclaw -- limit 20 --json databaseId,status,conclusion,workflowName,event,headBranch,createdAt,updatedAt,url for repo in openclaw/clawsweeper openclaw/clawhub openclaw/clownfish openclaw/openclaw-rtt openclaw/clawbench; do ghx run list -R " $repo " -- limit 12 --json databaseId,status,conclusion,workflowName,event,headBranch,createdAt,updatedAt,url done curl -fsS https://clawsweeper.openclaw.ai/api/exact-review-queue | jq '.' Report: exact PR/commit landed; expected registration reduction or added headroom; CI run status and slowest/queued jobs; queued job labels, runner assignment, and dependency state for any outlier; Blacksmith Actions runner evidence separately from Testbox control-plane health; ClawSweeper queue pending, dispatching, leased, oldest pending age; publication net drain/dead letters, state-writer queued/waiting, and state append rows/bytes/oldest item; any real failures that remain outside runner registration.
このスキルを起動するキーワード。クリックでコピーできます。
このスキルにはトリガーワードがありません。
ダウンロードした .skill に含まれるフィールド。
| フィールド | 説明 |
|---|---|
| format | フォーマット識別子(skill/v1) |
| skill_id | スキル固有 ID |
| name | スキル名 |
| version | バージョン |
| description | 説明 |
| category | カテゴリ(配列) |
| trigger_words | トリガーワード |
| tags | タグ |
| source | ソース |
| source_url | ソース URL(本ページ) |
| exported_at | エクスポート日時(ダウンロード毎) |
| system_prompt | システムプロンプト本文 |
| model_config | モデル設定:provider / model / temperature / max_tokens / top_p |
| examples | サンプル |
| install_guide | 各プラットフォームの導入説明(Coze / Dify / Claude / カスタム) |