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 commands/msadigo/mcp-hayabusa/querygit clone --depth 1 https://github.com/msadigo/mcp-hayabusaWrote 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/msadigo/mcp-hayabusa/query)<a href="https://agentmods.dev/commands/msadigo/mcp-hayabusa/query"><img src="https://agentmods.dev/badge/commands/msadigo/mcp-hayabusa/query.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.1 | $0.00022 | $0.01728 |
| Opus 5 | $0.00011 | $0.00864 |
| Sonnet 5 | $0.00004 | $0.00346 |
| Haiku 4.5 | $0.00002 | $0.00173 |
Grade A, and why
query 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 — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Query — EVTX investigation from saved parameters
This command runs against real Hayabusa scan data via the scan_evtx MCP tool. It does not use
Splunk or any SIEM. This project has no SIEM access — this command adapts the familiar
"read a saved query from a file, run it, write up findings" workflow to the data we actually have:
local .evtx files scanned with Hayabusa. Do not suggest or fall back to Splunk syntax (index=,
SPL, etc.) anywhere in this command.
Arguments
$1 — required. Path to a plain-text parameters file (see format below).
$2 — optional. A time range to scope the analysis to, e.g. 2026-07-10..2026-07-15 or
last 24h. scan_evtx has no native time-range flag — Hayabusa itself supports -s/-e
timeline bounds, but this project's wrapper doesn't expose them (see src/mcp_hayabusa/hayabusa.py).
So: if $2 is given, run the scan unbounded as usual, then filter/annotate the analysis step by
each record's Timestamp field to stay inside that range — don't try to pass a time flag to the
tool. If $2 is omitted, skip time-scoping entirely; don't invent a default window.
Steps
-
Read the parameters file at
$1with the Read tool. Expect simplekey: valuelines, e.g.:target: sample_evtx/Discovery/T1082_uname/uname.evtx rule_filter: discovery min_level: medium rules_dir: hayabusa/rulesRequired:
target(path to a.evtxfile or a directory of them — setis_file: truewhen calling the tool iftargetis a single file). Optional:rule_filter,min_level(informational/low/medium/high/critical),rules_dir(which rule set to scan/filter from — usehayabusa/rulesfor the full bundled Hayabusa Sigma ruleset, fetched viascripts/download_hayabusa.pyand gitignored; omit it, or userules/custom, to scan only this repo's own authored rules tracked in git). Ignore any other keys but don't error on them. Iftargetis missing or doesn't resolve to an existing path, stop and report that — don't guess a path.
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 · 106 lines · 22 tokens per session scan A 612c81c14af5
query is a command published in the GitHub repository msadigo/mcp-hayabusa (0 stars, last pushed 1mo ago), licensed MIT. It adds 22 tokens to every session and 1,728 once invoked, about $0.0001 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-31.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.