@yemi33/minions 0.1.715 → 0.1.717
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 +5 -1
- package/dashboard/js/command-center.js +70 -0
- package/package.json +1 -1
- package/playbooks/shared-rules.md +13 -1
- package/prompts/cc-system.md +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.717 (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
|
|
|
9
|
+
### Fixes
|
|
10
|
+
- add skill block format example to shared playbook
|
|
11
|
+
|
|
8
12
|
## 0.1.714 (2026-04-09)
|
|
9
13
|
|
|
10
14
|
### Other
|
|
@@ -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.717",
|
|
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"
|
|
@@ -12,5 +12,17 @@
|
|
|
12
12
|
- Work item descriptions and `resultSummary` for prior completed work on the same topic
|
|
13
13
|
- `pinned.md` — critical context flagged by the human teammate
|
|
14
14
|
This avoids duplicating research another agent already completed.
|
|
15
|
-
- If you discover a repeatable workflow, output it as a
|
|
15
|
+
- If you discover a repeatable workflow, output it as a fenced skill block. The engine auto-extracts it to `~/.claude/skills/<name>/SKILL.md`. Required format:
|
|
16
|
+
````
|
|
17
|
+
```skill
|
|
18
|
+
---
|
|
19
|
+
name: skill-name-here
|
|
20
|
+
description: One-line description of when to trigger this skill
|
|
21
|
+
scope: minions
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
Instructions for the skill go here.
|
|
25
|
+
```
|
|
26
|
+
````
|
|
27
|
+
The `name` and `description` fields are required. `scope` defaults to `minions` (global). Use `scope: project` + `project: ProjectName` for project-specific skills.
|
|
16
28
|
- Do TDD where it makes sense — write failing tests first, then implement, then verify tests pass. Especially for bug fixes (write a test that reproduces the bug) and new utility functions.
|
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.
|