ur-agent 1.80.10 → 1.81.1
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 +29 -0
- package/README.md +9 -0
- package/dist/cli.js +1819 -1470
- package/docs/AGENT_FEATURES.md +15 -0
- package/docs/REDTEAM.md +70 -0
- package/docs/USAGE.md +7 -0
- package/docs/VALIDATION.md +27 -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/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 +23 -0
- package/plugins/core/reverse-skills/UPSTREAM-LICENSE +21 -0
- package/plugins/core/reverse-skills/UR-INTEGRATION.md +28 -0
- package/plugins/core/reverse-skills/commands/start.md +21 -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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.81.1
|
|
4
|
+
|
|
5
|
+
- Preflighted UR task tracking in `/reverse-skills:start` and every bundled
|
|
6
|
+
reverse-security skill before mutating, multi-outcome workflows. The plugin
|
|
7
|
+
now creates and advances an actionable task board instead of first tripping
|
|
8
|
+
`TaskListRequired`, while keeping `tasks.requireBeforeChanges` enabled.
|
|
9
|
+
- Made verifier and command-registry tests independent of globally installed
|
|
10
|
+
plugins, so release checks remain reproducible when marketplace validators
|
|
11
|
+
and namespaced commands are enabled on the developer machine.
|
|
12
|
+
|
|
13
|
+
## 1.81.0
|
|
14
|
+
|
|
15
|
+
- Added `/mode redteam`, a warning-gated, session-only UR policy mode for
|
|
16
|
+
complete authorized security research. The mode changes UR's dynamic system
|
|
17
|
+
and file-analysis guidance without claiming to override the selected
|
|
18
|
+
provider/model's independent policies.
|
|
19
|
+
- Kept operational controls intact: security scope approval is now bound to the
|
|
20
|
+
current session, active Bash and PowerShell security tools are blocked outside
|
|
21
|
+
approved hosts/ports/tools/intensity, and security state moved to the
|
|
22
|
+
gitignored `.ur/security/` with legacy `.309/security/` migration.
|
|
23
|
+
- Added the first-party `reverse-skills` plugin, an UR-native adaptation of the
|
|
24
|
+
MIT-licensed `zhaoxuya520/reverse-skill` research methodology. Plugin commands
|
|
25
|
+
and skills declare `requiredMode: "redteam"` and are disabled outside it;
|
|
26
|
+
cross-client bootstrap code and separately licensed components are excluded.
|
|
27
|
+
- Documented activation, warnings, provider boundaries, manifest gating, scope
|
|
28
|
+
behavior, provenance, and the full research capability map, with regression
|
|
29
|
+
tests for policy switching, classification, scope enforcement, storage, and
|
|
30
|
+
manifest validation.
|
|
31
|
+
|
|
3
32
|
## 1.80.10
|
|
4
33
|
|
|
5
34
|
- Fixed the underlying cause of task-free research still returning
|
package/README.md
CHANGED
|
@@ -114,6 +114,14 @@ available, and the approval decision in task evidence. Security-research prompts
|
|
|
114
114
|
need scoped targets and authorization confirmation; local/lab/test targets are
|
|
115
115
|
preferred unless the user confirms authorized external scope.
|
|
116
116
|
|
|
117
|
+
Authorized researchers can explicitly activate `/mode redteam`. The first use
|
|
118
|
+
shows a mandatory risk warning; `/mode redteam --accept-risk` acknowledges it
|
|
119
|
+
and enables UR's unrestricted security-research prompt policy for the current
|
|
120
|
+
session only. UR's scope, permissions, sandbox, approvals, and audit controls
|
|
121
|
+
remain enforced, and the selected model/provider keeps its own policies. The
|
|
122
|
+
bundled UR-native `reverse-skills` plugin is runtime-gated to this mode. See the
|
|
123
|
+
[Redteam Mode Guide](docs/REDTEAM.md).
|
|
124
|
+
|
|
117
125
|
Outside-workspace reads are allowed when requested or clearly required, and the
|
|
118
126
|
outside path is recorded in the task board/evidence. Modifying or deleting
|
|
119
127
|
outside-workspace files requires approval before execution.
|
|
@@ -560,6 +568,7 @@ ur plugin search --capability skills --json
|
|
|
560
568
|
ur plugin show github@ur-plugins-official
|
|
561
569
|
ur plugin doctor
|
|
562
570
|
ur plugin install engineering-discipline@ur-plugins-official
|
|
571
|
+
ur plugin install reverse-skills@ur-plugins-official
|
|
563
572
|
ur plugin install hello@ur-plugins-official
|
|
564
573
|
ur plugin update <plugin>
|
|
565
574
|
ur plugin disable <plugin>
|