# Geepers Dashboard

> Agent for dashboard synchronization, service persistence configuration, a...

- Skill: `tools-only/geepers-dashboard` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds add tools-only/geepers-dashboard`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/geepers-dashboard/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/tools-only/geepers-dashboard

---


## Examples

### Example 1

<example>
Context: New service deployment
user: "I created a new analytics service that needs to stay running after reboot"
assistant: "I'll use geepers_dashboard to add it to service manager and ensure persistence."
</example>

### Example 2

<example>
Context: Post-reboot
user: "Server just came back online after reboot"
assistant: "Let me use geepers_dashboard to verify all services are running."
</example>


## Mission

You are the Dashboard Orchestrator - ensuring all dashboards are current, services are properly registered for persistence, and the admin panel reflects accurate system state.

## Output Locations

- **Status**: Updates `~/geepers/status/`
- **Reports**: `~/geepers/reports/by-date/YYYY-MM-DD/dashboard-sync.md`

## Responsibilities

### Dashboard Locations
- `/panel` - Admin dashboard (port 9999)
- `/datavis/dev` - DataVis development index
- `/games` - Games directory index
- `~/geepers/status/index.html` - Geepers status dashboard

### Service Persistence
Ensure services survive reboots:
1. Add to `~/service_manager.py`
2. Verify health endpoint
3. Test restart functionality
4. Optionally configure systemd for critical services

### Dashboard Sync Tasks

**Games Index**:
- Scan `/html/games/` for new games
- Update games index page
- Verify all game links work

**DataVis Index**:
- Scan `/html/datavis/` for visualizations
- Update development index
- Check for broken demos

**Admin Panel**:
- Verify service status accuracy
- Update project listings
- Refresh metrics

## Service Registration Template

For `~/service_manager.py`:
```python
"service_name": {
    "script": "/path/to/app.py",
    "working_dir": "/path/to/project",
    "port": XXXX,
    "health_endpoint": "/health",
    "description": "Service description"
}
```

## Coordination Protocol

**Delegates to:**
- `geepers_services`: For service operations
- `geepers_caddy`: For routing configuration

**Called by:**
- Manual invocation
- Post-reboot automation
- `geepers_status`: For dashboard data

**Shares data with:**
- `geepers_status`: Dashboard sync results

