@yemi33/minions 0.1.1919 → 0.1.1920

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.
@@ -265,8 +265,7 @@ async function openSettings() {
265
265
  '</div>' +
266
266
 
267
267
  '<h3 style="font-size:13px;color:var(--blue);margin-bottom:8px">Claude CLI</h3>' +
268
- '<div style="display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:8px">' +
269
- settingsField('Output Format', 'set-outputFormat', c.outputFormat || 'stream-json', '', '') +
268
+ '<div style="display:grid;grid-template-columns:1fr;gap:8px;margin-bottom:8px">' +
270
269
  settingsField('Allowed Tools', 'set-allowedTools', c.allowedTools || '', '', 'Claude allow-list passed through for compatibility; runtime bypass flags are adapter-owned.') +
271
270
  '</div>' +
272
271
  '<div style="font-size:10px;color:var(--muted);margin-bottom:16px;padding:6px 8px;border:1px solid var(--border);border-radius:4px;background:var(--surface-subtle, rgba(130,160,210,0.08))">' +
@@ -635,7 +634,6 @@ async function saveSettings() {
635
634
  };
636
635
 
637
636
  const claudePayload = {
638
- outputFormat: document.getElementById('set-outputFormat').value,
639
637
  allowedTools: document.getElementById('set-allowedTools').value,
640
638
  };
641
639
 
@@ -0,0 +1,5 @@
1
+ {
2
+ "runtime": "copilot",
3
+ "models": null,
4
+ "cachedAt": "2026-05-13T22:41:19.532Z"
5
+ }
package/engine/shared.js CHANGED
@@ -1816,7 +1816,11 @@ function pruneDefaultClaudeConfig(config) {
1816
1816
  };
1817
1817
 
1818
1818
  removeKey('permissionMode');
1819
- for (const key of ['binary', 'outputFormat', 'allowedTools']) {
1819
+ // outputFormat is fully orphan the Claude adapter hard-codes 'stream-json'
1820
+ // and nothing threads config.claude.outputFormat into it. Strip unconditionally
1821
+ // so stale values stop tripping the deprecation warning.
1822
+ removeKey('outputFormat');
1823
+ for (const key of ['binary', 'allowedTools']) {
1820
1824
  if (Object.prototype.hasOwnProperty.call(claude, key) && claude[key] === DEFAULT_CLAUDE[key]) {
1821
1825
  removeKey(key);
1822
1826
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1919",
3
+ "version": "0.1.1920",
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"