Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/pawurb/hotpath-rs/syncmetanpx skills add pawurb/hotpath-rs --skill syncmetagit clone --depth 1 https://github.com/pawurb/hotpath-rsWrote 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/pawurb/hotpath-rs/syncmeta)<a href="https://agentmods.dev/skills/pawurb/hotpath-rs/syncmeta"><img src="https://agentmods.dev/badge/skills/pawurb/hotpath-rs/syncmeta.svg" alt="Measured on agentmods" 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 | $0.00043 | $0.00804 |
| Opus 5 | $0.00022 | $0.00402 |
| Sonnet 5 | $0.00009 | $0.00161 |
| Haiku 4.5 | $0.00004 | $0.00080 |
Grade A, and why
syncmeta 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 4d 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 — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sync Meta Crates
Sync recent changes from hotpath → hotpath-meta and hotpath-macros → hotpath-macros-meta.
The meta crates are copies of the main crates used to profile the profiler itself. They must stay in sync with the source crates.
Effective Approach
DO NOT copy entire files from hotpath to hotpath-meta and then sed-replace. This approach fails because the meta crates have many naming differences beyond simple hotpath:: → hotpath_meta:: substitution:
- Feature flags:
hotpath→hotpath-meta,hotpath-alloc→hotpath-alloc-meta - Crate imports:
hotpath_macros→hotpath_macros_meta - Environment variables:
HOTPATH_FOCUS→HOTPATH_META_FOCUS,HOTPATH_EXCLUDE_WRAPPER→HOTPATH_META_EXCLUDE_WRAPPER,HOTPATH_OUTPUT_PATH→HOTPATH_META_OUTPUT_PATH - Self-instrumentation: lines like
#[cfg_attr(feature = "hotpath-meta", hotpath_meta::measure_all)]exist in hotpath but must NOT exist in hotpath-meta
Instead, apply diffs to the existing meta files:
- Get the actual diff for each changed file:
git diff HEAD~N..HEAD -- crates/hotpath/src/path/to/file.rs - Read the corresponding meta file
- Apply the equivalent semantic changes, preserving all meta-specific naming
Steps
- Check the last N commits (default 1, user can specify more) for changes to
crates/hotpath/andcrates/hotpath-macros/:
git log --oneline -N
git diff HEAD~N..HEAD --name-only -- crates/hotpath/src/ crates/hotpath-macros/src/
- For each changed file, get the hotpath diff:
git diff HEAD~N..HEAD -- crates/hotpath/src/path/to/file.rs
-
Read the corresponding meta file and apply the equivalent changes using Edit tool. The meta files are at:
crates/hotpath/src/**→crates/hotpath-meta/src/**crates/hotpath-macros/src/**→crates/hotpath-macros-meta/src/**
-
Verify the meta crates compile:
cargo check -p hotpath-meta --features hotpath-meta
cargo check -p hotpath-macros-meta --features hotpath-meta
cargo check -p hotpath-meta --features hotpath-meta,hotpath-alloc-meta
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.
- 4d ago First seen · 65 lines · 43 tokens per session scan A ee48ac16cac2
syncmeta is a skill published in the GitHub repository pawurb/hotpath-rs (1,708 stars, last pushed today), licensed MIT. It adds 43 tokens to every session and 804 once invoked, about $0.0002 per session on Opus 5. 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 skills, from other repositories
http-load-profiler
Run stepped HTTP load tests with ab/wrk, ramping concurrency levels to collect p50/p90/p99 latency, detect performance inflection points, and recommend optimal concurrency. Triggered by requests like 'load test this URL', 'benchmark my API', 'find the max concurrency', or mentions of p99 latency, throughput…
codspeed-optimize
Autonomously optimize code for performance using CodSpeed benchmarks, flamegraph analysis, and iterative improvement. Use this skill whenever the user wants to make code faster, reduce CPU usage, optimize memory, improve throughput, find performance bottlenecks, or asks to 'optimize', 'speed up', 'make faster'…
codspeed-setup-harness
Set up performance benchmarks and CodSpeed harness for a project. Use this skill whenever the user wants to create benchmarks, add performance tests, set up CodSpeed, configure codspeed.yml, integrate a benchmarking framework (criterion, divan, pytest-benchmark, vitest bench, go test -bench, google benchmark), or when…
performant-code
Writing efficient code that handles large data and tight constraints.
verify
Run Chimeraforge's canonical verification gate end-to-end and report the real output before claiming work done or committing. Failing output gets pasted, fixed, and re-run — never summarized away.
benchmarking
Skill "benchmarking" from chaterm/terminal-skills, covering 性能基准测试, 概述, sysbench, 安装 and debian/ubuntu.