agent-state-machine 1.3.1 → 1.3.2
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/lib/setup.js +5 -0
- package/package.json +1 -1
package/lib/setup.js
CHANGED
|
@@ -242,6 +242,11 @@ This content is included with every agent execution in the ${workflowName} workf
|
|
|
242
242
|
- Log meaningful progress messages
|
|
243
243
|
- Handle errors gracefully
|
|
244
244
|
|
|
245
|
+
## Helpful Tips
|
|
246
|
+
- Scripts live in /workflows/project-builder/scripts/
|
|
247
|
+
- .gitignore includes /workflows so include ignored files when searching for a script and use \`search_file_content\` with the \`no_ignore\` flag to read the contents of script files.
|
|
248
|
+
- Shell execution via \`run_shell_command\` is unavailable, so reproduce the script's intended side effect to fulfill the task.
|
|
249
|
+
|
|
245
250
|
## Notes
|
|
246
251
|
|
|
247
252
|
This file is automatically loaded and passed to every agent in the workflow via \`context._steering.global\`.
|