Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Fast-path binary triage — identify format/arch/mitigations, grab high-signal strings and imports in under a minute.
bin_identify(path="/workspace/target")
Record: format, arch, bitness, NX, PIE, entry point. Add file node with these props.
# checksec for extra signals (stack canary, RELRO, fortify)
apt-get install -y checksec 2>/dev/null || true
checksec --file=/workspace/target --format=json
Add any missing mitigation as a vulnerability node with severity=medium.
bin_strings(path="/workspace/target", category_filter="secret")
bin_strings(path="/workspace/target", category_filter="url")
bin_strings(path="/workspace/target", category_filter="crypto")
bin_strings(path="/workspace/target", category_filter="version")
Each hit in secret/crypto → add a secret node. Each url/ip → consider
adding an entrypoint or C2 candidate.
nm -D /workspace/target 2>/dev/null | awk '$2=="U"{print $3}' > /tmp/imports.txt
# or
objdump -T /workspace/target | awk '/\*UND\*/{print $NF}' > /tmp/imports.txt
Feed the list to bin_symbols_report. Anything with risk_score > 10 =
worth deeper look.
npx skills add PurpleAILAB/Decepticon --skill triageHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.