From c5cf74e032ec31b926c5acc5e21b017cf434f63e Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Fri, 16 Jan 2026 14:01:46 +0300 Subject: [PATCH] feat(coding-agent): export getShellConfig for extensions (#766) --- packages/coding-agent/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/coding-agent/src/index.ts b/packages/coding-agent/src/index.ts index e93f0eec..62cad798 100644 --- a/packages/coding-agent/src/index.ts +++ b/packages/coding-agent/src/index.ts @@ -280,3 +280,5 @@ export { type ThemeColor, } from "./modes/interactive/theme/theme.js"; export { parseFrontmatter, stripFrontmatter } from "./utils/frontmatter.js"; +// Shell utilities +export { getShellConfig } from "./utils/shell.js";