ur-agent 1.80.9 → 1.81.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/README.md +9 -0
- package/dist/cli.js +1823 -1470
- package/docs/AGENT_FEATURES.md +21 -0
- package/docs/CONFIGURATION.md +2 -1
- package/docs/REDTEAM.md +64 -0
- package/docs/TROUBLESHOOTING.md +4 -0
- package/docs/USAGE.md +7 -0
- package/docs/VALIDATION.md +32 -2
- package/docs/plugins.md +9 -0
- package/documentation/app.js +4 -4
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
- package/plugins/bunBundleDev.ts +3 -0
- package/plugins/core/reverse-skills/.ur-plugin/plugin.json +15 -0
- package/plugins/core/reverse-skills/CAPABILITIES.md +17 -0
- package/plugins/core/reverse-skills/NOTICE +12 -0
- package/plugins/core/reverse-skills/README.md +17 -0
- package/plugins/core/reverse-skills/UPSTREAM-LICENSE +21 -0
- package/plugins/core/reverse-skills/UR-INTEGRATION.md +27 -0
- package/plugins/core/reverse-skills/commands/start.md +11 -0
- package/plugins/core/reverse-skills/skills/application-redteam/SKILL.md +23 -0
- package/plugins/core/reverse-skills/skills/binary-reverse/SKILL.md +22 -0
- package/plugins/core/reverse-skills/skills/exploit-development/SKILL.md +22 -0
- package/plugins/core/reverse-skills/skills/forensics-threat-hunting/SKILL.md +22 -0
- package/plugins/core/reverse-skills/skills/llm-agent-security/SKILL.md +22 -0
- package/plugins/core/reverse-skills/skills/malware-edr-research/SKILL.md +28 -0
- package/plugins/core/reverse-skills/skills/platform-radio-security/SKILL.md +22 -0
- package/plugins/core/reverse-skills/skills/research-evidence/SKILL.md +33 -0
- package/plugins/core/reverse-skills/skills/reverse-skill-router/SKILL.md +26 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: reverse-skill-router
|
|
3
|
+
description: Route an authorized reverse engineering or red-team research task to the correct UR specialist skill. Use when a task spans domains or its best entrypoint is unclear.
|
|
4
|
+
allowed-tools: Read Grep Glob Bash
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Reverse Skills router
|
|
8
|
+
|
|
9
|
+
Read `${UR_PLUGIN_ROOT}/UR-INTEGRATION.md` and `${UR_PLUGIN_ROOT}/CAPABILITIES.md` first.
|
|
10
|
+
|
|
11
|
+
## Route
|
|
12
|
+
|
|
13
|
+
Classify the primary object and objective:
|
|
14
|
+
|
|
15
|
+
- compiled, packed, obfuscated, managed, browser, or protocol artifact → `binary-reverse`;
|
|
16
|
+
- known vulnerability that must become a reliable PoC or exploit → `exploit-development`;
|
|
17
|
+
- API, web, source, cloud, identity, database, email, supply-chain, or thick-client assessment → `application-redteam`;
|
|
18
|
+
- suspicious sample, implant, detection boundary, EDR, AV, AMSI, or ETW research → `malware-edr-research`;
|
|
19
|
+
- mobile, firmware, device bus, PLC/SCADA, wireless, or RF work → `platform-radio-security`;
|
|
20
|
+
- disk, memory, packet, timeline, IOC, YARA, Sigma, or threat hunt → `forensics-threat-hunting`;
|
|
21
|
+
- LLM, agent, MCP/tool, prompt injection, memory poisoning, or model supply-chain test → `llm-agent-security`;
|
|
22
|
+
- scope, evidence review, diagrams, findings, or final report → `research-evidence`.
|
|
23
|
+
|
|
24
|
+
Select one primary skill and only the supporting skills the task actually needs. Start with passive/local triage. Before any active target operation, verify current-session scope approval and name the exact scoped target and intended action.
|
|
25
|
+
|
|
26
|
+
Produce an initial case record containing objective, artifact/target, authorization source as provided by the user, exclusions, success criteria, and evidence path. Do not invent authorization or expand the scope.
|