@oh-my-pi/pi-coding-agent 12.11.2 → 12.12.1

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 CHANGED
@@ -2,6 +2,50 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [12.12.1] - 2026-02-19
6
+
7
+ ### Added
8
+
9
+ - Added Kimi (Moonshot) as a web search provider with OAuth and API key support ([#110](https://github.com/can1357/oh-my-pi/pull/110) by [@oglassdev](https://github.com/oglassdev))
10
+
11
+ ### Changed
12
+
13
+ - Changed web search auto-resolve priority to prefer Perplexity first
14
+
15
+ ### Fixed
16
+
17
+ - Fixed Mermaid pre-render failures from repeatedly re-triggering background renders (freeze loop) and restored resilient rendering when diagram conversion/callbacks fail ([#109](https://github.com/can1357/oh-my-pi/issues/109)).
18
+
19
+ ## [12.12.0] - 2026-02-19
20
+
21
+ ### Added
22
+
23
+ - Display streaming text preview during agent specification generation to show real-time progress
24
+ - Added `onRequestRender` callback to agent dashboard for triggering UI updates during async operations
25
+ - Added agent creation flow (press N in dashboard) to generate custom agents from natural language descriptions
26
+ - Added ability to save generated agents to project or user scope with automatic identifier and system prompt generation
27
+ - Added scope toggle (Tab) during agent creation to choose between project-level and user-level agent storage
28
+ - Added agent regeneration (R key) to refine generated specifications without restarting the creation flow
29
+ - Added model suggestions in model override editor to help users discover available models
30
+ - Added success notices to confirm agent creation and model override updates
31
+
32
+ ### Changed
33
+
34
+ - Updated agent creation flow to show review screen before generation completes, improving UX feedback
35
+ - Changed generation status hint to display "Generating..." while specification is being created
36
+ - Improved system prompt preview formatting with text wrapping and line truncation indicators
37
+
38
+ ### Fixed
39
+
40
+ - Fixed interactive-mode editor height to stay bounded and resize-aware, preventing off-screen cursor drift during long prompt/history navigation ([#99](https://github.com/can1357/oh-my-pi/issues/99)).
41
+
42
+ ## [12.11.3] - 2026-02-19
43
+
44
+ ### Fixed
45
+
46
+ - Fixed model selector search initialization to apply the latest live query after asynchronous model loading.
47
+ - Fixed Codex provider session lifecycle on model switches and history rewrites to clear stale session metadata before continuing the conversation.
48
+
5
49
  ## [12.11.0] - 2026-02-19
6
50
 
7
51
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-coding-agent",
3
- "version": "12.11.2",
3
+ "version": "12.12.1",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "bin": {
@@ -84,12 +84,12 @@
84
84
  },
85
85
  "dependencies": {
86
86
  "@mozilla/readability": "0.6.0",
87
- "@oh-my-pi/omp-stats": "12.11.2",
88
- "@oh-my-pi/pi-agent-core": "12.11.2",
89
- "@oh-my-pi/pi-ai": "12.11.2",
90
- "@oh-my-pi/pi-natives": "12.11.2",
91
- "@oh-my-pi/pi-tui": "12.11.2",
92
- "@oh-my-pi/pi-utils": "12.11.2",
87
+ "@oh-my-pi/omp-stats": "12.12.1",
88
+ "@oh-my-pi/pi-agent-core": "12.12.1",
89
+ "@oh-my-pi/pi-ai": "12.12.1",
90
+ "@oh-my-pi/pi-natives": "12.12.1",
91
+ "@oh-my-pi/pi-tui": "12.12.1",
92
+ "@oh-my-pi/pi-utils": "12.12.1",
93
93
  "@sinclair/typebox": "^0.34.48",
94
94
  "@xterm/headless": "^6.0.0",
95
95
  "ajv": "^8.18.0",
@@ -8,6 +8,7 @@ import { APP_NAME } from "@oh-my-pi/pi-utils/dirs";
8
8
  import chalk from "chalk";
9
9
  import { initTheme, theme } from "../modes/theme/theme";
10
10
  import { runSearchQuery, type SearchParams } from "../web/search/index";
11
+ import { SEARCH_PROVIDER_ORDER } from "../web/search/provider";
11
12
  import { renderSearchResult } from "../web/search/render";
12
13
  import type { SearchProviderId } from "../web/search/types";
13
14
 
@@ -19,18 +20,7 @@ export interface SearchCommandArgs {
19
20
  expanded: boolean;
20
21
  }
21
22
 
22
- const PROVIDERS: Array<SearchProviderId | "auto"> = [
23
- "auto",
24
- "anthropic",
25
- "perplexity",
26
- "exa",
27
- "brave",
28
- "jina",
29
- "zai",
30
- "gemini",
31
- "codex",
32
- "synthetic",
33
- ];
23
+ const PROVIDERS: Array<SearchProviderId | "auto"> = ["auto", ...SEARCH_PROVIDER_ORDER];
34
24
 
35
25
  const RECENCY_OPTIONS: SearchCommandArgs["recency"][] = ["day", "week", "month", "year"];
36
26
 
@@ -3,20 +3,9 @@
3
3
  */
4
4
  import { Args, Command, Flags } from "@oh-my-pi/pi-utils/cli";
5
5
  import { runSearchCommand, type SearchCommandArgs } from "../cli/web-search-cli";
6
- import type { SearchProviderId } from "../web/search/types";
7
-
8
- const PROVIDERS: Array<SearchProviderId | "auto"> = [
9
- "auto",
10
- "anthropic",
11
- "perplexity",
12
- "exa",
13
- "brave",
14
- "jina",
15
- "zai",
16
- "gemini",
17
- "codex",
18
- "synthetic",
19
- ];
6
+ import { SEARCH_PROVIDER_ORDER } from "../web/search/provider";
7
+
8
+ const PROVIDERS: Array<string> = ["auto", ...SEARCH_PROVIDER_ORDER];
20
9
 
21
10
  const RECENCY: NonNullable<SearchCommandArgs["recency"]>[] = ["day", "week", "month", "year"];
22
11
 
@@ -42,7 +31,7 @@ export default class Search extends Command {
42
31
 
43
32
  const cmd: SearchCommandArgs = {
44
33
  query,
45
- provider: flags.provider as SearchProviderId | "auto" | undefined,
34
+ provider: flags.provider as SearchCommandArgs["provider"],
46
35
  recency: flags.recency as SearchCommandArgs["recency"],
47
36
  limit: flags.limit,
48
37
  expanded: !flags.compact,
@@ -536,6 +536,14 @@ export const SETTINGS_SCHEMA = {
536
536
  submenu: true,
537
537
  },
538
538
  },
539
+ "task.disabledAgents": {
540
+ type: "array",
541
+ default: [] as string[],
542
+ },
543
+ "task.agentModelOverrides": {
544
+ type: "record",
545
+ default: {} as Record<string, string>,
546
+ },
539
547
 
540
548
  // ─────────────────────────────────────────────────────────────────────────
541
549
  // Startup settings
@@ -645,7 +653,7 @@ export const SETTINGS_SCHEMA = {
645
653
  // ─────────────────────────────────────────────────────────────────────────
646
654
  "providers.webSearch": {
647
655
  type: "enum",
648
- values: ["auto", "exa", "brave", "jina", "zai", "perplexity", "anthropic"] as const,
656
+ values: ["auto", "exa", "brave", "jina", "kimi", "zai", "perplexity", "anthropic"] as const,
649
657
  default: "auto",
650
658
  ui: { tab: "services", label: "Web search provider", description: "Provider for web search tool", submenu: true },
651
659
  },