@oh-my-pi/pi-coding-agent 14.4.3 → 14.4.4
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/package.json +7 -7
- package/src/config/settings-schema.ts +42 -0
- package/src/modes/components/session-observer-overlay.ts +635 -295
- package/src/modes/components/settings-defs.ts +1 -0
- package/src/modes/controllers/command-controller.ts +16 -5
- package/src/modes/controllers/selector-controller.ts +32 -19
- package/src/modes/interactive-mode.ts +10 -1
- package/src/modes/types.ts +1 -0
- package/src/session/agent-session.ts +9 -1
- package/src/session/session-manager.ts +13 -0
- package/src/session/session-storage.ts +4 -0
- package/src/slash-commands/builtin-registry.ts +8 -0
- package/src/web/search/index.ts +2 -2
- package/src/web/search/provider.ts +3 -0
- package/src/web/search/providers/searxng.ts +238 -0
- package/src/web/search/types.ts +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
4
|
-
"version": "14.4.
|
|
4
|
+
"version": "14.4.4",
|
|
5
5
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
6
6
|
"homepage": "https://github.com/can1357/oh-my-pi",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@agentclientprotocol/sdk": "0.20.0",
|
|
48
48
|
"@mozilla/readability": "^0.6.0",
|
|
49
|
-
"@oh-my-pi/omp-stats": "14.4.
|
|
50
|
-
"@oh-my-pi/pi-agent-core": "14.4.
|
|
51
|
-
"@oh-my-pi/pi-ai": "14.4.
|
|
52
|
-
"@oh-my-pi/pi-natives": "14.4.
|
|
53
|
-
"@oh-my-pi/pi-tui": "14.4.
|
|
54
|
-
"@oh-my-pi/pi-utils": "14.4.
|
|
49
|
+
"@oh-my-pi/omp-stats": "14.4.4",
|
|
50
|
+
"@oh-my-pi/pi-agent-core": "14.4.4",
|
|
51
|
+
"@oh-my-pi/pi-ai": "14.4.4",
|
|
52
|
+
"@oh-my-pi/pi-natives": "14.4.4",
|
|
53
|
+
"@oh-my-pi/pi-tui": "14.4.4",
|
|
54
|
+
"@oh-my-pi/pi-utils": "14.4.4",
|
|
55
55
|
"@sinclair/typebox": "^0.34.49",
|
|
56
56
|
"@xterm/headless": "^6.0.0",
|
|
57
57
|
"ajv": "^8.20.0",
|
|
@@ -1681,6 +1681,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
1681
1681
|
"kagi",
|
|
1682
1682
|
"synthetic",
|
|
1683
1683
|
"parallel",
|
|
1684
|
+
"searxng",
|
|
1684
1685
|
] as const,
|
|
1685
1686
|
default: "auto",
|
|
1686
1687
|
ui: {
|
|
@@ -1761,6 +1762,47 @@ export const SETTINGS_SCHEMA = {
|
|
|
1761
1762
|
ui: { tab: "providers", label: "Exa Websets", description: "Webset management and enrichment tools" },
|
|
1762
1763
|
},
|
|
1763
1764
|
|
|
1765
|
+
// SearXNG
|
|
1766
|
+
"searxng.endpoint": {
|
|
1767
|
+
type: "string",
|
|
1768
|
+
default: undefined,
|
|
1769
|
+
ui: {
|
|
1770
|
+
tab: "providers",
|
|
1771
|
+
label: "SearXNG Endpoint",
|
|
1772
|
+
description: "Base URL of the SearXNG instance (e.g. https://searx.example.org)",
|
|
1773
|
+
},
|
|
1774
|
+
},
|
|
1775
|
+
|
|
1776
|
+
"searxng.token": {
|
|
1777
|
+
type: "string",
|
|
1778
|
+
default: undefined,
|
|
1779
|
+
ui: {
|
|
1780
|
+
tab: "providers",
|
|
1781
|
+
label: "SearXNG Token",
|
|
1782
|
+
description: "Optional bearer token for SearXNG authentication",
|
|
1783
|
+
},
|
|
1784
|
+
},
|
|
1785
|
+
|
|
1786
|
+
"searxng.categories": {
|
|
1787
|
+
type: "string",
|
|
1788
|
+
default: undefined,
|
|
1789
|
+
ui: {
|
|
1790
|
+
tab: "providers",
|
|
1791
|
+
label: "SearXNG Categories",
|
|
1792
|
+
description: "Comma-separated categories filter (e.g. general,news,science)",
|
|
1793
|
+
},
|
|
1794
|
+
},
|
|
1795
|
+
|
|
1796
|
+
"searxng.language": {
|
|
1797
|
+
type: "string",
|
|
1798
|
+
default: undefined,
|
|
1799
|
+
ui: {
|
|
1800
|
+
tab: "providers",
|
|
1801
|
+
label: "SearXNG Language",
|
|
1802
|
+
description: "Language code for search results (e.g. en, zh-CN)",
|
|
1803
|
+
},
|
|
1804
|
+
},
|
|
1805
|
+
|
|
1764
1806
|
"commit.mapReduceEnabled": { type: "boolean", default: true },
|
|
1765
1807
|
|
|
1766
1808
|
"commit.mapReduceMinFiles": { type: "number", default: 4 },
|