@yemi33/minions 0.1.1799 → 0.1.1800

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.1800 (2026-05-08)
4
+
5
+ ### Other
6
+ - Remove unredacted CC parse warning (#2213)
7
+
3
8
  ## 0.1.1799 (2026-05-08)
4
9
 
5
10
  ### Other
package/dashboard.js CHANGED
@@ -1871,10 +1871,9 @@ function parseCCActions(text) {
1871
1871
  const result = { text: displayText, actions };
1872
1872
  if (parseError && actions.length === 0) {
1873
1873
  result._actionParseError = parseError;
1874
- // Visibility for the engine log — silent failure here previously masked issue #1834.
1874
+ // Visibility for the engine log — shared.log applies SEC-09 redaction before persistence.
1875
1875
  try {
1876
1876
  const snippet = (segment.trim() || '').slice(0, 200);
1877
- console.warn(`[CC] action JSON parse failed (${parseError}); raw segment: ${snippet}`);
1878
1877
  if (typeof shared !== 'undefined' && shared && typeof shared.log === 'function') {
1879
1878
  shared.log('warn', `CC action JSON parse failed: ${parseError} — segment: ${snippet}`);
1880
1879
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-08T16:51:53.990Z"
4
+ "cachedAt": "2026-05-08T16:56:04.298Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1799",
3
+ "version": "0.1.1800",
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"