@mondaydotcomorg/agent-toolkit 5.3.2 → 5.4.0
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 +11 -0
- package/dist/cjs/core/index.js +173 -180
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/mcp/index.js +174 -181
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.js +173 -180
- package/dist/cjs/openai/index.js.map +1 -1
- package/dist/esm/core/index.js +173 -180
- package/dist/esm/core/index.js.map +1 -1
- package/dist/esm/mcp/index.js +174 -181
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.js +173 -180
- package/dist/esm/openai/index.js.map +1 -1
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.3.3
|
|
4
|
+
|
|
5
|
+
### Workforms tools — trim MCP tool descriptions by ~79% to reduce token cost
|
|
6
|
+
|
|
7
|
+
- Removed descriptions that restate the field name, type, or enum values
|
|
8
|
+
- Removed container object descriptions (`"Object containing X configuration"`)
|
|
9
|
+
- Rewrote remaining descriptions to be terse and actionable
|
|
10
|
+
- Added non-obvious constraints: type immutability on update, safe option update workflow (call `get_form` first), `page_block_id` null vs omit distinction, `existing_column_id` usage guidance
|
|
11
|
+
- `update_form` action description now explains each action requires different fields — check field descriptions
|
|
12
|
+
- Net result: ~4,591 → ~963 tokens per request across all 4 form tools
|
|
13
|
+
|
|
3
14
|
## 5.3.1
|
|
4
15
|
|
|
5
16
|
### Workforms tools — return full option data from GraphQL queries
|