@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 CHANGED
@@ -1,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.715 (2026-04-09)
3
+ ## 0.1.716 (2026-04-09)
4
4
 
5
5
  ### Features
6
+ - add 11 missing CC action types for comprehensive API coverage
6
7
  - agents must check minions state before starting fresh research
7
8
 
8
9
  ## 0.1.714 (2026-04-09)
@@ -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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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 = '&#10003; 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.715",
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"
@@ -38,7 +38,14 @@ Core action types:
38
38
  - **plan-edit**: file, instruction
39
39
  - **file-edit**: file, instruction
40
40
 
41
- Additional: pause-plan, approve-plan, reject-plan, archive-plan, edit-prd-item, remove-prd-item, delete-work-item, schedule, delete-schedule, edit-pipeline, trigger-pipeline, unpin, link-pr, archive-meeting, add-meeting-note, update-routing, file-bug. Run `curl localhost:7331/api/routes` for full parameter details.
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.