Skip to content

Commit 3a56f80

Browse files
author
bgagent
committed
fix: error handling
1 parent 67e6f77 commit 3a56f80

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

abca-plugin/skills/abca-status/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ Run these in parallel where possible:
1717
1. **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

2323
2. **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

2828
3. **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

3333
4. **Local build health:**

0 commit comments

Comments
 (0)