fix(dispatch): resolve plugin namespace parsing, template substitution, and discovery duplication

This commit is contained in:
YeonGyu-Kim
2026-03-03 00:14:01 +09:00
parent f383d7abb5
commit c084cc3f26
10 changed files with 256 additions and 38 deletions
@@ -49,7 +49,9 @@ export async function formatLoadedCommand(
let finalContent = resolvedContent.trim()
if (userMessage) {
finalContent = finalContent.replace(/\$\{user_message\}/g, userMessage)
finalContent = finalContent
.replace(/\$\{user_message\}/g, userMessage)
.replace(/\$ARGUMENTS/g, userMessage)
}
sections.push(finalContent)