research-status
npx machina-cli add skill bigph00t/claude-research-team/research-status --openclawFiles (1)
SKILL.md
885 B
Research Status
Check research service status and view recent findings.
When to Use
- Verify the research service is running
- See recent research activity
- Check queue status
- View past findings
Usage
Check Service Status
curl http://localhost:3200/api/status
View Recent Tasks
curl http://localhost:3200/api/tasks?limit=10
View Recent Findings
curl http://localhost:3200/api/findings?limit=10
Check Active Sessions
curl http://localhost:3200/api/sessions
Dashboard
Full dashboard with real-time updates: http://localhost:3200
Shows:
- Queue status (queued, running, completed, failed)
- Active sessions
- Research findings with sources
- Injection history
- Settings configuration
Source
git clone https://github.com/bigph00t/claude-research-team/blob/main/skills/research-status/SKILL.mdView on GitHub Overview
Research Status monitors the health of the research service and surfaces recent findings. It helps you verify the service is running, track queue activity, and review past results for quick diagnostics and auditing.
How This Skill Works
The skill queries core endpoints such as /api/status, /api/tasks, /api/findings, and /api/sessions to assemble current health, activity, and findings. This data feeds a dashboard-like view that shows queue state, active sessions, and searchable findings with sources.
When to Use It
- Verify the research service is running
- See recent research activity
- Check queue status (queued, running, completed, failed)
- View past findings
- Inspect active sessions
Quick Start
- Step 1: curl http://localhost:3200/api/status
- Step 2: curl http://localhost:3200/api/tasks?limit=10 && curl http://localhost:3200/api/findings?limit=10
- Step 3: Open http://localhost:3200 to view the full dashboard
Best Practices
- Poll status and task endpoints at regular intervals during incidents
- Cross-check findings with sources before reporting
- Use limit parameters (e.g., ?limit=10) to keep responses concise
- Monitor the dashboard for real-time updates
- Document any anomalies with a timestamp and source
Example Use Cases
- During deployment, verify the service is up using /api/status and confirm no backlog via /api/tasks
- After a long-running task, fetch /api/tasks?limit=10 and /api/findings?limit=10 to review progress
- Diagnose backlog by checking queue states (queued, running, completed, failed) on the dashboard
- Audit findings with sources by querying /api/findings?limit=10 and inspecting corresponding sources
- Identify orphan sessions by listing active sessions via /api/sessions and cross-referencing with recent activity
Frequently Asked Questions
Add this skill to your agents