terminator-mcp-agent 0.15.2 → 0.15.4
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/README.md +16 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1026,3 +1026,19 @@ Workflows support `fallback_id` to handle errors gracefully:
|
|
|
1026
1026
|
- Use `troubleshooting:` section for recovery steps only accessed via fallback
|
|
1027
1027
|
|
|
1028
1028
|
> Need more help? Browse the examples under `examples/` in this repo or open a discussion on GitHub.
|
|
1029
|
+
|
|
1030
|
+
## Documentation
|
|
1031
|
+
|
|
1032
|
+
### Workflow Development
|
|
1033
|
+
|
|
1034
|
+
- **[Workflow Output Structure](docs/WORKFLOW_OUTPUT_STRUCTURE.md)**: Detailed documentation on the expected output structure for workflows, including:
|
|
1035
|
+
- How to structure `parsed_output` for proper CLI rendering
|
|
1036
|
+
- Success/failure indicators and business logic validation
|
|
1037
|
+
- Data extraction patterns and error handling
|
|
1038
|
+
- Integration with CLI and backend systems
|
|
1039
|
+
|
|
1040
|
+
### Additional Resources
|
|
1041
|
+
|
|
1042
|
+
- **[CLI Documentation](../terminator-cli/README.md)**: Command-line interface for executing workflows
|
|
1043
|
+
- **[Examples](examples/)**: Sample workflows and use cases
|
|
1044
|
+
- **[API Reference](https://github.com/mediar-ai/terminator#api)**: Core Terminator library documentation
|
package/package.json
CHANGED
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
],
|
|
16
16
|
"name": "terminator-mcp-agent",
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"terminator-mcp-darwin-arm64": "0.15.
|
|
19
|
-
"terminator-mcp-darwin-x64": "0.15.
|
|
20
|
-
"terminator-mcp-linux-x64-gnu": "0.15.
|
|
21
|
-
"terminator-mcp-win32-x64-msvc": "0.15.
|
|
18
|
+
"terminator-mcp-darwin-arm64": "0.15.4",
|
|
19
|
+
"terminator-mcp-darwin-x64": "0.15.4",
|
|
20
|
+
"terminator-mcp-linux-x64-gnu": "0.15.4",
|
|
21
|
+
"terminator-mcp-win32-x64-msvc": "0.15.4"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"sync-version": "node ./utils/sync-version.js",
|
|
31
31
|
"update-badges": "node ./utils/update-badges.js"
|
|
32
32
|
},
|
|
33
|
-
"version": "0.15.
|
|
33
|
+
"version": "0.15.4"
|
|
34
34
|
}
|