# Kuro Status

> Check Kuro's current status, health, and recent activity in one shot

- Skill: `miles990/kuro-status` (Agent Skill)
- Install (CLI): `npx skillmds@latest add miles990/kuro-status`
- Raw SKILL.md: https://api.skillmd.com/api/skills/miles990/kuro-status/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: miles990 (https://skillmd.com/u/miles990)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/miles990/kuro-status

---


# Kuro Status Check

Standardized status inquiry: health → loop → recent activity → issues.

## Steps

1. **Health check**
   ```bash
   curl -sf http://localhost:3001/health
   ```
   If unreachable, report "Kuro offline" and stop.

2. **Unified status**
   ```bash
   curl -sf http://localhost:3001/status | jq '{instance: .instance, uptime: .uptime, claude: .claude, loop: .loop, cron: .cron, telegram: .telegram}'
   ```

3. **Recent logs** (last 20 lines)
   ```bash
   tail -20 ~/.mini-agent/instances/*/server.log 2>/dev/null || echo "No server.log found"
   ```
   All timestamps are **UTC**. Do not interpret as local time.

4. **Open GitHub issues**
   ```bash
   gh issue list --repo $(git remote get-url origin | sed 's/.*github.com[:/]//' | sed 's/.git$//') --limit 5 --state open 2>/dev/null || echo "gh not available or no remote"
   ```

5. **Report summary**
   Present a concise table:
   - Online/Offline
   - Loop: running/paused, cycle count, mode
   - Claude: busy/idle, current task (if any)
   - Telegram: connected, notification stats
   - Recent errors (from logs, if any)
   - Open issues count

