@yemi33/minions 0.1.715 → 0.1.716
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 +2 -1
- package/dashboard/js/command-center.js +70 -0
- package/package.json +1 -1
- package/prompts/cc-system.md +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -696,6 +696,76 @@ async function ccExecuteAction(action) {
|
|
|
696
696
|
status.style.color = 'var(--green)';
|
|
697
697
|
break;
|
|
698
698
|
}
|
|
699
|
+
case 'create-pipeline': {
|
|
700
|
+
await _ccFetch('/api/pipelines', { id: action.id, title: action.title, stages: action.stages || [], trigger: action.trigger || null, stopWhen: action.stopWhen || null, monitoredResources: action.monitoredResources || null });
|
|
701
|
+
status.innerHTML = '✓ Pipeline created: <strong>' + escHtml(action.id) + '</strong>';
|
|
702
|
+
status.style.color = 'var(--green)';
|
|
703
|
+
refresh();
|
|
704
|
+
break;
|
|
705
|
+
}
|
|
706
|
+
case 'delete-pipeline': {
|
|
707
|
+
await _ccFetch('/api/pipelines/delete', { id: action.id });
|
|
708
|
+
status.innerHTML = '✓ Pipeline deleted: <strong>' + escHtml(action.id) + '</strong>';
|
|
709
|
+
status.style.color = 'var(--green)';
|
|
710
|
+
refresh();
|
|
711
|
+
break;
|
|
712
|
+
}
|
|
713
|
+
case 'abort-pipeline': {
|
|
714
|
+
await _ccFetch('/api/pipelines/abort', { id: action.id });
|
|
715
|
+
status.innerHTML = '✓ Pipeline aborted: <strong>' + escHtml(action.id) + '</strong>';
|
|
716
|
+
status.style.color = 'var(--green)';
|
|
717
|
+
refresh();
|
|
718
|
+
break;
|
|
719
|
+
}
|
|
720
|
+
case 'retrigger-pipeline': {
|
|
721
|
+
await _ccFetch('/api/pipelines/retrigger', { id: action.id });
|
|
722
|
+
status.innerHTML = '✓ Pipeline retriggered: <strong>' + escHtml(action.id) + '</strong>';
|
|
723
|
+
status.style.color = 'var(--green)';
|
|
724
|
+
wakeEngine();
|
|
725
|
+
break;
|
|
726
|
+
}
|
|
727
|
+
case 'advance-meeting': {
|
|
728
|
+
await _ccFetch('/api/meetings/advance', { id: action.id });
|
|
729
|
+
status.innerHTML = '✓ Meeting advanced: <strong>' + escHtml(action.id) + '</strong>';
|
|
730
|
+
status.style.color = 'var(--green)';
|
|
731
|
+
refresh();
|
|
732
|
+
break;
|
|
733
|
+
}
|
|
734
|
+
case 'end-meeting': {
|
|
735
|
+
await _ccFetch('/api/meetings/end', { id: action.id });
|
|
736
|
+
status.innerHTML = '✓ Meeting ended: <strong>' + escHtml(action.id) + '</strong>';
|
|
737
|
+
status.style.color = 'var(--green)';
|
|
738
|
+
refresh();
|
|
739
|
+
break;
|
|
740
|
+
}
|
|
741
|
+
case 'delete-meeting': {
|
|
742
|
+
await _ccFetch('/api/meetings/delete', { id: action.id });
|
|
743
|
+
status.innerHTML = '✓ Meeting deleted: <strong>' + escHtml(action.id) + '</strong>';
|
|
744
|
+
status.style.color = 'var(--green)';
|
|
745
|
+
refresh();
|
|
746
|
+
break;
|
|
747
|
+
}
|
|
748
|
+
case 'trigger-verify': {
|
|
749
|
+
await _ccFetch('/api/plans/trigger-verify', { file: action.file });
|
|
750
|
+
status.innerHTML = '✓ Verification triggered for: <strong>' + escHtml(action.file) + '</strong>';
|
|
751
|
+
status.style.color = 'var(--green)';
|
|
752
|
+
wakeEngine();
|
|
753
|
+
break;
|
|
754
|
+
}
|
|
755
|
+
case 'regenerate-plan': {
|
|
756
|
+
await _ccFetch('/api/plans/regenerate', { file: action.file });
|
|
757
|
+
status.innerHTML = '✓ Plan regenerated: <strong>' + escHtml(action.file) + '</strong>';
|
|
758
|
+
status.style.color = 'var(--green)';
|
|
759
|
+
wakeEngine();
|
|
760
|
+
break;
|
|
761
|
+
}
|
|
762
|
+
case 'unarchive-plan': {
|
|
763
|
+
await _ccFetch('/api/plans/unarchive', { file: action.file });
|
|
764
|
+
status.innerHTML = '✓ Plan unarchived: <strong>' + escHtml(action.file) + '</strong>';
|
|
765
|
+
status.style.color = 'var(--green)';
|
|
766
|
+
refresh();
|
|
767
|
+
break;
|
|
768
|
+
}
|
|
699
769
|
default:
|
|
700
770
|
status.innerHTML = '? Unknown action: ' + escHtml(action.type);
|
|
701
771
|
status.style.color = 'var(--muted)';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.716",
|
|
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"
|
package/prompts/cc-system.md
CHANGED
|
@@ -38,7 +38,14 @@ Core action types:
|
|
|
38
38
|
- **plan-edit**: file, instruction
|
|
39
39
|
- **file-edit**: file, instruction
|
|
40
40
|
|
|
41
|
-
Additional
|
|
41
|
+
Additional actions (all take `id` or `file` as primary key):
|
|
42
|
+
- Plan lifecycle: pause-plan, approve-plan, reject-plan, archive-plan, unarchive-plan, execute-plan, regenerate-plan, trigger-verify
|
|
43
|
+
- PRD items: edit-prd-item (source, itemId, name, description, priority, complexity), remove-prd-item (source, itemId)
|
|
44
|
+
- Work items: delete-work-item (id, source)
|
|
45
|
+
- Schedules: schedule (id, title, cron, workType, project, agent, description, priority, enabled), delete-schedule (id)
|
|
46
|
+
- Pipelines: create-pipeline (id, title, stages[], trigger, stopWhen, monitoredResources), edit-pipeline (id, title, stages, trigger), delete-pipeline (id), trigger-pipeline (id), abort-pipeline (id), retrigger-pipeline (id)
|
|
47
|
+
- Meetings: add-meeting-note (id, note), advance-meeting (id), end-meeting (id), archive-meeting (id), delete-meeting (id)
|
|
48
|
+
- Other: unpin (title), link-pr (url, title, project, autoObserve), update-routing (content), file-bug (title, description, labels)
|
|
42
49
|
|
|
43
50
|
## Terminology
|
|
44
51
|
Terms like schedules, pipelines, agents, inbox, work items, plans, PRD, PRs, dispatch, routing, KB, notes, pinned, meetings have Minions-specific meanings. Always resolve against Minions state first (read files or call APIs). Fall back to generic only if no Minions context exists.
|