@yemi33/minions 0.1.767 → 0.1.768

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.767 (2026-04-10)
3
+ ## 0.1.768 (2026-04-10)
4
4
 
5
5
  ### Features
6
6
  - id/kill endpoint
7
7
 
8
8
  ### Fixes
9
+ - handle work type names as action aliases for dispatch
9
10
  - align Agent Usage and Engine Usage table columns
10
11
  - harden agent kill endpoint — use killGracefully, clean steer.md, remove dead var
11
12
 
@@ -683,9 +683,15 @@ async function ccExecuteAction(action) {
683
683
 
684
684
  try {
685
685
  switch (action.type) {
686
- case 'dispatch': {
686
+ case 'dispatch':
687
+ case 'fix':
688
+ case 'implement':
689
+ case 'explore':
690
+ case 'review':
691
+ case 'test': {
692
+ var workType = action.workType || (action.type !== 'dispatch' ? action.type : 'implement');
687
693
  var res = await _ccFetch('/api/work-items', {
688
- title: action.title, type: action.workType || 'implement',
694
+ title: action.title, type: workType,
689
695
  priority: action.priority || 'medium', description: action.description || '',
690
696
  project: action.project || '', agents: action.agents || [],
691
697
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.767",
3
+ "version": "0.1.768",
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"