openvibe 0.63.3 → 1.0.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 +58 -0
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/custom-provider-qwen-cli/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,63 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.0] - 2026-03-17
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Plan Mode**: Specialized mode for project planning and architecture design
|
|
13
|
+
- New `--mode plan` CLI option for dedicated planning sessions
|
|
14
|
+
- Expert system prompt for software architecture and task breakdown
|
|
15
|
+
- Structured output format: Overview, Requirements, Architecture, Tasks, Timeline, Risks
|
|
16
|
+
- Support for multiple plan types: `architecture`, `task-breakdown`, `roadmap`
|
|
17
|
+
- Configurable via `--plan-type` parameter
|
|
18
|
+
|
|
19
|
+
- **Spec Mode**: Specialized mode for writing technical specifications and API documentation
|
|
20
|
+
- New `--mode spec` CLI option for specification writing
|
|
21
|
+
- Three specification types: `functional`, `technical`, `api`
|
|
22
|
+
- Comprehensive templates for each spec type
|
|
23
|
+
- API documentation template with endpoints, authentication, error handling
|
|
24
|
+
- Configurable via `--spec-type` parameter
|
|
25
|
+
|
|
26
|
+
- **Mode Cycling**: Quick mode switching with keyboard shortcut
|
|
27
|
+
- **Shift+Tab** to cycle between Agent/Plan/Spec modes
|
|
28
|
+
- Real-time UI feedback showing current mode
|
|
29
|
+
- Visual indicators in footer and status bar
|
|
30
|
+
- Seamless context preservation across mode switches
|
|
31
|
+
|
|
32
|
+
- **Enhanced Documentation**: Comprehensive README with project architecture
|
|
33
|
+
- Detailed ASCII workflow diagrams
|
|
34
|
+
- Complete feature descriptions
|
|
35
|
+
- Quick start guide and usage examples
|
|
36
|
+
- Keyboard shortcuts reference
|
|
37
|
+
- Slash commands documentation
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- **Version Bump**: Major version upgrade from 0.64.x to 1.0.0
|
|
42
|
+
- Signifies production-ready stability
|
|
43
|
+
- All core packages aligned to 1.0.x series
|
|
44
|
+
|
|
45
|
+
- **System Prompt Architecture**: Dynamic mode-based prompt injection
|
|
46
|
+
- Mode-specific prompts loaded on-the-fly
|
|
47
|
+
- Context-aware AI behavior adaptation
|
|
48
|
+
- Clean separation between coding, planning, and documentation tasks
|
|
49
|
+
|
|
50
|
+
### Technical Details
|
|
51
|
+
|
|
52
|
+
- New files added:
|
|
53
|
+
- `packages/coding-agent/src/modes/plan-mode.ts` - Plan mode implementation
|
|
54
|
+
- `packages/coding-agent/src/modes/spec-mode.ts` - Spec mode implementation
|
|
55
|
+
- `README.md` - Comprehensive English documentation
|
|
56
|
+
|
|
57
|
+
- Modified files:
|
|
58
|
+
- `packages/coding-agent/src/cli/args.ts` - Added mode selection parameters
|
|
59
|
+
- `packages/coding-agent/src/main.ts` - Mode routing logic
|
|
60
|
+
- `packages/coding-agent/src/core/keybindings.ts` - Shift+Tab keybinding
|
|
61
|
+
- `packages/coding-agent/src/modes/interactive/interactive-mode.ts` - Mode cycling UI
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
8
65
|
## [0.64.0] - 2026-03-16
|
|
9
66
|
|
|
10
67
|
### Added
|
|
@@ -203,6 +260,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
203
260
|
|
|
204
261
|
---
|
|
205
262
|
|
|
263
|
+
[1.0.0]: https://github.com/boxiaolanya2008/openvibe/compare/v0.64.0...v1.0.0
|
|
206
264
|
[0.64.0]: https://github.com/boxiaolanya2008/openvibe/compare/v0.63.2...v0.64.0
|
|
207
265
|
[0.63.2]: https://github.com/boxiaolanya2008/openvibe/compare/v0.63.1...v0.63.2
|
|
208
266
|
[0.63.1]: https://github.com/boxiaolanya2008/openvibe/compare/v0.63.0...v0.63.1
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-custom-provider",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-custom-provider",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "2.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sdk": "^0.52.0"
|
|
12
12
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-with-deps",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-with-deps",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "2.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"ms": "^2.1.3"
|
|
12
12
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openvibe",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "OpenVibe - AI Coding Assistant CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"piConfig": {
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@mariozechner/jiti": "^2.6.2",
|
|
45
|
-
"@boxiaolanya2008/pi-agent-core": "^0.
|
|
46
|
-
"@boxiaolanya2008/pi-ai": "^0.
|
|
47
|
-
"@boxiaolanya2008/pi-tui": "^0.
|
|
45
|
+
"@boxiaolanya2008/pi-agent-core": "^1.0.0",
|
|
46
|
+
"@boxiaolanya2008/pi-ai": "^1.0.0",
|
|
47
|
+
"@boxiaolanya2008/pi-tui": "^1.0.0",
|
|
48
48
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
49
49
|
"chalk": "^5.5.0",
|
|
50
50
|
"cli-highlight": "^2.1.11",
|