File tree Expand file tree Collapse file tree
abca-plugin/skills/abca-status Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,17 +17,17 @@ Run these in parallel where possible:
17171 . ** Stack status:**
1818 ``` bash
1919 aws cloudformation describe-stacks --stack-name backgroundagent-dev \
20- --query ' Stacks[0].{Status:StackStatus,Updated:LastUpdatedTime}' --output json 2> /dev/null || echo " Stack not found"
20+ --query ' Stacks[0].{Status:StackStatus,Updated:LastUpdatedTime}' --output json 2>&1 || echo " Stack not found"
2121 ```
2222
23232 . ** Running tasks:**
2424 ``` bash
25- node cli/lib/bin/bgagent.js list --status RUNNING,SUBMITTED,HYDRATING --output json 2> /dev/null || echo " CLI not configured"
25+ node cli/lib/bin/bgagent.js list --status RUNNING,SUBMITTED,HYDRATING --output json 2>&1 || echo " CLI not configured"
2626 ```
2727
28283 . ** Recent completed tasks:**
2929 ``` bash
30- node cli/lib/bin/bgagent.js list --limit 5 --output json 2> /dev/null || echo " CLI not configured"
30+ node cli/lib/bin/bgagent.js list --limit 5 --output json 2>&1 || echo " CLI not configured"
3131 ```
3232
33334 . ** Local build health:**
You can’t perform that action at this time.
0 commit comments