safepropel 1.4.6 → 1.4.7
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/engine/prompt_bundle.enc
CHANGED
|
Binary file
|
|
@@ -217,7 +217,8 @@ class WorkflowExecutor {
|
|
|
217
217
|
const outputSection = outputSectionMatch ? outputSectionMatch[0] : workflow.content;
|
|
218
218
|
|
|
219
219
|
// Extract template reference from output section - flexible pattern
|
|
220
|
-
|
|
220
|
+
// Matches any markdown file in .propel/templates/ directory
|
|
221
|
+
const templateMatch = outputSection.match(/`(\.propel\/templates\/[\w-]+\.md)`/i);
|
|
221
222
|
const templates = [];
|
|
222
223
|
|
|
223
224
|
if (templateMatch) {
|
package/package.json
CHANGED