@yemi33/minions 0.1.19 → 0.1.20

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.20 (2026-03-28)
4
+
5
+ ### Dashboard
6
+ - dashboard/js/settings.js
7
+
3
8
  ## 0.1.19 (2026-03-28)
4
9
 
5
10
  ### Other
@@ -135,16 +135,14 @@ async function saveSettings() {
135
135
  }
136
136
 
137
137
  async function addProject() {
138
- try {
139
- // Open folder picker
140
- const browseRes = await fetch('/api/projects/browse', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: '{}' });
141
- const browseData = await browseRes.json();
142
- if (browseData.cancelled || !browseData.path) return;
138
+ // Prompt for path directly — folder picker dialogs often open behind the browser
139
+ const projectPath = prompt('Enter the full path to your project directory:\n\ne.g. C:\\Users\\you\\repos\\my-project');
140
+ if (!projectPath) return;
143
141
 
144
- // Add the project
142
+ try {
145
143
  const addRes = await fetch('/api/projects/add', {
146
144
  method: 'POST', headers: { 'Content-Type': 'application/json' },
147
- body: JSON.stringify({ path: browseData.path })
145
+ body: JSON.stringify({ path: projectPath.trim() })
148
146
  });
149
147
  const addData = await addRes.json();
150
148
  if (!addRes.ok) { alert('Failed: ' + (addData.error || 'unknown')); return; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
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"