Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.

albinati/home-energy-manager

https://github.com/albinati/home-energy-manager · scanned 2026-06-17 01:31 UTC (1 month, 2 weeks ago)

221 raw signals (0 security + 221 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v2 · last Δ -20.9 (diff) · 170 actionable findings from 1 signal source. 51 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 55.8/100 with 100.0% coverage. It contains 5045 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 221 findings — concentrated in quality (145), cicd (33), software (22). Risk profile is high: 0 critical, 12 high, 31 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 80 of 170 actionable findings. 221 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: CLAUDE.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
CLAUDE.md:215 SecretsClaude instruction
high System graph security auth conf 1.00 FastAPI DELETE `delete_appliance` without auth dependency — src/api/routers/appliances.py:185
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/appliances.py:185 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_profile` without auth dependency — src/api/routers/workbench.py:291
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/workbench.py:291 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_smartthings_credentials` without auth dependency — src/api/routers/appliances.py:316
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/appliances.py:316 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_appliance` without auth dependency — src/api/routers/appliances.py:169
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/appliances.py:169 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_job` without auth dependency — src/api/routers/appliances.py:268
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/appliances.py:268 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `discover_appliances` without auth dependency — src/api/routers/appliances.py:128
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/appliances.py:128 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `forecast` without auth dependency — quartz/app.py:88
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
quartz/app.py:88 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `save_profile` without auth dependency — src/api/routers/workbench.py:269
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/workbench.py:269 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `workbench_promote_simulate` without auth dependency — src/api/routers/workbench.py:129
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/workbench.py:129 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `workbench_promote` without auth dependency — src/api/routers/workbench.py:164
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/workbench.py:164 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `workbench_simulate` without auth dependency — src/api/routers/workbench.py:71
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/api/routers/workbench.py:71 securityAuth fastapi unauth mutation
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — ui/src/components/common/RefreshAction.tsx:15
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — ui/src/lib/api.ts:1
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — ui/src/lib/poll.ts:12
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph hardware Security conf 1.00 Dockerfile runs as root: ui/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 15 occurrences GitHub Action is tag-pinned rather than SHA-pinned
anthropics/claude-code-action@v1 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
5 files, 15 locations
.github/workflows/ui-publish.yml:69, 72, 75, 83, 92 (5 hits)
.github/workflows/docker-publish.yml:40, 47, 51, 60 (4 hits)
.github/workflows/quartz-publish.yml:58, 61, 69, 78 (4 hits)
.github/workflows/claude-code-review.yml:37
.github/workflows/claude.yml:35
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 5 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
5 files, 5 locations
.github/workflows/claude-code-review.yml
.github/workflows/claude.yml
.github/workflows/docker-publish.yml
.github/workflows/quartz-publish.yml
.github/workflows/ui-publish.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in src/daikin/auth.py:226
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
src/daikin/auth.py:226 Cors wildcard
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/check_lp_regression.py:290
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/cli/__main__.py:445
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/smartthings/auth.py:178
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 17 placeholder/mock markers across 7 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph network Security conf 1.00 Privileged port 1001 in use
Port 1001 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
quartz/Dockerfile Ports
low System graph quality Integrity conf 1.00 327 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ACKNOWLEDGED_WARNINGS_RETENTION_DAYS`, `AGILE_TARIFF_START_DATE`, `AI_ASSISTANT_MODEL`, `AI_ASSISTANT_PROVIDER`, `ANTHROPIC_API_KEY`, `APPLIANCE_BATTERY_AWARE_ENABLED`, `APPLIANCE_BATTERY_ROUND_TRIP_EFF`, `APPLIANCE_DEFAULT_BASE_LOAD_KW` + 319 mor…
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 405 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: nginx:1.27-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
ui/Dockerfile:39 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
ui/Dockerfile:20 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 2 occurrences Docker base image is tag-pinned but not digest-pinned: python:${PYTHON_VERSION}
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
lines 4, 20
Dockerfile:4, 20 (2 hits)
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 2 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.11-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
lines 14, 36
quartz/Dockerfile:14, 36 (2 hits)
containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 13 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
6 files, 13 locations
.github/workflows/tests.yml:15, 18, 37, 40 (4 hits)
.github/workflows/quartz-publish.yml:33, 36, 55 (3 hits)
.github/workflows/ui-publish.yml:41, 44, 66 (3 hits)
.github/workflows/claude-code-review.yml:31
.github/workflows/claude.yml:29
.github/workflows/docker-publish.yml:37
CI/CD securitySupply chainGithub actions
low System graph quality Integrity conf 1.00 20 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scripts/check_lp_regression.py:passed, scripts/check_lp_regression.py:passed This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
20 occurrences
repo-level (20 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_flat_v2` in tests/test_lp_load_scale.py:54
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `out_legacy` in tests/test_today_factor_scope.py:129
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `pvnet_v2` in src/runtime_settings.py:328
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/api/main.py:1299
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/api/routers/pv.py:123
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/config.py:780
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/db.py:1931
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/scheduler/appliance_dispatch.py:205
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/scheduler/lp_simulation.py:51
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/scheduler/optimizer.py:1364
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in src/scheduler/scenarios.py:119
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `residual_load_profile_v2` in tests/test_db_residual_profile_v2.py:1
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_perturb_base_load_factor_one_returns_copy` in tests/test_scenarios.py:52
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_consumption_backfill_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:668
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_daikin_consumption_rollup_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:528
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_export_opportunity_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:738
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_forecast_skill_log_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:698
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_fox_energy_rollup_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:610
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_morning_brief_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:658
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_night_brief_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:809
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_octopus_retry_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:646
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_plan_push_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:1352
low System graph software Dead code conf 1.00 Possibly dead Python function: bulletproof_pv_error_log_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/scheduler/runner.py:717
low System graph software Dead code conf 1.00 Possibly dead Python function: do_GET
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/smartthings/auth.py:328
low System graph software Dead code conf 1.00 Possibly dead Python function: do_GET
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/daikin/auth.py:141
low System graph software Dead code conf 1.00 Possibly dead Python function: do_HEAD
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/daikin/auth.py:137
low System graph software Dead code conf 1.00 Possibly dead Python function: do_OPTIONS
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/daikin/auth.py:235
low System graph software Dead code conf 1.00 Possibly dead Python function: do_POST
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/daikin/auth.py:206
low System graph software Dead code conf 1.00 Possibly dead Python function: log_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/smartthings/auth.py:383
low System graph software Dead code conf 1.00 Possibly dead Python function: log_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/daikin/auth.py:242
low System graph software Dead code conf 1.00 Possibly dead Python function: recover_on_boot
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/state_machine.py:935
low System graph software Dead code conf 1.00 Possibly dead Python function: set_device_setting
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/foxess/client.py:411
low System graph software Dead code conf 1.00 Possibly dead Python function: set_fixed_setpoint_mode
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/daikin/client.py:297
low System graph software Dead code conf 1.00 Possibly dead Python function: set_peak_shaving
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/foxess/client.py:832
low System graph software Dead code conf 1.00 Possibly dead Python function: stop_cycle
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/smartthings/client.py:194
low System graph quality Complexity conf 1.00 Very large file: src/analytics/daily_brief.py (1497 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/api/main.py (5066 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/config.py (1968 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/db.py (6912 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/mcp_server.py (3676 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/scheduler/appliance_dispatch.py (1927 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/scheduler/lp_dispatch.py (1716 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/scheduler/lp_optimizer.py (1359 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/scheduler/optimizer.py (2255 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/scheduler/runner.py (2206 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/weather.py (2581 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_lp_pv_abundance.py (1187 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/ead312f9-163e-4376-bed5-ea3901607651/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ead312f9-163e-4376-bed5-ea3901607651/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.