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/theqmaks/areclaw-plugin/interceptgit clone --depth 1 https://github.com/TheQmaks/areclaw-pluginWhat 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.00012 | $0.01563 |
| Opus 5 | $0.00006 | $0.00781 |
| Sonnet 5 | $0.00002 | $0.00313 |
| Haiku 4.5 | $0.00001 | $0.00156 |
Grade B, and why
intercept scanned grade B 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 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
adb shell chmod 755 /data/local/tmp/<NAME>-server How it starts
The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/intercept
Set up intelligent traffic interception for an Android application. This is not a one-size-fits-all proxy setup — it detects the app's SSL pinning and protection mechanisms and selects the correct bypass strategy automatically.
Instructions
1. Analyze the app's network security configuration
Decompile the app's resources to inspect its network security posture:
apktool d -s -f -o /tmp/intercept_recon $APK
Read res/xml/network_security_config.xml and look for:
<domain-config cleartextTrafficPermitted="false">— HTTPS only.<pin-set>— Certificate pinning configured.<trust-anchors><certificates src="user"/>— User CA trusted (easy to intercept).- No config file — default behavior (user CA NOT trusted on Android 7+).
2. Detect the pinning implementation
grep -rn 'CertificatePinner\|TrustManager\|X509\|ssl_pinning\|NetworkSecurityConfig' workspace/output/$PKG/
Determine the pinning type:
- None — Simple proxy or Frida HTTP logger is enough.
- OkHttp CertificatePinner —
ssl-bypass.jshandles it. - Custom X509TrustManager —
ssl-bypass.jshandles it. - Conscrypt/platform —
ssl-bypass.jshandles it. - Native TLS (BoringSSL in .so) — Need Interceptor hook on
SSL_CTX_set_verify. - Flutter — Need special Flutter SSL bypass.
- React Native — Patch
network_security_configplusssl-bypass.js.
3. Select and execute the interception strategy
Based on the reconnaissance in steps 1 and 2, choose one of these strategies:
Strategy A — No Pinning:
frida -U -f $PKG -l ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/frida/http-logger.js
Strategy B — Standard Pinning (OkHttp/TrustManager/Conscrypt):
frida -U -f $PKG \
-l ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/frida/ssl-bypass.js \
-l ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/frida/http-logger.js
Strategy C — Heavy Pinning with Root Detection:
frida -U -f $PKG \
-l ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/frida/root-bypass.js \
-l ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/frida/ssl-bypass.js \
-l ${CLAUDE_PLUGIN_ROOT}/skills/android-security/scripts/frida/http-logger.js
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 · 163 lines · 12 tokens per session scan B 7dbb18b87772
intercept is a command published in the GitHub repository TheQmaks/areclaw-plugin (2 stars, last pushed 5mo ago), licensed MIT. It adds 12 tokens to every session and 1,563 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
android
Command "android" from zhagqn/agentwork, covering /android [subcommand] [args] and 执行前必读.
compose-test
Run Compose UI tests with Espresso. Verify critical user flows.
troubleshoot
Diagnose and resolve iOS issues in code, builds, runtime, and system behavior.
app-store-audit
Run an enterprise pre submission compliance audit on an iOS or Android app against Apple App Store and Google Play rejection rules. Pass a project path or run from the project root.
build-verify
Run the full build / test / analyze / format verification pass for this Flutter app.
ios-privacy
Prepare privacy labels, permissions, policy links, and data-use truth for iOS release.