@floomhq/floom 5.1.3 → 5.1.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/assets/floom-skill.md +9 -0
- package/package.json +1 -1
package/assets/floom-skill.md
CHANGED
|
@@ -31,6 +31,15 @@ Once the first read-only worker has a real completed run and you have shown the
|
|
|
31
31
|
4. **Watch** — `runs_list`, `runs_get`, `runs_watch`, `runs_logs`.
|
|
32
32
|
5. **Approve** — a run that needs sign-off appears in `runs_list`; resolve with `runs_approve` / `runs_reject`. Nothing sensitive happens without approval.
|
|
33
33
|
|
|
34
|
+
## When a run fails
|
|
35
|
+
If a `workers_run` does not complete successfully, do not just say "it failed."
|
|
36
|
+
1. Fetch the failure with `runs_get`; use `runs_logs` when the root cause is not explicit.
|
|
37
|
+
2. State the root cause in one line: missing connection, bad input, auth failure, worker code error, or another concrete cause.
|
|
38
|
+
3. Give the exact fix: the connection to add, the input to change, the auth step to complete, or the corrected worker file.
|
|
39
|
+
4. Offer to re-run the worker immediately after the fix.
|
|
40
|
+
|
|
41
|
+
Never claim success for a failed run or a run whose final status is unknown.
|
|
42
|
+
|
|
34
43
|
## Tools you'll use
|
|
35
44
|
- **workers_** list / get / create / update / run / write_file
|
|
36
45
|
- **runs_** list / get / watch / logs / approve / reject / cancel
|