Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 615,
"has_wiki": false,
"homepage": null,
"languages": {
"CSS": 12648,
"PHP": 840784,
"Blade": 181525,
"JavaScript": 1008
},
"pushed_at": "2026-07-23T08:33:25Z",
"created_at": "2026-06-14T13:44:32Z",
"owner_type": "User",
"updated_at": "2026-07-21T07:14:25Z",
"description": "A driver-agnostic control center for Laravel queues, jobs, commands & scheduler — plus whole-app APM, tracing, job batches, metrics, alerts and uptime. Self-hosted, production-safe.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "PHP",
"significant_languages": [
"PHP",
"Blade"
]
},
"owner": {
"blog": null,
"name": "Anas B.",
"type": "User",
"login": "anousss007",
"company": null,
"location": null,
"followers": 0,
"avatar_url": "https://avatars.githubusercontent.com/u/4137453?v=4",
"created_at": "2013-04-12T13:55:53Z",
"is_verified": null,
"public_repos": 4,
"account_age_days": 4849
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.6.1",
"kind": "patch",
"published_at": "2026-06-26T10:09:47Z"
},
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2026-06-17T17:05:47Z"
},
{
"tag": "v0.5.7",
"kind": "patch",
"published_at": "2026-06-16T19:21:22Z"
},
{
"tag": "v0.5.6",
"kind": "patch",
"published_at": "2026-06-16T13:19:18Z"
},
{
"tag": "v0.5.5",
"kind": "patch",
"published_at": "2026-06-16T12:34:19Z"
},
{
"tag": "v0.5.4",
"kind": "patch",
"published_at": "2026-06-16T11:53:18Z"
},
{
"tag": "v0.5.3",
"kind": "patch",
"published_at": "2026-06-15T23:37:21Z"
},
{
"tag": "v0.5.2",
"kind": "patch",
"published_at": "2026-06-15T17:34:51Z"
},
{
"tag": "v0.5.1",
"kind": "patch",
"published_at": "2026-06-15T16:55:36Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2026-06-15T16:46:53Z"
},
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2026-06-15T12:10:17Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-06-15T11:59:35Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-06-15T06:58:57Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-06-15T06:26:04Z"
},
{
"tag": "v0.1.3",
"kind": "patch",
"published_at": "2026-06-14T22:15:01Z"
},
{
"tag": "v0.1.2",
"kind": "patch",
"published_at": "2026-06-14T21:24:08Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2026-06-14T18:44:47Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-06-14T18:27:11Z"
},
{
"tag": "v0.0.1",
"kind": "patch",
"published_at": "2026-06-14T15:16:37Z"
}
],
"recent_commits": [
{
"oid": "92fe2c0ddf89ac319e8b36eac338721b8a04f1c3",
"body": "Follow-up to #5 (Marc Espiard's fix for duplicate \"queued\" job runs under\nOctane on Vapor). The PR correctly guards Queue::createPayloadUsing against\nthe process-static callback stacking on a second boot, but shipped without a\nregression test for the behaviour or a CHANGELOG note.\n\n- Add a regressio\n[…]\nWrap the guard's docblock to the codebase's comment width.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01F9gt417Hzb93NfHFSsVZp6",
"is_bot": false,
"headline": "test(jobs): cover Octane/Vapor double-boot guard; add CHANGELOG entry",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-27T13:43:19Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "e72a4e1b2d1cbdcc820335a12d2019dc623ff2f7",
"body": "Vapor's Octane runtime boots the app twice in one PHP process (config:cache, then the worker). Because Queue::createPayloadUsing registers into a process-static array, the payload hook stacked on the second boot and every dispatch wrote two Queued records with the same UUID, leaving a permanent ghost row. Guard registration so the hook installs once per process.",
"is_bot": false,
"headline": "Fix duplicate queued job runs under Octane on Vapor (#5)",
"author_name": "Marc",
"author_login": "MarcEspiard",
"committed_at": "2026-06-27T13:41:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ecb5cfae0b34103374b64009ef16bb5215de7b08",
"body": "…nt MySQL durability tuning (v0.6.1)\n\nMake AlertManager's incident occurrence counter an atomic SQL increment instead\nof a read-modify-write, mirroring the failure-group fix from 0.5.5 — concurrent\nnodes/scheduler runs recording the same incident no longer clobber the count.\nGoes through the query b\n[…]\nth a warning never to apply it to a shared\napp connection.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01F9gt417Hzb93NfHFSsVZp6",
"is_bot": false,
"headline": "Fix incident occurrence undercount under concurrent recording; docume…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-26T10:09:30Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6dc99d82fbfed7ab97577f013272d11dc791cc97",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v6...v7)\n\n---\nupdated-dependenc\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "build(deps): bump actions/checkout from 6 to 7 (#4)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-22T19:19:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f8585031c6d9e759bb60b5d47b4d9b2cb8058230",
"body": "… agent (v0.6.0)\n\nOptional laravel/mcp server exposing a tool for every dashboard page: errors/exceptions, runs & job-metrics, full APM (route perf, slow requests/queries/jobs/HTTP, cache, servers, usage), RUM Web Vitals, traces, logs, SLOs, incidents, releases, the worker/queue fleet and custom met\n[…]\nudited writes (issue triage, retries) and double-gated manual control (dispatch job / run command). Read-only, redacted and size-capped by default; a no-op without laravel/mcp + VIGILANCE_MCP_ENABLED.",
"is_bot": false,
"headline": "Add MCP server — query & control every Vigilance feature from your AI…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-17T17:03:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9873718f280dec6d3da4554fb310605ded202933",
"body": "…e SQLite + WAL) (v0.5.7)\n\nDocuments how to keep Vigilance's writes off the primary database via a dedicated\nVIGILANCE_DB_CONNECTION — and specifically how to give Vigilance its own SQLite\nfile so a telemetry burst can't lock the app's DB (\"database is locked\"). Covers\nenabling WAL, the existing aft\n[…]\n or the Redis write-behind ingest at high volume).\nAdded to README, the config/vigilance.php storage section, and the Laravel Boost\nguidelines + skill. No code change — the capability already existed.",
"is_bot": false,
"headline": "Document isolating monitoring storage (dedicated connection / separat…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-16T19:19:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9caa1df710c1c1f343c4f5b6ae363e30b7e975ea",
"body": "…(name, host) (v0.5.6)\n\nRunning the same supervisor config on multiple servers (normal horizontal scaling)\nhad each node's heartbeat overwrite the others' row and each node's worker-set\nwrite delete the other nodes' worker rows — the dashboard showed a single flapping\nnode and undercounted the fleet\n[…]\nthological stacks symbolicate in 0.1ms (no ReDoS), malformed source maps and\nhigh token counts degrade gracefully without crashing. No code change needed.\n\nAdds a multi-node heartbeat regression test.",
"is_bot": false,
"headline": "Fix multi-node supervisor/worker state clobbering; key heartbeats by …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-16T13:17:55Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b143e5cd641d97dc111995976febfba88a12f6c6",
"body": "….5.5)\n\nA failing-job storm (many workers recording the same failure signature at once)\nlost ~10% of occurrence increments because the counter was a read-modify-write.\nFailureGrouper now uses a race-safe createOrFirst() (on the unique signature\nindex) plus an atomic SQL increment, so the count is ex\n[…]\n\nmulti-driver (database+redis+beanstalkd) supervision in one process, the public\nRUM endpoint's rate-limit + per-request caps, and graceful recovery under extreme\nconcurrency. Adds FailureGrouperTest.",
"is_bot": false,
"headline": "Fix failure-group occurrence undercount under concurrent failures (v0…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-16T12:32:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6b6fa3377dca5640f4df3b76bdcfbbc8159d957f",
"body": "…, orphan reaping (v0.5.4)\n\nValidated relentlessly on real Linux infrastructure (Nginx/Apache/Caddy + PHP-FPM;\nOctane on FrankenPHP/Swoole/OpenSwoole/RoadRunner; database/Redis/beanstalkd queues;\nsupervisord; OPcache + cached config; PostgreSQL 18 + MySQL 8.4; storage-outage chaos;\nconcurrency; a 18\n[…]\n-cgroup-managed supervisor on the\n next boot (completes the cross-platform reap the #vigilance name marker intended).\n\nAdds CommandIgnore, QueueNameNormalization and supervisor-reap regression tests.",
"is_bot": false,
"headline": "Harden for production: daemon capture, redis queue names, batch links…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-16T11:51:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6ddc70affb0746f6cbdb7cb961826f0a53419ae8",
"body": "…E fixes + multi-DB CI)",
"is_bot": false,
"headline": "Release v0.5.3 — cross-database hardening (MySQL install fix + PG/LIK…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T23:37:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6676714f02e9ebac0c19d697c5c67e27d9892d81",
"body": "…imit\n\nThe vigilance_aggregates unique index auto-named to 65 chars, over MySQL's\n64-char identifier limit (error 1059) — so migrations failed outright and\nVigilance could not be installed on MySQL/MariaDB at all. Postgres truncates\nsilently, SQLite has no limit, which is why CI (SQLite-only) never caught it.\nGave it (and the 4-col index) explicit short names.\n\nCI now runs the full suite against PostgreSQL 16 and MariaDB 11.4 services, not\njust SQLite. Suite green on all three (234 each).",
"is_bot": false,
"headline": "fix: MySQL/MariaDB install was broken — index name exceeded 64-char l…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T23:00:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4004c96c3b7ebf8973d099f0ab6cd64bddc01bd9",
"body": "…escaping, safe queue-depth probe\n\nValidated the full suite against real PostgreSQL 16 (was SQLite-only in CI) and\nfixed three genuine cross-DB bugs SQLite hid:\n- wait_ms/duration_ms wrote Carbon-3 floats into bigint columns (PG rejects;\n MySQL/SQLite truncate) — now (int) round().\n- Silence/search\n[…]\n transaction (defeating the 'never break the app' guard) — probe hasTable first.\n\nTests are now connection-configurable via VIGILANCE_TEST_DB (the CI gap). Suite\ngreen on SQLite AND PostgreSQL (234).",
"is_bot": false,
"headline": "fix: PostgreSQL compatibility — float→int ms columns, LIKE backslash …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T22:48:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d069629e820b977af23be18573b7dfa06b3eddf9",
"body": null,
"is_bot": false,
"headline": "Update SECURITY.md",
"author_name": "Anas B.",
"author_login": "anousss007",
"committed_at": "2026-06-15T18:58:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a9f6b037375d8cd5537b542cdd2d9847f9ea08e",
"body": null,
"is_bot": false,
"headline": "Release v0.5.2 — Boost guidelines document once-per-incident alerting",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T17:34:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a663d57ca8013893a04c1d272ec62a156ffb05a",
"body": null,
"is_bot": false,
"headline": "docs(boost): note once-per-incident alerting in the AI guidelines",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T17:29:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "114423f4c2a185a3162727e0b324bad08c0c5fbd",
"body": "Fix the bad DX where a sustained condition (e.g. a breaching SLO) re-emailed\nevery throttle window. With incidents on, notify once on open (and on escalate\n/ recurrence); optional alerts.renotify_minutes for reminders. Incidents-off\nkeeps the legacy per-window throttle.",
"is_bot": false,
"headline": "Release v0.5.1 — notify once per incident, not every throttle window",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T16:55:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2265e5dd0ad971c3b188e37689680f98b17a0fa3",
"body": "…lobal ignore_paths",
"is_bot": false,
"headline": "Release v0.5.0 — release health, smarter alerting, RUM source maps, g…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T16:46:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fdb911d98dc0a9154985f86f261d181f1421f747",
"body": "…maps & ignore_paths\n\nREADME, docs/observability.md, the docs site, and the Laravel Boost guidelines\n+ skill all cover the new features; CHANGELOG [Unreleased] entry added.",
"is_bot": false,
"headline": "docs: document release health, new/regression/anomaly alerts, source …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T16:40:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa1438ed8ff929071cf2e469643bc2658a4da9fd",
"body": "…sourcemaps]\n\nPure-PHP Source Map v3 decoder (VLQ) + a per-release store and a\nvigilance:sourcemaps upload command. RUM JS-error stacks are symbolicated at\ncapture against the release's maps, so the Issues inbox shows original source\nlocations (resources/js/app.js:42) instead of minified app-abc.js:1:5000.",
"is_bot": false,
"headline": "feat(rum): source-map symbolication for browser errors [feature 6/4: …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T16:33:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e1a7a3c3c10cebf82bcdb6adb7a694063b60bd4",
"body": "…: release health]\n\nCompare request error-rate/latency/throughput in the window after each deploy\nvs before it (ReleaseHealth, read from raw APM entries). A 'regressed' verdict\nfires a critical deploy_regression alert — route a webhook at it to auto-roll\nback. New Releases dashboard page; issues tagged with first_release /\nregressed_release (additive migration). axe 0/0 on the new page.",
"is_bot": false,
"headline": "feat(releases): release health + deploy-regression guard [feature 1/4…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T14:12:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "decdcdee58200e61c4d5c6fd80cdee6312bd52f5",
"body": "One vigilance.ignore_paths list (wildcards like /admin/* or #regex#) now\nexcludes a path from ALL request-level telemetry at once — APM recorders,\ntracing, RUM and web-request error capture — via a shared PathMatcher.\nRequested for Filament admin (/admin/*) + livewire endpoints.",
"is_bot": false,
"headline": "feat(config): global ignore_paths to exclude noisy endpoints everywhere",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T14:01:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e1ef4d69067f7a663991334f1179416e6b7a0b4",
"body": "…y detection]\n\nAnomalyRule z-scores each metric's latest bucket against its rolling baseline\nfrom the APM aggregates (request latency, 5xx error rate, exceptions by\ndefault; configurable). Guarded against false positives — needs enough\nbaseline points, real variance, and a value past an absolute floor and a\nmultiple of the mean. Evaluated at snapshot time, throttled per key.",
"is_bot": false,
"headline": "feat(alerts): dynamic-baseline anomaly detection [feature 3/4: anomal…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T13:56:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57e8c08ac55a013d2d4242119dfdb7cfa3c2c472",
"body": "…ression issue alerts]\n\nAlert the first time an error signature is seen, and when a resolved issue\nrecurs. Grouper stamps regressed_at on recurrence (new additive migration);\nNewIssueRule + IssueRegressionRule evaluate at snapshot time (never on the\nrequest/exception thread), throttled per issue. Regressed badge in the inbox.",
"is_bot": false,
"headline": "feat(alerts): new-issue and regression alerting [feature 2/4: new+reg…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T13:47:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcc122c2f95c14ef5b9530fa95537f4561e7e72e",
"body": "…ty suite + add RELEASING.md checklist",
"is_bot": false,
"headline": "Release v0.4.1 — update Laravel Boost integration for the observabili…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T12:10:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7c726325710e365ebe8defa736a52b211fbb93c",
"body": "…dents, Custom metrics, Logs)",
"is_bot": false,
"headline": "Release v0.4.0 — observability suite (Issues, Routes, RUM, SLOs, Inci…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T11:59:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22049765f7ae257f7d59a348d9a8ce07cb09e862",
"body": null,
"is_bot": false,
"headline": "ci: bump actions/checkout to v6 (supersedes Dependabot #1)",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T11:51:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f007e661b134e0ba71cc8f76859bf244c0258ad",
"body": "…cidents, Custom metrics, Logs)\n\n- New docs/observability.md deep-dive covering all seven features\n- README: comparison rows, observability section, expanded alerting\n (Discord/Teams/webhooks + incidents/MTTR), config highlights\n- index.html: new feature cards, comparison rows, Observability section,\n nav/footer links, meta descriptions\n- tracing.md: add redis/mail/notification spans + log-correlation note",
"is_bot": false,
"headline": "docs: document the observability suite (Issues, Routes, RUM, SLOs, In…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T11:50:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f495d2322b52b77614cf513845c825c5bea7357",
"body": null,
"is_bot": false,
"headline": "ci: bump actions/checkout v4 → v5 (Node 24 runtime)",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T11:33:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec94c3461b3d91571a01b0db14cec33e546a35e7",
"body": "… complete]\n\nCapture application log records into a searchable explorer (level/channel/\nmessage filters) and correlate each line to the in-flight trace. Buffered in\nmemory and flushed after the response is sent (zero request latency), off by\ndefault. Trace detail gains a correlated-logs panel; PruneCommand trims the\nnew vigilance_logs table.",
"is_bot": false,
"headline": "feat(logs): searchable log explorer correlated to traces [feature 7/7…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T11:15:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "200d24b90eaa418a9fd610d5cceacdd55a9f9d1c",
"body": "…s, window selector [feature 6/7 complete]",
"is_bot": false,
"headline": "feat(metrics): Custom Metrics dashboard — value/peak + sparkline card…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T09:35:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49f7a37dbe1cb70b5eea7cc79b78e6060cce258f",
"body": "…auge() + auto-discovering summary repo [feature 6/7: api]",
"is_bot": false,
"headline": "feat(metrics): custom business metrics API — Vigilance::increment()/g…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T09:29:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4a034b4a9f0db9133b0303ed8bc6a4dcfa888e5",
"body": "…, MTTR, occurrences + manual resolve [feature 5/7 complete]",
"is_bot": false,
"headline": "feat(alerts): Incidents dashboard — open/resolved timeline with level…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T09:24:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "77a966aaf9897cc935b641448527043c69dea816",
"body": "…esolve when cleared, MTTR [feature 5/7: incidents]",
"is_bot": false,
"headline": "feat(alerts): incident records — open/refresh on fired alerts, auto-r…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T09:18:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69fe0e45ea9c5b0ac8df3ad73701d30e9179924f",
"body": "…env or route*To) [feature 5/7: channels]",
"is_bot": false,
"headline": "feat(alerts): Discord, Microsoft Teams and generic-webhook channels (…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T09:13:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5fb23960b7b5e61836562963d73501b61cdcbf09",
"body": "… rate, status; nav gated on configured SLOs [feature 4/7 complete]",
"is_bot": false,
"headline": "feat(slo): SLO dashboard — target/current SLI, error-budget bar, burn…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T09:08:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0f301aa4f37e6a9022f5c3f7830428dd880ab04",
"body": "… rule [feature 4/7: engine]",
"is_bot": false,
"headline": "feat(slo): error-budget SLOs (success_rate/latency) + burn-rate alert…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T09:02:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "231d0e3cc53d52e5f9ccac8b7d814190b0715deb",
"body": "…age with CWV ratings; nav gated on rum.enabled [feature 3/7 complete]",
"is_bot": false,
"headline": "feat(rum): Core Web Vitals dashboard — p75 LCP/INP/CLS/FCP/TTFB per p…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:55:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "53307d0b2580eefffde5b0f81a141bd17bd348af",
"body": "…errors via sendBeacon [feature 3/7: beacon]",
"is_bot": false,
"headline": "feat(rum): @vigilanceRum beacon — captures LCP/INP/CLS/FCP/TTFB + JS …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:49:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5242199b5779549723f21d20e4e66c6147bf635f",
"body": "… to Issues inbox (source: browser); opt-in [feature 3/7: ingest]",
"is_bot": false,
"headline": "feat(rum): public throttled RUM ingest — Web Vitals to APM, JS errors…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:43:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30610d598a739a8c22105c5f831d6cc984e7b7f7",
"body": "…dashboard-wide table scroll keyboard access [feature 2/7 complete]",
"is_bot": false,
"headline": "feat(apm): Routes performance page — p50/p95/p99, Apdex, error rate; …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:37:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8152e5e9451ef78cdb73c9bb28059e77d409fb05",
"body": "…s, durations for percentiles [feature 2/7: capture]",
"is_bot": false,
"headline": "feat(apm): per-route Requests recorder — throughput, Apdex, 5xx error…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:26:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb515fdf4f5fe2ce487d36dc218874e170a75332",
"body": "… runs + actions [feature 1/7 complete]",
"is_bot": false,
"headline": "feat(issues): issue detail page — stacktrace, request context, linked…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:16:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49e4b1acd129f7057cfdef7271b826be1bbae5ac",
"body": "…on runningInConsole, drop redundant null guards",
"is_bot": false,
"headline": "fix(issues): satisfy Larastan in IssueCapture — gate request context …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:12:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f008993cc4fb4d2bc9933703407d7834e859872",
"body": "…ame Failures->Issues; fold issue schema into base migration [feature 1/7: inbox]",
"is_bot": false,
"headline": "feat(issues): Issues inbox — source column + filter, mute/unmute, ren…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T08:06:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "87e977d6d668a169e115bf663b17e7013d956ffb",
"body": "…es store [feature 1/7: capture layer]",
"is_bot": false,
"headline": "feat(issues): capture web + reported exceptions into the unified Issu…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T07:52:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3899ded31ee60241b6a585b63f92fa9381ed0b78",
"body": null,
"is_bot": false,
"headline": "Release v0.3.0",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T06:58:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eefd6a3da75a759babdc329780eab0832ab71f3b",
"body": "… agent skill",
"is_bot": false,
"headline": "feat(boost): ship Laravel Boost AI guidelines + vigilance-development…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T06:50:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80764a2001b443b55099c3fdb388a9b4a89c80b1",
"body": null,
"is_bot": false,
"headline": "style: apply Pint formatting to Vigilance notification helpers",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T06:29:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56afca3c86df0019c71f29573f089b419d46c574",
"body": null,
"is_bot": false,
"headline": "Release v0.2.0",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T06:25:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f7735657c0e4ea8ab2f9771db99f2edca2852fb",
"body": "…tifications.mail / notifications.slack); routeMailNotificationsTo accepts comma-separated string",
"is_bot": false,
"headline": "feat(notifications): configure alert mail/slack routing from .env (no…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T06:22:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e124665c31209bfb0c5376276044a98b495c2e7d",
"body": "…onsistency)",
"is_bot": false,
"headline": "a11y(dashboard): add scope=col to remaining data-table headers (H63 c…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T06:03:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a22f47633571dfbeca044607ff7b6accf3e21453",
"body": "…, palette dialog, label associations, light-theme contrast, reduced-motion, mobile overflow fix",
"is_bot": false,
"headline": "a11y(dashboard): WCAG 2.1 AA pass — skip link, landmarks, ARIA states…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T05:59:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45f39054372dd6c9a05eaabc27c4016ddf5288ea",
"body": "…o shrink so code blocks scroll internally; add overflow-wrap safety net",
"is_bot": false,
"headline": "docs(site): fix mobile horizontal overflow — allow split grid items t…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T05:32:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c870cbf73d2fb1cc0febac8e08bb90517418caa8",
"body": "…ecorative SVGs hidden, heading order, focusable scroll regions, AA contrast",
"is_bot": false,
"headline": "docs(site): accessibility pass — landmarks, skip link, ARIA states, d…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-15T05:27:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02a2c152540dec345b2792e2588cea2933b5778d",
"body": "…meta",
"is_bot": false,
"headline": "docs(site): add social share card (og:image) + canonical and twitter …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T22:47:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f993c958e62f565a2c1dbd9dc6eec63beb32f18",
"body": "…on section",
"is_bot": false,
"headline": "docs(site): add dashboard showcase mockup + configuration/customizati…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T22:45:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95e4878085321e0ed79fb8f6921751528a4e8a57",
"body": "Self-contained static site under /docs (emerald technical-dark brand, no build,\nno CDN): hero, feature grid, Horizon/Telescope comparison, worker-supervisor and\nAPM/tracing sections, quick start, and a command reference. README now links to\nthe site and reflects the released/validated state.",
"is_bot": false,
"headline": "docs: add a GitHub Pages site (landing page) + README docs link",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T22:37:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ac215cfe530fb1f9670d229d9595071377bfd85",
"body": "QueueDepth now reads live backlog for all drivers vigilance:supervise can run:\n- database: COUNT of unreserved rows\n- redis: LLEN\n- beanstalkd: stats-tube current-jobs-ready (pheanstalk v4-v8) [new]\n- sqs: ApproximateNumberOfMessages via GetQueueAttributes [new]\n\nPreviously beanstalkd/sqs re\n[…]\nnst the REAL\npheanstalk v8 and aws-sdk-php APIs (SqsQueue + Aws MockHandler end-to-end;\npheanstalk TubeStats.currentJobsReady confirmed). Adds pda/pheanstalk and\naws/aws-sdk-php to composer \"suggest\".",
"is_bot": false,
"headline": "Release v0.1.3 — auto-scaling on every supervisable queue driver",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T22:14:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e35d475f2e48a234eddd040b51241ea81dce7585",
"body": "The supervisor could leave orphaned queue:work processes on Windows (and was\nslow to stop) because Process::stop() waits the full timeout for a SIGTERM\nWindows cannot deliver. Now:\n\n- WorkerProcess::terminate() tree-kills directly on Windows (fast + reliable);\n POSIX keeps graceful SIGTERM -> SIGKI\n[…]\nown, crash-recovery, pause/continue, rolling restart,\nfailure capture, recycling, multi-queue balance, chaos) with zero orphans,\nexternally verified. Package suite: 155 tests, Pint, PHPStan all green.",
"is_bot": false,
"headline": "Release v0.1.2 — bulletproof worker termination on Windows",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T21:23:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2be47693abc42c76e90ab47db00c7fb7c53ae82a",
"body": "- Stylesheet cache-buster is now a content hash, not the version, so the\n immutable cache never serves a stale stylesheet after an upgrade (fixes the\n redesigned dashboard rendering unstyled from a cached old CSS).\n- vigilance:doctor detects a viewVigilance Gate ability / Gate::before rule as\n co\n[…]\nackage no longer auto-registers the gate, so\n an app-defined viewVigilance ability is detectable. Behaviour unchanged.\n\n155 tests pass (adds route-level proof the gate actually guards the dashboard).",
"is_bot": false,
"headline": "Release v0.1.1 — asset cache-busting + doctor accuracy fixes",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T18:44:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "283a53e0040759be315e62bd08d720f0ab849a7d",
"body": "Bump the reported version to 0.1.0 and record the dashboard UI/UX redesign in\nthe changelog.",
"is_bot": false,
"headline": "Release v0.1.0",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T18:26:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b248ff431ae9d2abb6b152bb293b472dd8c92efe",
"body": "Complete visual overhaul of the dashboard, replacing the flat single-row top\nnav and default-Tailwind look with a proper IA and design system.\n\n- Design tokens + component kit (resources/css/vigilance.css): emerald\n \"technical dark\" palette as CSS variables (light + dark paired), a reusable\n kit (\n[…]\n (trace waterfall, metric charts) preserved.\n\nNo behavior/data changes — all wire:* bindings, routes and text preserved;\n153 tests still pass. dist/vigilance.css rebuilt (shipped, no host build step).",
"is_bot": false,
"headline": "Redesign the dashboard UI: app shell + design system",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T18:19:41Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "00d34c2bf4d298e854c22ac04b68c0f40abf6f0c",
"body": "Set the reported version to 0.0.1 (first public release) and date the\nchangelog. The version was previously a placeholder 0.1.0 with no matching tag.",
"is_bot": false,
"headline": "Release v0.0.1",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T15:16:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de6b90c234386fdbe8bf7715ab59950ddc5373d9",
"body": "nesbot/carbon 3.12.0 added a ?bool $overflow parameter to Carbon::plus()/\nminus(). Laravel 13 updated Illuminate\\Support\\Carbon to match, but Laravel 12\nhas not yet, so Laravel 12 + Carbon 3.12 fatals on class load\n(\"Declaration of Illuminate\\Support\\Carbon::plus() must be compatible with\nCarbon\\Car\n[…]\nhe Laravel 12 matrix legs only (Laravel 13 keeps\ntesting against the latest Carbon). Remove once a compatible Laravel 12 patch\nships. Verified locally: Laravel 12.62 + Carbon 3.11.4 -> 153 tests pass.",
"is_bot": false,
"headline": "CI: hold Carbon < 3.12 on Laravel 12 legs (upstream incompatibility)",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T15:08:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0f8d8b9da8f0679ea79d3474fbfadce76881ae06",
"body": "- Traces page: when tracing is on but sample_rate=0, the empty state now\n explains that only slow/failed requests are stored and how to raise the\n sample — instead of a bare \"No traces recorded yet\" (the local-dev trap).\n- Workers page: the \"no supervisors\" state now reads as an optional opt-in\n \n[…]\n-middleware / locale-redirect caveat; the full\n ~15-command reference (supervise, doctor, check --once, pause/continue/…);\n and a short schema/terminology note (connection_name vs connection, etc.).",
"is_bot": false,
"headline": "Improve empty-state UX and document the full command set / caveats",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T14:59:35Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6a2562b2a3437a028800e4cfbe43e0c295019b19",
"body": "Secure-by-default manual control + observability-first posture, matching how\nHorizon/Telescope/Pulse behave:\n\n- control.enabled now defaults to FALSE (manual dispatch/run is effectively\n RCE; opt in with VIGILANCE_CONTROL_ENABLED=true). A fresh install now shows a\n friendly \"disabled\" notice inste\n[…]\ngilance:supervise gains --once and --max-time for bounded/test runs.\n- Exclude boost:* commands from capture by default.\n\nAdds AuthGateTest plus marker, dropped-command and --once coverage (153 pass).",
"is_bot": false,
"headline": "Harden control surface, auth, and diagnostics (production feedback)",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T14:56:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e4d0cf2b228dbdfd63c9e22cb1f583bf433cb096",
"body": "…Symfony 8\n\nLaravel 11 is past its security-support window — every 11.x release (incl. the\nlatest) is flagged by an unpatched advisory, so Composer 2.9's advisory blocking\nrefuses to install it and CI could never go green on the 11 legs. Align the\npackage with Laravel's actively-maintained versions \n[…]\nravel {12,13} x Livewire {3,4},\n excluding PHP 8.2 + Laravel 13 (L13 requires PHP >= 8.3)\n\nVerified locally on Laravel 13.15 + Pest 4.7 + Livewire 4.3.1: 146 tests pass,\nPHPStan clean, no advisories.",
"is_bot": false,
"headline": "Track Laravel's active support window: drop EOL 11, add Laravel 13 / …",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T14:43:57Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a2de9f0a7151c129c89fefcefb6f09d438fddc00",
"body": "Support Livewire 4 alongside 3.5",
"is_bot": false,
"headline": "Merge pull request #3 from anousss007/livewire-v4-compat",
"author_name": "Anas B.",
"author_login": "anousss007",
"committed_at": "2026-06-14T14:25:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1feb38b89d37c1045b04915498ac2e6edad8a24",
"body": "Widen the livewire/livewire constraint to \"^3.5 || ^4.0\" so apps already on\nLivewire 4 can install Vigilance. The class-based components need no changes —\nv4 is backward compatible (verified: 146 tests + PHPStan pass on v4.3.1).\n\nAdd a Livewire 3/4 dimension to the CI test matrix, and note dual compatibility\nin the README requirements and changelog.",
"is_bot": false,
"headline": "Support Livewire 4 alongside 3.5",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T14:09:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7a45ada44727073e3c41ac6578ee84e6e5cc6c1",
"body": "Security policy, code of conduct, issue/PR templates, dependabot, Pint config,\nREADME badges, suggested Redis ext, and an up-to-date changelog — to make the\npackage release-ready.",
"is_bot": false,
"headline": "Add packaging, community-health files and CI polish",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T13:44:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ccb109b8ae7ed5d6a8ecd724d4a7d32cca8ded16",
"body": "…r for Laravel\n\nWorker supervision (Horizon-parity), whole-app APM (Pulse-parity), per-request/job\ntracing waterfalls, job batches, metrics, deployments, rule-based alerts and uptime\nmonitoring — self-hosted, driver-agnostic, production-safe. 146 tests, PHPStan L5, Pint.",
"is_bot": false,
"headline": "Initial commit: Vigilance — driver-agnostic queue + APM control cente…",
"author_name": "anousss007",
"author_login": null,
"committed_at": "2026-06-14T13:39:41Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 19,
"commits_last_year": 71,
"latest_release_at": "2026-06-26T10:09:47Z",
"latest_release_tag": "v0.6.1",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 3,
"days_since_latest_release": 26,
"mean_days_between_releases": 1.2
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 100,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "anousss007/vigilance",
"exists": true,
"license": "MIT",
"keywords": [
"queue",
"monitoring",
"laravel",
"supervisor",
"dashboard",
"jobs",
"artisan",
"scheduler",
"apm",
"ai",
"pulse",
"tracing",
"horizon",
"telescope",
"livewire",
"observability",
"laravel-boost"
],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/anousss007/vigilance",
"is_deprecated": false,
"latest_version": "v0.6.1",
"repository_url": "https://github.com/anousss007/laravel-vigilance",
"versions_count": 19,
"total_downloads": 7289,
"dependents_count": 0,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 5555,
"first_published_at": null,
"latest_published_at": "2026-06-26T10:09:30Z",
"latest_version_yanked": null,
"days_since_latest_publish": 26
}
]
},
"popularity": {
"forks": 9,
"stars": 189,
"watchers": 4,
"fork_history": {
"days": [
{
"date": "2026-06-16",
"count": 1
},
{
"date": "2026-06-19",
"count": 2
},
{
"date": "2026-06-20",
"count": 3
},
{
"date": "2026-06-23",
"count": 1
},
{
"date": "2026-06-26",
"count": 1
},
{
"date": "2026-07-22",
"count": 1
}
],
"complete": true,
"collected": 9,
"total_forks": 9
},
"star_history": null,
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 39660,
"source_files_sampled": 349,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"composer.json",
"package.json"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm",
"packagist"
],
"dependencies": [
{
"name": "illuminate/bus",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^12.0 || ^13.0"
},
{
"name": "illuminate/console",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^12.0 || ^13.0"
},
{
"name": "illuminate/contracts",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^12.0 || ^13.0"
},
{
"name": "illuminate/database",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^12.0 || ^13.0"
},
{
"name": "illuminate/queue",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^12.0 || ^13.0"
},
{
"name": "illuminate/support",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^12.0 || ^13.0"
},
{
"name": "livewire/livewire",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^3.5 || ^4.0"
},
{
"name": "symfony/process",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^7.0 || ^8.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 3,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 2
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "anousss007",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/4137453?v=4"
},
{
"type": "User",
"login": "MarcEspiard",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/32894646?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.667
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"tests.yml"
],
"has_docs_dir": true,
"linter_configs": [
"phpstan.neon"
],
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 5,
"reason": "1 out of 2 merged PRs checked by a CI test -- score normalized to 5",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 1/29 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 10,
"reason": "security policy file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "92fe2c0ddf89ac319e8b36eac338721b8a04f1c3",
"ran_at": "2026-07-23T08:40:15Z",
"aggregate_score": 4.5,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": true,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-19T01:46:52Z",
"oldest_open_prs": [
{
"number": 6,
"created_at": "2026-07-19T01:43:39Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 7,
"created_at": "2026-07-23T08:33:44Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-06-27T13:41:11Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/anousss007/laravel-vigilance",
"host": "github.com",
"name": "laravel-vigilance",
"owner": "anousss007"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"security": 45,
"vitality": 73,
"community": 64,
"governance": 45,
"engineering": 74
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 73,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"commits_last_year": 71,
"human_commit_share": 0.986,
"days_since_last_push": 0,
"active_weeks_last_year": 3
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "3/52 weeks with commits",
"points": 2.1,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 3
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "71 commits in the last year",
"points": 16.7,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 71
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 19,
"latest_release_tag": "v0.6.1",
"releases_from_tags": false,
"days_since_latest_release": 26,
"mean_days_between_releases": 1.2
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "19 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 19
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 26 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 26
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~1.2 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 1.2
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 64,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 47,
"inputs": {
"forks": 9,
"stars": 189,
"watchers": 4,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "189 stars",
"points": 36.9,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 189
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "9 forks",
"points": 7.5,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 9
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "4 watchers",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 4
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 13.5,
"status": "met",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"packages": [
"anousss007/vigilance"
],
"dependents": 0,
"ecosystems": "packagist",
"total_downloads": 7289,
"monthly_downloads": 5555
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "5,555 downloads/month across packagist",
"points": 49.9,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 5555,
"ecosystems": "packagist"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "0 packages depend on it",
"points": 0,
"status": "missed",
"details": [
{
"code": "registry_dependents",
"params": {
"count": 0
}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 45,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 19,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.667
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 67% of commits",
"points": 7.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 67
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "at_risk",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 43,
"inputs": {
"merged_prs": 3,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 2
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "3/5 decided PRs merged",
"points": 22.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 3,
"decided": 5
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/29 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 34,
"inputs": {
"followers": 0,
"owner_type": "User",
"is_verified": null,
"owner_login": "anousss007",
"public_repos": 4,
"account_age_days": 4849
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "0 followers of anousss007",
"points": 0,
"status": "missed",
"details": [
{
"code": "owner_followers",
"params": {
"count": 0,
"login": "anousss007"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "4 public repos, account ~13 yr old",
"points": 17.1,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 4
}
},
{
"code": "account_age_years",
"params": {
"years": 13
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"anousss007/vigilance"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 26
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on packagist",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "packagist"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 26 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 26
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "19 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 19
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 74,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": "phpstan.neon",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "phpstan.neon"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "1 out of 2 merged PRs checked by a CI test -- score normalized to 5",
"points": 10,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 45,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 45,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 4.5
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "1 out of 2 merged PRs checked by a CI test -- score normalized to 5",
"points": 1.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 1/29 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 1
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 53,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.871,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "61 of 70 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 61,
"sampled": 70
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 63,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.028,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0.014
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": "phpstan.neon",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "phpstan.neon"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "2 of the last 71 commits agent-authored or agent-credited",
"points": 5.6,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 2,
"sampled": 71
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "1 of the last 71 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 1,
"sampled": 71
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "PHP",
"largest_source_bytes": 39660,
"source_files_sampled": 349,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "PHP without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "PHP"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/349 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 349,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-23T08:40:21.943573Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/anousss007/laravel-vigilance.svg",
"full_name": "anousss007/laravel-vigilance",
"license_state": "standard",
"license_spdx": "MIT"
}