jiva-core 0.3.23-dev.322ee7e → 0.3.23
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/README.md +10 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -68,6 +68,16 @@ jiva persona package-skill my-skill
|
|
|
68
68
|
|
|
69
69
|
See **[Personas Guide](docs/guides/PERSONAS.md)** for complete documentation.
|
|
70
70
|
|
|
71
|
+
### v0.3.23 Bug Fixes
|
|
72
|
+
- **Linux Path Fix**: Resolved startup errors on Linux where Jiva was reading from the wrong directory — new `platform.ts` utility ensures correct path resolution across all platforms
|
|
73
|
+
- **Punycode Deprecation**: Eliminated `[DEP0040] DeprecationWarning` by lazy-loading `@google-cloud/storage` so the deprecated built-in `punycode` module is never loaded during CLI-only sessions
|
|
74
|
+
- **Type Safety**: Fixed a `mustUseTools` type error in the Client agent
|
|
75
|
+
- **Dev Publishing**: Added CI workflow to auto-publish `dev`-tagged npm releases on every merge to `develop`
|
|
76
|
+
|
|
77
|
+
### v0.3.22 Maintenance
|
|
78
|
+
- **Security Updates**: Upgraded `glob` and `tr46` via npm `overrides` to resolve known vulnerabilities
|
|
79
|
+
- **CI/CD**: Added GitHub Actions workflow to automatically publish releases to npm
|
|
80
|
+
|
|
71
81
|
### v0.3.2 Bug Fixes & Quality Improvements
|
|
72
82
|
**Bug Fixes:**
|
|
73
83
|
- **Persona Isolation**: Sub-agents now use ephemeral personas that don't overwrite parent agent configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jiva-core",
|
|
3
|
-
"version": "0.3.23
|
|
3
|
+
"version": "0.3.23",
|
|
4
4
|
"description": "Versatile autonomous AI agent with three-agent architecture (Manager, Worker, Client) powered by gpt-oss-120b. Adaptive validation, full MCP support, and intelligent quality control.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"type": "module",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test:web": "playwright test",
|
|
12
|
+
|
|
12
13
|
"build": "tsc",
|
|
13
14
|
"dev": "tsx src/interfaces/cli/index.ts",
|
|
14
15
|
"dev:http": "tsx src/interfaces/http/index.ts",
|