ur-agent 1.13.1 → 1.13.3
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 +46 -0
- package/dist/cli.js +3216 -879
- package/docs/VALIDATION.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.3
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Checkpointed agent workflows.** Added `ur workflow` for declaring,
|
|
7
|
+
validating, graphing, planning, resuming, and dry-running multi-step agent
|
|
8
|
+
workflows with checkpoints and gates.
|
|
9
|
+
- **Multi-agent collaboration patterns.** Added `ur pattern` for PEER and DOE
|
|
10
|
+
workflows, including install, save, dry-run, and live execution paths.
|
|
11
|
+
- **Agent routing and inspection.** Added `ur route` for task-to-subagent
|
|
12
|
+
recommendations and `ur agent-inspect` for reconstructing per-subagent
|
|
13
|
+
timelines from session transcripts.
|
|
14
|
+
- **Curated project knowledge base.** Added `ur knowledge` for registering
|
|
15
|
+
file, directory, and note sources, building lexical or local-Ollama embedding
|
|
16
|
+
indexes, searching, pruning, and reporting status.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **Agent feature roadmap coverage.** Expanded `ur agent-features` and
|
|
20
|
+
`ur agent-trends` to include collaboration patterns, workflows, inspection,
|
|
21
|
+
routing, and knowledge-base surfaces.
|
|
22
|
+
|
|
23
|
+
### Verified
|
|
24
|
+
- Rebuilt `dist/cli.js` at 1.13.3 and prepared npm package metadata for
|
|
25
|
+
`ur-agent@1.13.3`.
|
|
26
|
+
|
|
27
|
+
## 1.13.2
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
- **Top-level code-index and role-mode commands.** `ur code-index` and
|
|
31
|
+
`ur role-mode` are now registered in the main CLI, matching the shipped
|
|
32
|
+
command modules and help output.
|
|
33
|
+
- **Agent-task review controls.** `ur agent-task` now exposes `--force` and
|
|
34
|
+
`--no-review` so PR creation can either override or skip the self-review gate
|
|
35
|
+
intentionally.
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
- **Self-review PR diff coverage.** The pre-PR self-review now resolves a real
|
|
39
|
+
base ref across local and remote branch names, includes committed branch
|
|
40
|
+
changes, tracked working-tree changes, and untracked files.
|
|
41
|
+
- **macOS image paste reliability.** Clipboard image detection now recognizes
|
|
42
|
+
TIFF-only pasteboard images, converts TIFF/BMP payloads to PNG before upload,
|
|
43
|
+
and surfaces real image-read failures instead of reporting "no image found."
|
|
44
|
+
|
|
45
|
+
### Verified
|
|
46
|
+
- Rebuilt `dist/cli.js` at 1.13.2 and verified npm package metadata resolves
|
|
47
|
+
to `ur-agent@1.13.2`.
|
|
48
|
+
|
|
3
49
|
## 1.13.1
|
|
4
50
|
|
|
5
51
|
### Added
|