@oh-my-pi/pi-coding-agent 15.11.0 → 15.11.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 +30 -1
- package/dist/cli.js +73 -67
- package/dist/types/capability/mcp.d.ts +1 -0
- package/dist/types/config/settings-schema.d.ts +13 -4
- package/dist/types/export/html/template.generated.d.ts +1 -1
- package/dist/types/mcp/oauth-discovery.d.ts +2 -0
- package/dist/types/mcp/oauth-flow.d.ts +6 -1
- package/dist/types/mcp/transports/stdio.d.ts +1 -0
- package/dist/types/mcp/types.d.ts +2 -0
- package/dist/types/modes/components/assistant-message.d.ts +1 -0
- package/dist/types/modes/components/mcp-add-wizard.d.ts +2 -1
- package/dist/types/modes/components/settings-selector.d.ts +1 -0
- package/dist/types/modes/components/status-line/types.d.ts +3 -0
- package/dist/types/modes/components/transcript-container.d.ts +3 -2
- package/dist/types/modes/controllers/tool-args-reveal.d.ts +43 -0
- package/dist/types/modes/theme/theme.d.ts +2 -1
- package/dist/types/task/index.d.ts +3 -3
- package/dist/types/tools/render-utils.d.ts +22 -0
- package/package.json +11 -11
- package/src/capability/mcp.ts +1 -0
- package/src/cli/gallery-cli.ts +5 -4
- package/src/config/mcp-schema.json +4 -0
- package/src/config/settings-schema.ts +15 -4
- package/src/edit/renderer.ts +96 -46
- package/src/export/html/template.generated.ts +1 -1
- package/src/export/html/template.js +6 -1
- package/src/internal-urls/docs-index.generated.ts +4 -4
- package/src/mcp/manager.ts +3 -0
- package/src/mcp/oauth-discovery.ts +27 -2
- package/src/mcp/oauth-flow.ts +47 -1
- package/src/mcp/transports/stdio.ts +3 -0
- package/src/mcp/types.ts +2 -0
- package/src/modes/components/assistant-message.ts +15 -0
- package/src/modes/components/btw-panel.ts +5 -1
- package/src/modes/components/mcp-add-wizard.ts +13 -0
- package/src/modes/components/settings-selector.ts +2 -0
- package/src/modes/components/status-line/component.ts +22 -12
- package/src/modes/components/status-line/types.ts +3 -0
- package/src/modes/components/transcript-container.ts +99 -18
- package/src/modes/components/tree-selector.ts +6 -1
- package/src/modes/controllers/event-controller.ts +28 -4
- package/src/modes/controllers/mcp-command-controller.ts +34 -2
- package/src/modes/controllers/selector-controller.ts +4 -0
- package/src/modes/controllers/tool-args-reveal.ts +174 -0
- package/src/modes/interactive-mode.ts +9 -2
- package/src/modes/theme/theme.ts +6 -0
- package/src/prompts/tools/task.md +7 -2
- package/src/session/agent-session.ts +25 -4
- package/src/task/index.ts +15 -10
- package/src/task/render.ts +10 -4
- package/src/tools/render-utils.ts +56 -0
- package/src/tools/write.ts +65 -47
- package/src/web/search/providers/anthropic.ts +29 -4
|
@@ -28,6 +28,7 @@ export interface MCPServer {
|
|
|
28
28
|
tokenUrl?: string;
|
|
29
29
|
clientId?: string;
|
|
30
30
|
clientSecret?: string;
|
|
31
|
+
resource?: string;
|
|
31
32
|
};
|
|
32
33
|
/** OAuth configuration (clientId, clientSecret, redirectUri, callbackPort, callbackPath) for servers requiring explicit client credentials */
|
|
33
34
|
oauth?: {
|
|
@@ -356,6 +356,15 @@ export declare const SETTINGS_SCHEMA: {
|
|
|
356
356
|
readonly description: "Use the session name color for the editor border and status line gap";
|
|
357
357
|
};
|
|
358
358
|
};
|
|
359
|
+
readonly "statusLine.transparent": {
|
|
360
|
+
readonly type: "boolean";
|
|
361
|
+
readonly default: false;
|
|
362
|
+
readonly ui: {
|
|
363
|
+
readonly tab: "appearance";
|
|
364
|
+
readonly label: "Transparent Status Line";
|
|
365
|
+
readonly description: "Use the terminal's default background for the status line instead of the theme's `statusLineBg`. Powerline end caps are dropped because they need a contrasting fill to bridge into the surrounding terminal.";
|
|
366
|
+
};
|
|
367
|
+
};
|
|
359
368
|
readonly "tools.artifactSpillThreshold": {
|
|
360
369
|
readonly type: "number";
|
|
361
370
|
readonly default: 50;
|
|
@@ -691,7 +700,7 @@ export declare const SETTINGS_SCHEMA: {
|
|
|
691
700
|
readonly ui: {
|
|
692
701
|
readonly tab: "appearance";
|
|
693
702
|
readonly label: "Smooth Streaming";
|
|
694
|
-
readonly description: "Reveal assistant text smoothly while
|
|
703
|
+
readonly description: "Reveal assistant text and streamed tool input smoothly while chunks arrive";
|
|
695
704
|
};
|
|
696
705
|
};
|
|
697
706
|
readonly "display.showTokenUsage": {
|
|
@@ -2834,11 +2843,11 @@ export declare const SETTINGS_SCHEMA: {
|
|
|
2834
2843
|
};
|
|
2835
2844
|
readonly "async.enabled": {
|
|
2836
2845
|
readonly type: "boolean";
|
|
2837
|
-
readonly default:
|
|
2846
|
+
readonly default: true;
|
|
2838
2847
|
readonly ui: {
|
|
2839
2848
|
readonly tab: "tools";
|
|
2840
2849
|
readonly label: "Async Execution";
|
|
2841
|
-
readonly description: "Enable async bash commands";
|
|
2850
|
+
readonly description: "Enable async bash commands and background task execution";
|
|
2842
2851
|
};
|
|
2843
2852
|
};
|
|
2844
2853
|
readonly "async.maxJobs": {
|
|
@@ -3089,7 +3098,7 @@ export declare const SETTINGS_SCHEMA: {
|
|
|
3089
3098
|
readonly ui: {
|
|
3090
3099
|
readonly tab: "tasks";
|
|
3091
3100
|
readonly label: "Batch Task Calls";
|
|
3092
|
-
readonly description: "Switch the task tool to its batch shape: one call carries { agent, context, tasks[] } — one subagent per item (with per-item isolation) and a required shared context prepended to every assignment.
|
|
3101
|
+
readonly description: "Switch the task tool to its batch shape: one call carries { agent, context, tasks[] } — one subagent per item (with per-item isolation) and a required shared context prepended to every assignment. With async.enabled=true, each spawn runs as an independent background agent with the normal idle/parked lifecycle; otherwise the call blocks for merged results. Disable to restore the flat single-spawn schema.";
|
|
3093
3102
|
};
|
|
3094
3103
|
};
|
|
3095
3104
|
readonly "task.maxConcurrency": {
|