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/asaotomo/deepsentry/forensicsnpx skills add asaotomo/DeepSentry --skill forensicsgit clone --depth 1 https://github.com/asaotomo/DeepSentryWhat 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.00032 | $0.00461 |
| Opus 5 | $0.00016 | $0.00230 |
| Sonnet 5 | $0.00006 | $0.00092 |
| Haiku 4.5 | $0.00003 | $0.00046 |
Grade A, and why
forensics 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 2d 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.
What it actually says
文件取证 Skill
何时使用
- 分析可疑二进制、Webshell、恶意样本
- 读取
.gz压缩日志(auth.log、nginx access.log 等) - 目标系统无
file、strings、zcat、gunzip命令
工具选用
| 场景 | 工具 | 示例 |
|---|---|---|
| 文件是什么类型 | file_ident |
{"tool_name":"file_ident","tool_args":{"path":"/tmp/suspicious"}} |
| 提取硬编码字符串/IP/URL | file_strings |
{"tool_name":"file_strings","tool_args":{"path":"/var/www/x.php","pattern":"eval|base64"}} |
| 读 gzip 日志 | read_gzip |
{"tool_name":"read_gzip","tool_args":{"path":"/var/log/auth.log.1.gz","lines":"100"}} |
| 不确定是否 gzip | read_log |
{"tool_name":"read_log","tool_args":{"path":"/var/log/syslog","pattern":"Failed"}} |
| 文件哈希 | file_hash |
{"tool_name":"file_hash","tool_args":{"path":"/bin/busybox"}} |
推荐流程
file_ident— 确认文件类型(ELF/PHP/GZIP/文本)- 若为 gzip 日志 →
read_log或read_gzip+ pattern 过滤 - 若为二进制/可疑脚本 →
file_strings+ pattern file_hash— 留存 IOC
限制
- 单文件读取上限 5MB(压缩),解压上限 20MB
- strings 扫描上限 2MB
- 禁止读取 config.yaml / reports/ 等受保护路径
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.
- 2d ago First seen · 37 lines · 32 tokens per session scan A 867c28a214e3
forensics is a skill published in the GitHub repository asaotomo/DeepSentry (24 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 32 tokens to every session and 461 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
skill-creator
Create, install, or update skills in the workspace. Use when (1) installing a skill from a URL or remote source, (2) creating a new skill from scratch, (3) updating or restructuring existing skills. Always use this skill for any skill installation or creation task.
analyzing-certificate-transparency-for-phishing
Monitor Certificate Transparency logs using crt.sh and Certstream to detect phishing domains, lookalike certificates, and unauthorized certificate issuance targeting your organization.
analyzing-dns-logs-for-exfiltration
Analyzes DNS query logs to detect data exfiltration via DNS tunneling, DGA domain communication, and covert C2 channels using entropy analysis, query volume anomalies, and subdomain length detection in SIEM platforms. Use when SOC teams need to identify DNS-based threats that bypass traditional network security…
analyzing-network-traffic-of-malware
Analyzes network traffic generated by malware during sandbox execution or live incident response to identify C2 protocols, data exfiltration channels, payload downloads, and lateral movement patterns using Wireshark, Zeek, and Suricata. Activates for requests involving malware network analysis, C2 traffic decoding…
analyzing-cyber-kill-chain
Analyzes intrusion activity against the Lockheed Martin Cyber Kill Chain framework to identify which phases an adversary has completed, where defenses succeeded or failed, and what controls would have interrupted the attack at earlier phases. Use when conducting post-incident analysis, building prevention-focused…
analyzing-powershell-script-block-logging
Parse Windows PowerShell Script Block Logs (Event ID 4104) from EVTX files to detect obfuscated commands, encoded payloads, and living-off-the-land techniques. Uses python-evtx to extract and reconstruct multi-block scripts, applies entropy analysis and pattern matching for Base64-encoded commands, Invoke-Expression…