Borrowing it
Nothing to install: this file belongs to cagedbird043/fcm-hosts-next. 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/cagedbird043/fcm-hosts-next/main/.agents/skills/runner-publish/SKILL.mdgit clone --depth 1 https://github.com/cagedbird043/fcm-hosts-nextWrote 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/skills/cagedbird043/fcm-hosts-next/runner-publish)<a href="https://agentmods.dev/skills/cagedbird043/fcm-hosts-next/runner-publish"><img src="https://agentmods.dev/badge/skills/cagedbird043/fcm-hosts-next/runner-publish/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/skills/cagedbird043/fcm-hosts-next/runner-publish"><img src="https://agentmods.dev/badge/skills/cagedbird043/fcm-hosts-next/runner-publish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00020 | $0.00572 |
| Opus 5 | $0.00010 | $0.00286 |
| Sonnet 5 | $0.00004 | $0.00114 |
| Haiku 4.5 | $0.00002 | $0.00057 |
Grade A, and why
runner-publish scanned grade A with 1 finding 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 10d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -sI https://fcm-hosts.cagedbird.cn/fcm_dual.hosts How it starts
The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Trigger
- Modifying or validating FCM hosts update workflow (
.github/workflows/main.yml). - Troubleshooting FCM hosts generation, publication, or server deployment failures.
- Changing DNS query/validation logic and verifying behavior.
Entry Point
- Workflow file:
.github/workflows/main.yml - Go CLI entry:
go run ./cmd/fcmhost run - Generated outputs:
fcm_dual.hosts,fcm_ipv4.hosts,fcm_ipv6.hosts
Workflow
Local Verification
Before pushing any workflow or Go CLI updates:
- Run test suite:
go test ./... - Dry run runner verification (checks FCM 5228 connectivity without dns harvest):
go run ./cmd/fcmhost run -workdir . -dns=false -v - Perform full local run to verify DNS harvesting and expansion:
go run ./cmd/fcmhost run -workdir .
GitHub Actions & Server Deployment
- Workflow is scheduled 4 times daily (UTC
01:17,07:17,13:17,19:17). - If manual refresh is needed, trigger via
workflow_dispatchon GitHub Actions. - The workflow uses SSH Deploy Key
ACTIONS_DEPLOY_KEYfor checkout/push, andSERVER_SSH_KEYfor deploying to/srv/cagedbird/fcm-hosts-next/on the remote server.
Verification
- Verify Go build and test status.
- Check local generated
fcm_dual.hosts,fcm_ipv4.hosts,fcm_ipv6.hostsfiles for correct format (IP host entries). - Check remote serving URL:
curl -sI https://fcm-hosts.cagedbird.cn/fcm_dual.hosts
Guardrails
- Prefer SSH Checkout over HTTPS: To prevent GnuTLS connection timeouts on mainland dual-stack runners, workflow checkout and push MUST use the SSH deploy key (
ACTIONS_DEPLOY_KEY). - Prevent Workflow Loop: Commits generated by the bot MUST include
[skip ci]in the message and the push event must be configured to skip triggering another run. - Separate Keys: GitHub actions push key (
ACTIONS_DEPLOY_KEY) and server deploy key (SERVER_SSH_KEY) are separate credentials. Do not mix them. - No Direct Remote Edits: Do not edit served host files directly on the server. Always update locally/via workflow.
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.
- 10d ago First seen · 55 lines · 20 tokens per session scan A 426aa3f778c5
runner-publish is a skill published in the GitHub repository cagedbird043/fcm-hosts-next (57 stars, last pushed today), licensed MIT. It adds 20 tokens to every session and 572 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
chinese-git-workflow
A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.
baby-sit
Monitor a GitHub pull request until CI is green, diagnose failures, and rerun only evidence-backed flaky GitHub Actions jobs.
atmos-hooks
Atmos hooks: lifecycle events, hook kinds, command/store/git/security hooks, step/steps hooks, when: conditions, scoping and overrides, toolchain integration, --skip-hooks, and Atmos Pro/local output.
atmos-pro
Atmos Pro setup and workflows: settings.pro, GitHub OIDC, affected and inventory uploads, stack locks, pro commit, workflow dispatch, merge queues, and drift detection.
start-temps-cluster
Start (or restart) a local multi-node Temps cluster using Docker-in-Docker — one control plane + 3 worker nodes, each a privileged DinD container running its own dockerd + temps agent, wired with the real multi-host overlay (VXLAN, computecidr allocation) via tools/dev-cluster/ in whichever checkout/worktree you run…
pr-watch
Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.