ur-agent 1.78.14 → 1.79.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 +40 -0
- package/README.md +35 -5
- package/RELEASE.md +21 -5
- package/dist/cli.js +4404 -2126
- package/docs/AGENT_FEATURES.md +16 -1
- package/docs/AGENT_TRENDS.md +21 -1
- package/docs/CONFIGURATION.md +23 -0
- package/docs/GAP_ANALYSIS_2026-08-11.md +180 -0
- package/docs/TROUBLESHOOTING.md +14 -0
- package/docs/USAGE.md +22 -2
- package/docs/VALIDATION.md +1 -1
- package/docs/plugins.md +35 -1
- package/documentation/app.js +30 -10
- package/documentation/index.html +33 -4
- package/examples/coding_task.md +3 -2
- package/examples/research_task.md +12 -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
|
@@ -4,10 +4,21 @@
|
|
|
4
4
|
> summarize the MAPE-K paper and extract its claims and metrics
|
|
5
5
|
```
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- `ur research init|source|finding|question|verify|report` builds a durable,
|
|
8
|
+
source-backed evidence map with independent corroboration checks. Free text
|
|
9
|
+
still appends a legacy note.
|
|
10
|
+
- `/research-pro <question>` runs the primary-source research workflow.
|
|
8
11
|
- `/paper <title|path>` and `/cite <ref>` to record papers and citations.
|
|
9
12
|
- `/graph` is the Research Graph (sources, papers, claims, methods, datasets,
|
|
10
13
|
metrics, limitations, citations, concepts, notes, experiments, open_questions,
|
|
11
14
|
links). e.g. `/graph claims local actions reduce oscillation`.
|
|
12
15
|
- `/read <file>`, `/summarize <file>`, `/search <query>`, `/index` for files.
|
|
13
16
|
- Web fetch degrades gracefully (built-in HTML→text if `turndown` is absent).
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
ur research init mapek --question "What does MAPE-K claim and measure?"
|
|
20
|
+
ur research source mapek --url https://example.com/paper --title "MAPE-K paper"
|
|
21
|
+
ur research finding mapek --text "Atomic finding" --cite S1
|
|
22
|
+
ur research verify mapek
|
|
23
|
+
ur research report mapek --out docs/research/mapek.md
|
|
24
|
+
```
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.79.1",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED