/status — System Status Check
SkillProductivityQuick read-only health check — session context, workspace mounts, tool availability, and task snapshot. Use when the user asks for system status or runs /status.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the /status — System Status Check skill
What this skill tells your AI
The instructions your AI receives, as published by sliamh11/deus in container/skills/status/SKILL.md and read by ahel’s review.
Generate a quick read-only status report of the current agent environment.
Main-channel check: Only the main channel has /workspace/project mounted. Run:
test -d /workspace/project && echo "MAIN" || echo "NOT_MAIN"
If NOT_MAIN, respond with:
This command is available in your main chat only. Send
/statusthere to check system status.
Then stop — do not generate the report.
How to gather the information
Run the checks below and compile results into the report format.
1. Session context
echo "Timestamp: $(date)"
echo "Working dir: $(pwd)"
echo "Channel: main"
2. Workspace and mount visibility
echo "=== Workspace ==="
ls /workspace/ 2>/dev/null
echo "=== Group folder ==="
ls /workspace/group/ 2>/dev/null | head -20
echo "=== Extra mounts ==="
ls /workspace/extra/ 2>/dev/null || echo "none"
echo "=== IPC ==="
ls /workspace/ipc/ 2>/dev/null
3. Tool availability
Confirm which tool families are available to you:
- Core: Bash, Read, Write, Edit, Glob, Grep
- Web: WebSearch, WebFetch
- Orchestration: Task, TaskOutput, TaskStop, TeamCreate, TeamDelete, SendMessage
- MCP: mcp__deus__* (send_message, schedule_task, list_tasks, pause_task, resume_task, cancel_task, update_task, register_group)
4. Container utilities
which agent-browser 2>/dev/null && echo "agent-browser: available" || echo "agent-browser: not installed"
node --version 2>/dev/null
claude --version 2>/dev/null
5. Task snapshot
Use the MCP tool to list tasks:
Call mcp__deus__list_tasks to get scheduled tasks.
If no tasks exist, report "No scheduled tasks."
Report format
Present as a clean, readable message:
🔍 *Deus Status*
*Session:*
• Channel: main
• Time: 2026-03-14 09:30 UTC
• Working dir: /workspace/group
*Workspace:*
• Group folder: ✓ (N files)
• Extra mounts: none / N directories
• IPC: ✓ (messages, tasks, input)
*Tools:*
• Core: ✓ Web: ✓ Orchestration: ✓ MCP: ✓
*Container:*
• agent-browser: ✓ / not installed
• Node: vXX.X.X
• Claude Code: vX.X.X
*Scheduled Tasks:*
• N active tasks / No scheduled tasks
Adapt based on what you actually find. Keep it concise — this is a quick health check, not a deep diagnostic.
See also: /capabilities for a full list of installed skills and tools.
Signals
- GitHub stars
- 51
- Forks
- 4
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
status-sliamh11- Source
- github.com/sliamh11/deus