@yemi33/minions 0.1.352 → 0.1.353

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 CHANGED
@@ -1,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.352 (2026-04-06)
3
+ ## 0.1.353 (2026-04-06)
4
4
 
5
5
  ### Fixes
6
+ - pipeline template regex now matches hyphenated stage IDs
6
7
  - pipeline Continue button shows immediate feedback
7
8
  - skip meeting modal re-render when data unchanged
8
9
 
@@ -101,7 +101,7 @@ function completeRun(pipelineId, runId, status) {
101
101
 
102
102
  function resolveTemplate(str, run) {
103
103
  if (!str || typeof str !== 'string') return str;
104
- return str.replace(/\{\{stages\.(\w+)\.(\w+)\}\}/g, (_, stageId, field) => {
104
+ return str.replace(/\{\{stages\.([\w-]+)\.([\w-]+)\}\}/g, (_, stageId, field) => {
105
105
  const stage = run?.stages?.[stageId];
106
106
  if (!stage) return '';
107
107
  if (field === 'output') return stage.output || '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.352",
3
+ "version": "0.1.353",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"