@ateam-ai/mcp 0.4.33 → 0.4.34
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/package.json +1 -1
- package/src/tools.js +7 -2
package/package.json
CHANGED
package/src/tools.js
CHANGED
|
@@ -3408,10 +3408,15 @@ const handlers = {
|
|
|
3408
3408
|
skill_id,
|
|
3409
3409
|
phases,
|
|
3410
3410
|
_diff,
|
|
3411
|
-
|
|
3411
|
+
// OPEN-8: the full after-state (a big skill/solution def) blows the ~50KB
|
|
3412
|
+
// output cap and truncates the rest of the result. Return a compact
|
|
3413
|
+
// summary by default; pass include_definition:true for the whole thing.
|
|
3414
|
+
...(include_definition
|
|
3415
|
+
? { after_state: patched }
|
|
3416
|
+
: { after_state_summary: _summarizeDef(patched) }),
|
|
3412
3417
|
would_write,
|
|
3413
3418
|
would_write_bytes: JSON.stringify(patched, null, 2).length,
|
|
3414
|
-
hint: "No changes applied. Remove dry_run:true to commit + redeploy.",
|
|
3419
|
+
hint: "No changes applied. Remove dry_run:true to commit + redeploy. (Pass include_definition:true for the full after_state.)",
|
|
3415
3420
|
};
|
|
3416
3421
|
}
|
|
3417
3422
|
|