openvibe 0.60.7 → 0.62.0
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 +15 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [0.61.0] - 2025-03-13
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Update Check**: Added automatic version check from npm registry on startup
|
|
13
|
+
- Checks for new versions without requiring a remote server
|
|
14
|
+
- Caches results for 24 hours to avoid frequent requests
|
|
15
|
+
- Shows update notification when a newer version is available
|
|
16
|
+
- Can be skipped with `--offline` flag or `PI_SKIP_VERSION_CHECK` env variable
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Skills Loading**: Changed to priority-based fallback system
|
|
21
|
+
- Checks skill directories in priority order
|
|
22
|
+
- Stops checking once skills are found in a higher priority directory
|
|
23
|
+
- Allows overriding default skills by placing them in higher priority directories
|
|
24
|
+
|
|
10
25
|
### Fixed
|
|
11
26
|
|
|
12
27
|
- Fixed CI failures: resolved biome lint errors and TypeScript compilation issues
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openvibe",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.62.0",
|
|
4
4
|
"description": "OpenVibe - AI Coding Assistant CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"piConfig": {
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@mariozechner/jiti": "^2.6.2",
|
|
44
|
-
"@boxiaolanya2008/pi-agent-core": "^0.
|
|
45
|
-
"@boxiaolanya2008/pi-ai": "^0.
|
|
46
|
-
"@boxiaolanya2008/pi-tui": "^0.
|
|
44
|
+
"@boxiaolanya2008/pi-agent-core": "^0.62.0",
|
|
45
|
+
"@boxiaolanya2008/pi-ai": "^0.62.0",
|
|
46
|
+
"@boxiaolanya2008/pi-tui": "^0.62.0",
|
|
47
47
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
48
48
|
"chalk": "^5.5.0",
|
|
49
49
|
"cli-highlight": "^2.1.11",
|