From fbbc58810c71b21213510c8db3122e79542c42a0 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Tue, 12 May 2026 16:42:37 -0400 Subject: [PATCH] refactor(constants): use ~/.pi/agent/subagents for idiomatic pi path --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 7fc06c9..46f5413 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -6,6 +6,6 @@ const SRC_DIR = path.dirname(fileURLToPath(import.meta.url)); export const EXTENSION_DIR = path.dirname(SRC_DIR); export const EXTENSION_ENTRY = path.join(EXTENSION_DIR, "index.ts"); -export const SUBAGENTS_DIR = path.join(homedir(), ".pi", "subagents"); +export const SUBAGENTS_DIR = path.join(homedir(), ".pi", "agent", "subagents"); export const FINALIZE_TOOL_NAME = "subagent_finalize"; export const MAX_FINALIZE_RETRIES = 2;