A lightweight dashboard that aggregates open issues assigned to you from multiple task providers (GitLab, Jira Cloud, Jira Server) into a single view.
This is a read-only dashboard, not trying to replace the native interfaces of the providers, but help keep me sane with keeping the overview (GER = "Überblick") of my tasks.
Disclaimer: Next to scratching a real itch of mine, this is also a pet project to play around with agent tools, models etc.
- Single binary, no dependencies
- Supports GitLab, Jira Cloud, and Jira Server
- Auto light/dark theme based on system preference
- Per-provider refresh buttons
- Real-time provider status indicators
go build -o uberview .
./uberview config.yamlAccess the dashboard at http://localhost:8080
This repo ships a sample unit file at systemd/uberview.service.
This is intended to run as a user service (no root required).
- Build and install the binary:
go build -o uberview .
install -d -m 0755 ~/.local/bin
install -m 0755 uberview ~/.local/bin/uberview- Install config:
mkdir -p ~/.config/uberview
install -m 0640 config.yaml ~/.config/uberview/config.yaml- Install and start the service:
mkdir -p ~/.config/systemd/user
install -m 0644 systemd/uberview.service ~/.config/systemd/user/uberview.service
systemctl --user daemon-reload
systemctl --user enable --now uberviewIf your systemd/user setup does not allow capability dropping or unprivileged namespacing, you may need to use the provided unit as-is (it avoids those features). If you still hit errors like status=218/CAPABILITIES, remove hardening lines such as SystemCallFilter=, SystemCallArchitectures=, RestrictSUIDSGID=, LockPersonality=, and MemoryDenyWriteExecute= from your user unit.
Logs:
journalctl --user -u uberview -fTo keep it running after logout:
sudo loginctl enable-linger "$USER"See config.example.yaml for an example configuration file (maintained).
Rename it to config.yaml and adjust the settings as needed.
server:
port: 8080
task_providers:
- type: "gitlab"
name: "GitLab"
url: "https://10.0.0.1"
token: "glpat-xxxx"
user: "username"
- type: "jira_cloud"
name: "Jira Cloud"
url: "https://company.atlassian.net"
token: "jira-api-token"
email: "user@company.com"
user: "Jon Doe"
- type: "jira_server"
name: "Jira Server"
url: "https://10.0.0.2"
user: "username"
token: "personal-access-token"| Provider | Authentication |
|---|---|
| GitLab | Personal Access Token (token) |
| Jira Cloud | Email + API Token (Basic Auth) |
| Jira Server | Personal Access Token (Bearer) or username:password (Basic Auth) |
go mod tidy
go build -o uberview .
./uberview config.yamlor quick run:
go run . config.yaml