@oh-my-pi/pi-coding-agent 8.12.10 → 9.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 +20 -0
- package/package.json +7 -7
- package/src/config/settings-manager.ts +121 -2
- package/src/debug/index.ts +362 -0
- package/src/debug/profiler.ts +158 -0
- package/src/debug/report-bundle.ts +280 -0
- package/src/debug/system-info.ts +91 -0
- package/src/lsp/index.ts +1 -0
- package/src/main.ts +1 -1
- package/src/modes/controllers/command-controller.ts +3 -42
- package/src/modes/controllers/input-controller.ts +2 -2
- package/src/modes/controllers/selector-controller.ts +8 -0
- package/src/modes/interactive-mode.ts +8 -5
- package/src/modes/types.ts +2 -2
- package/src/sdk.ts +1 -1
- package/src/session/agent-session.ts +13 -10
- package/src/session/agent-storage.ts +26 -2
- package/src/tools/fetch.ts +55 -44
- package/src/tools/gemini-image.ts +2 -7
- package/src/tools/path-utils.ts +33 -3
- package/src/tools/read.ts +1 -1
- package/src/utils/tools-manager.ts +35 -28
- package/src/web/scrapers/github.ts +11 -14
- package/src/web/scrapers/types.ts +2 -36
- package/src/web/scrapers/utils.ts +11 -14
- package/src/web/scrapers/youtube.ts +5 -15
- package/src/web/search/providers/codex.ts +358 -0
- package/src/web/search/providers/gemini.ts +426 -0
- package/src/web/search/types.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [9.0.0] - 2026-01-29
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- External edits to `config.yml` are now preserved when omp reloads or saves unrelated settings. Previously, editing config.yml directly (e.g., removing a package from `packages` array) would be silently reverted on next omp startup when automatic setters like `setLastChangelogVersion()` triggered a save. ([#1046](https://github.com/badlogic/pi-mono/pull/1046) by [@nicobailonMD](https://github.com/nicobailonMD))
|
|
10
|
+
|
|
11
|
+
## [8.13.0] - 2026-01-29
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Added `/debug` command with interactive menu for bug report generation:
|
|
15
|
+
- `Report: performance issue` - CPU profiling with reproduction flow
|
|
16
|
+
- `Report: dump session` - Immediate session bundle creation
|
|
17
|
+
- `Report: memory issue` - Heap snapshot with bundle
|
|
18
|
+
- `View: recent logs` - Display last 50 log entries
|
|
19
|
+
- `View: system info` - Show environment details
|
|
20
|
+
- `Clear: artifact cache` - Remove old session artifacts
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Fixed LSP server errors not being visible in `/session` output or logs when startup fails
|
|
24
|
+
|
|
5
25
|
## [8.12.7] - 2026-01-29
|
|
6
26
|
|
|
7
27
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"ompConfig": {
|
|
@@ -79,12 +79,12 @@
|
|
|
79
79
|
"test": "bun test"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"@oh-my-pi/omp-stats": "
|
|
83
|
-
"@oh-my-pi/pi-agent-core": "
|
|
84
|
-
"@oh-my-pi/pi-ai": "
|
|
85
|
-
"@oh-my-pi/pi-natives": "
|
|
86
|
-
"@oh-my-pi/pi-tui": "
|
|
87
|
-
"@oh-my-pi/pi-utils": "
|
|
82
|
+
"@oh-my-pi/omp-stats": "9.0.0",
|
|
83
|
+
"@oh-my-pi/pi-agent-core": "9.0.0",
|
|
84
|
+
"@oh-my-pi/pi-ai": "9.0.0",
|
|
85
|
+
"@oh-my-pi/pi-natives": "9.0.0",
|
|
86
|
+
"@oh-my-pi/pi-tui": "9.0.0",
|
|
87
|
+
"@oh-my-pi/pi-utils": "9.0.0",
|
|
88
88
|
"@openai/agents": "^0.4.4",
|
|
89
89
|
"@sinclair/typebox": "^0.34.48",
|
|
90
90
|
"ajv": "^8.17.1",
|