@rockcarver/frodo-cli 4.0.0-50 → 4.0.0-52
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 +7 -1
- package/dist/app.cjs +12916 -8240
- package/dist/app.cjs.map +1 -1
- package/package.json +10 -2
- package/tools/agent-e2e-audit.mjs +219 -0
- package/tools/mcp-agentic-assess.mjs +204 -0
- package/tools/mcp-agentic-batch-run.mjs +1105 -0
- package/tools/mcp-agentic-score.mjs +200 -0
- package/tools/mcp-aiagent-introspection-test.mjs +353 -0
- package/tools/mcp-oauth2-mayact-update-test.mjs +429 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.0-51] - 2026-07-11
|
|
11
|
+
|
|
12
|
+
## [4.0.0-50] - 2026-05-04
|
|
13
|
+
|
|
10
14
|
## [4.0.0-49] - 2026-04-26
|
|
11
15
|
|
|
12
16
|
## [4.0.0-48] - 2026-04-21
|
|
@@ -2261,7 +2265,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2261
2265
|
- Fixed problem with adding connection profiles
|
|
2262
2266
|
- Miscellaneous bug fixes
|
|
2263
2267
|
|
|
2264
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2268
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-51...HEAD
|
|
2269
|
+
[4.0.0-51]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-50...v4.0.0-51
|
|
2270
|
+
[4.0.0-50]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-49...v4.0.0-50
|
|
2265
2271
|
[4.0.0-49]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-48...v4.0.0-49
|
|
2266
2272
|
[4.0.0-48]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-47...v4.0.0-48
|
|
2267
2273
|
[4.0.0-47]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-46...v4.0.0-47
|