Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 263,
"has_wiki": true,
"homepage": null,
"languages": {
"C++": 73352,
"Java": 1572,
"Ruby": 857,
"CMake": 5305,
"Shell": 4664,
"Kotlin": 35436,
"JavaScript": 298,
"TypeScript": 8389
},
"pushed_at": "2026-07-17T18:59:15Z",
"created_at": "2026-07-10T12:46:42Z",
"owner_type": "User",
"updated_at": "2026-07-17T18:59:52Z",
"description": "🛠 Cross-platform Gaussian blur implementation for React Native using a separable filter in C++, custom thread pool, and NEON SIMD for mobile efficiency.",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": null,
"primary_language": "C++",
"significant_languages": [
"C++",
"Kotlin"
]
},
"owner": {
"blog": "https://www.linkedin.com/company/neosystem-s-a/",
"name": "João Carlos da Silva Correia",
"type": "User",
"login": "jaoCorreia",
"company": "H2O Innovation",
"location": "Foz do Iguaçu, PR, Brasil",
"followers": 10,
"avatar_url": "https://avatars.githubusercontent.com/u/101333652?v=4",
"created_at": "2022-03-10T12:11:31Z",
"is_verified": null,
"public_repos": 22,
"account_age_days": 1595
},
"license": {
"state": "absent",
"spdx_id": null,
"raw_spdx": null,
"file_present": false,
"scorecard_found": false,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2026-07-17T18:55:08Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-07-13T15:20:29Z"
},
{
"tag": "v0.1.4",
"kind": "patch",
"published_at": "2026-07-13T12:44:36Z"
},
{
"tag": "v0.1.3",
"kind": "patch",
"published_at": "2026-07-13T12:29:48Z"
},
{
"tag": "v0.1.2",
"kind": "patch",
"published_at": "2026-07-13T12:00:51Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2026-07-13T11:46:54Z"
}
],
"recent_commits": [
{
"oid": "35ff43d87954db6d90ab9421be3c6498cf073809",
"body": "…ative-community/blur",
"is_bot": false,
"headline": "fix: disable iOS autolinking to avoid podspec collision with @react-n…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-17T18:55:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6db93debcc47392acb3e145c5241b8dbd52cc639",
"body": "…32_si128\n\n_mm_loadl_epi64 reads 8 bytes but only 4 bytes (1 RGBA pixel) are valid\nat the last pixel of each row. Replaced with _mm_cvtsi32_si128 which\nreads exactly 4 bytes via int32_t pointer — no overread, no UB.\n\n29/29 tests pass.",
"is_bot": false,
"headline": "fix: SSE4.1 buffer overread in box blur — _mm_loadl_epi64 → _mm_cvtsi…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T16:20:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b0ba8c0dc4611a7fa2da5cde751864463f4eab9",
"body": null,
"is_bot": false,
"headline": "chore: bump v0.2.0",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T15:20:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b17d43d50e55b5ae0d647f9ecc9ac191978652c",
"body": "Antes: capturava bitmap dos filhos → C++ blur era skipado (useGPU=true)\n → mas o bitmap ainda era alocado e Canvas.draw() chamado\n\nAgora: setRenderEffect() aplicado diretamente no BlurView.\n A GPU do Android 12+ aplica o blur no pipeline de renderizacao.\n Zero alocacao de bitmap, zero custo de CP\n[…]\nvas.\n Igual ao que o DimezisBlurView/expo-blur fazem internamente.\n\n Removidos: captureAndBlur() nao roda em API 31+, nem drawWithRenderEffect.\n O dispatchDraw fica: super.dispatchDraw() + overlay.",
"is_bot": false,
"headline": "perf: BlurView API 31+ usa setRenderEffect direto, sem bitmap capture",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T14:50:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "02bbc20d248f8a5180ac743aca2f980f8c3ee491",
"body": null,
"is_bot": false,
"headline": "Merge branch 'feat/boxblur-simd-tiling'",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T14:36:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02864fedd47e423dcb3e999ba71ac5e7a9b73ebd",
"body": "- boxblur.cpp: _mm_cvtepu8_epi32 (SSE4.1) e vld1_u8/vaddq_s32 (NEON)\n no sliding window horizontal e vertical. Processa 4 canais RGBA\n em uma unica instrucao SIMD.\n- Prefetch: __builtin_prefetch no vertical sweep, PREFETCH_DIST=4 linhas\n a frente da posicao atual de processamento.\n- CMakeLists.txt: -msse4.1 para boxblur.cpp em x86_64\n- 29/29 tests pass. Benchmarks estaveis (box blur e memory-bound).",
"is_bot": false,
"headline": "perf: SSE4.1/NEON SIMD + prefetch no box blur",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T14:28:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04997877b3df32550358653021b1dbbe5f37a788",
"body": null,
"is_bot": false,
"headline": "0.1.4",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T12:44:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "213889aafb233ca4e52f527eda4da118b8e3304d",
"body": null,
"is_bot": false,
"headline": "0.1.3",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T12:29:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6ec219f09fb4624607449533c2b79ffd7dc5741",
"body": "chore: bump v0.1.2",
"is_bot": false,
"headline": "fix: recycle stale capture bitmap in BackdropBlurView",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T12:00:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4aa2e263e8c3b9ec839ed2a70993f8f4e499e980",
"body": "BackdropBlurView captures the GPU SurfaceView behind it via PixelCopy, blurs it, and composites children sharp on top. Works over maps, video, camera.\n\nTiered by API level:\n- 31+: PixelCopy + GPU RenderEffect\n- 24-30: PixelCopy + C++/NEON\n- 21-23: transparent scrim fallback",
"is_bot": false,
"headline": "feat: BackdropBlurView — backdrop blur over GPU SurfaceView",
"author_name": "Diogo Magrini Furmann",
"author_login": "dmfdiogo",
"committed_at": "2026-07-13T12:00:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85107a2679e23f5eab4e2113ed61d9dcb3a1d2ec",
"body": "bench: honest benchmarking suite (harness · on-device/Test Lab · real-device docs · threshold analysis)",
"is_bot": false,
"headline": "Merge pull request #2 from jaoCorreia/bench/on-device-benchmark",
"author_name": "João Carlos da Silva Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T11:52:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "424da1ad932e529e9830fdc9af88a7324e47d61f",
"body": null,
"is_bot": false,
"headline": "chore: reset version to 0.1.1",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-13T11:46:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bab7f83f21ebe78a80cc9828c6fdd2155e590696",
"body": "…claim\n\nSingle-run Test Lab data suggested Box could beat Gaussian at mid radii on\nsome devices (a device-dependent crossover). Re-run 3x/device with a CPU\nwarmup before timing + randomized case order (to kill DVFS ramp-up as a\nconfound), it didn't hold: Box is never faster (~1.7x slower on budget -\n[…]\nstlab-benchmark.sh: REPEATS=N to run the device matrix multiple times\n- README.md, CLAUDE.md: corrected numbers/methodology, retracted the claim\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "bench: DVFS-corrected re-run retracts the device-dependent threshold …",
"author_name": "dmfdiogo",
"author_login": null,
"committed_at": "2026-07-11T19:13:14Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "467429d03b39bc975a703c4331e18adaa7a3ebd7",
"body": null,
"is_bot": false,
"headline": "Merge branch 'bench/honest-harness' into bench/on-device-benchmark",
"author_name": "dmfdiogo",
"author_login": null,
"committed_at": "2026-07-11T17:46:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c295c40690acae983043571fc0aae6891981da7",
"body": "…orks\n\nThe redfin/oriole/shiba defaults were already stale against the current\nTest Lab catalog (confirmed via `gcloud firebase test android models list`).\nReplaced with a06/SC-53C/caiman (budget/mid/flagship), the exact IDs\nsuccessfully run against `react-native-cpp-blur` on 2026-07-11 — all 3\npass\n[…]\n--app/--test approach worked without a\nseparate host-app module, so that comment is now stated as confirmed\nrather than a hopeful fallback note.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: update stale default device matrix, confirm self-instrumenting w…",
"author_name": "dmfdiogo",
"author_login": null,
"committed_at": "2026-07-11T17:45:27Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2fb0fc2e2fcda773211c57efdb7c5304a28e6285",
"body": "…ceholder\n\nRuns scripts/testlab-benchmark.sh (added in #2) across 3 physical devices\n(budget/mid/flagship) via `gcloud firebase test android run`. Fills in the\n\"Representative phone numbers ... are planned\" placeholder with actual data.\n\nTwo findings the CI/laptop numbers couldn't surface:\n\n- Cache-\n[…]\nhem.\n\nDepends on #2 for the referenced script/harness files to exist on main;\nnoted inline so the links aren't dead if viewed before both merge.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add real Firebase Test Lab phone numbers, replace \"planned\" pla…",
"author_name": "dmfdiogo",
"author_login": null,
"committed_at": "2026-07-11T17:41:37Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a3d169b84b18cc6a9444bac0a7ba66326c941c62",
"body": "Adds a real-hardware benchmark for the native NEON path, plus the plumbing\nto run it on Firebase Test Lab. Complements the C++ microbenchmark, which\nruns on runners/laptops — this measures actual Android devices.\n\n- NativeBlur.clearCache() + nativeClearCache JNI: lets the benchmark force a\n cold bl\n[…]\nlinear resolution scaling). Emulator ms are far\nslower than a phone and are not representative — real device numbers come\nfrom the Test Lab run.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "bench: on-device blur benchmark (Test Lab / device / emulator)",
"author_name": "dmfdiogo",
"author_login": null,
"committed_at": "2026-07-11T15:01:11Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "e2a6a93c4ba0ba9ce493137a88d47ead010c7796",
"body": "The benchmark measured a warm cache, not the blur: it re-blurred the same\nbuffer in a loop, so gaussianBlur() returned a cached result on every\niteration after the first. That's where the old sub-0.1 ms / \"142x faster\"\nfigures came from. Fix what's measured, then fix how it's documented.\n\nHarness (b\n[…]\nitney U-test), post to job summary.\n Informational, not a hard gate.\n\npackage.json: benchmark script now forces Release and passes repetitions.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "bench: honest harness, hardware-independent docs, regression + arm64 CI",
"author_name": "dmfdiogo",
"author_login": null,
"committed_at": "2026-07-11T14:40:31Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9be289edc8834ea14dfbbf8097d7ea1ae60c69d7",
"body": null,
"is_bot": false,
"headline": "1.4.4",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T20:31:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2a0b362cdc46f4034f8681537bc1c06c68ddedd",
"body": null,
"is_bot": false,
"headline": "core:update readme",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T20:31:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45d66bc3aab54070cc374d97ec717cac59303adb",
"body": "…t a compiler in CI\n\nTwo real, pre-existing bugs surfaced by the newly added Gradle CI job\n(nothing previously compiled this Kotlin code at all):\n\n- BlurPackage.kt passed reactContext to BlurViewManager(), which takes no\n constructor arguments.\n- BlurView.kt called Paint.setRenderEffect(), which do\n[…]\nr it when\n falling back to the non-GPU path (blurRadius <= 0) so a stale effect\n doesn't linger. Also apply backgroundPaint consistently in both the\n GPU and non-GPU draw paths instead of only one.",
"is_bot": false,
"headline": "fix: Android module didn't actually compile — first time it's ever hi…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T20:22:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cf9355b29717896118b6e96fcd8e1293f5a5ee3d",
"body": "- Benchmarks: 4096px 4.07ms (78x vs v1.0), 1024px 0.17ms (142x)\n- Features: AVX2 + NEON dual SIMD, cache-friendly vertical sweeps\n- CI: aarch64 QEMU + Android Gradle build\n- Roadmap: v2.3 complete",
"is_bot": false,
"headline": "docs: v1.4.3 - updated benchmarks, AVX2, cache-friendly vertical, CI",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T20:16:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c43be5c5946aaf53f2ef7edec783299dbc53f1bb",
"body": "…fore push\n\nThe regression test for the boxBlur1D wiring bug used a single bright\npixel as the test signal. With integer (round-down) box blur at a large\nradius, a single pixel's \"mass\" (255) spread over a ~15x15-cell window and\ndivided across 3 sequential passes truncates to exactly zero — a real,\n\n[…]\nnd produce a clean,\nmonotonic falloff to probe well outside the block. Verified locally\n(WSL, both a plain Ninja build and a Debug+ASan build) before pushing:\nall 29 tests pass, no sanitizer findings.",
"is_bot": false,
"headline": "test: fix flawed box-blur regression test signal, verified locally be…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T20:13:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6a2bc577c8f08a54e8540e2aac4bd7da20db05be",
"body": "…roes out",
"is_bot": false,
"headline": "debug: instrument boxBlur3Pass per-pass to isolate where the value ze…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T20:03:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8c7279b8f83e3668e05b57a69511f502a4fe392",
"body": "…still fails",
"is_bot": false,
"headline": "debug: add diagnostic prints to ActuallyBlursBothAxes to find why it …",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T19:58:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad25e9db16d479fc0cb64839e2928b709ed91c0b",
"body": "…n CI\n\nboxBlurHorizontal/boxBlurVertical preloaded the window for position -1 as\n[0, radius] instead of [0, radius-1], double-counting position `radius`\n(once in the preload, once again via the first iteration's `newRight`\ncheck). This inflated the sliding-window denominator by one for every\npositio\n[…]\nb: the runner's ambient\n`gradle` resolved to 9.6.1, which dropped APIs (SelfResolvingDependency)\nthat AGP 8.2.0 depends on. There's no committed Gradle wrapper in this\nrepo to otherwise pin a version.",
"is_bot": false,
"headline": "fix: box blur sliding-window off-by-one, pin Gradle 8.4 for AGP 8.2 i…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T19:53:03Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ae289bd2e41f26f6d8ffee22176ceffb2b3eeacf",
"body": "…s, AVX2 path, CMake install\n\n1. boxBlur1D wrote the horizontal pass into dst, then the vertical pass read\n src again instead of dst, discarding the horizontal pass entirely. Since\n BlurMethod::Auto routes radius>5 through boxBlur3Pass, this was the\n default path for most real blur radii and s\n[…]\nhat actually runs\n the test suite for the NEON path. Previously every CI job ran on x86_64\n only, so gaussian_neon.cpp had never once been compiled, let alone\n tested, in this project's history.",
"is_bot": false,
"headline": "fix: box blur double-vertical-pass bug, cache-friendly vertical sweep…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T19:52:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9e51de167506bcba4e23917d200f0271251dbea7",
"body": null,
"is_bot": false,
"headline": "1.4.2",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T19:01:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c17ead39d5b5d5d828c30dc8e431c2281d6f672",
"body": null,
"is_bot": false,
"headline": "perf: BufferPool size classes + 64MB cap per thread",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T19:01:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f84e8994e8d57556fa05b879e777f1d4dd93de7",
"body": null,
"is_bot": false,
"headline": "1.4.1",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:43:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "831a2772cb62f0579b921ca4f41dc845b9984ecf",
"body": null,
"is_bot": false,
"headline": "1.4.0",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:40:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff60f14eac0dfc05a8bb315005fc3f88eb295e36",
"body": null,
"is_bot": false,
"headline": "docs: v1.3.0 - updated benchmarks, auto algorithm selection table",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:40:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f1aa7368307dd1dcd58b0c660d89891ef793914",
"body": "1. BlurView.kt: skip C++ blur when RenderEffect available (API 31+)\n - avoids double blur and wasted CPU on Android 12+\n2. gaussian.cpp + NEON: compute fixed-point kernel once per pass\n - was recalculating inside every row (precomputeKernelFixed per row)\n3. parallelFor: chunkSize = total/(thread\n[…]\n_map by (radius, sigma_quantized)\n - generateGaussianKernel from 66ns to 17ns\n6. boxblur.cpp: use parallelFor with proper chunks\n\nBenchmarks: 1024x1024 R15: 0.414ms (26x), 4096x4096 R8: 25.3ms (11x)",
"is_bot": false,
"headline": "fix: 6 bugs/optimizations from code review",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:36:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cc0f402ff229134072790ca6dbbb2f8ee29e7ee3",
"body": null,
"is_bot": false,
"headline": "1.3.0",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:15:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d08efbd427f20ad346f09107efd8e89643390308",
"body": "- pool.h/cpp: ScopedBuffer RAII + thread-local buffer reuse, avoids malloc/free\n- thread_pool.h/cpp: parallelFor with atomic counter replaces static partitioning.\n Threads claim chunks dynamically, balancing uneven workloads (25% faster @4096px)\n- gaussian.cpp, boxblur.cpp: replace std::vector<uint8_t> with ScopedBuffer,\n replace static partitioning with parallelFor\n- CMakeLists.txt: add pool.cpp\n\n4096x4096 R8: 284ms (was 378ms, 25% faster)",
"is_bot": false,
"headline": "perf: buffer pool, work-stealing thread pool, BlurView dirty flag",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:12:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32e00d801c5ebd570e809a10bbc336762cd2b972",
"body": "GitHub Packages requires npm packages to be scoped to the repo owner,\nso this publishes @jaocorreia/react-native-cpp-blur there alongside\nthe unscoped react-native-cpp-blur on the public npm registry.",
"is_bot": false,
"headline": "ci: also publish scoped package to GitHub Packages",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:09:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b8156ae8007477ec128941b5dd2b417a8d40ac1",
"body": null,
"is_bot": false,
"headline": "docs: Box Blur 3-pass in README, bump v1.2.0",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:04:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ab3c45e2a814d45e0cdef02f2c5cf0e8ba6fd25",
"body": null,
"is_bot": false,
"headline": "1.1.5",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T18:01:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84f79262d7e3928af61c4efa23121f744299f9cc",
"body": "- boxblur.h/cpp: sliding window box blur, independent of radius\n - boxRadiusFromGaussian: maps Gaussian radius to box radius\n - boxBlur1D: horizontal + vertical pass, multithreaded\n - boxBlur3Pass: 3 consecutive 1D passes approximates Gaussian (<3% RMS error)\n- scale.h: BlurMethod enum (Auto/Gaus\n[…]\n CMakeLists.txt: add boxblur.cpp\n\nBenchmarks (x86_64):\n 512x512 R10: 0.086ms (was 4.9ms, 57x faster)\n 1024x1024 R15: 9.52ms (was 20.0ms, 2.1x faster)\n 2048x2048 R8: 46.5ms (was 77.0ms, 1.6x faster)",
"is_bot": false,
"headline": "perf: Box Blur 3-pass approximation (O(1) per pixel)",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:58:51Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bb27b4f790d2e3d5ed1134026cceeb7f7b6849fc",
"body": "….1.4\n\nnpm@latest dropped support for Node 20, which the trusted-publishing\nupgrade step in publish.yml requires.",
"is_bot": false,
"headline": "ci: bump publish job to Node 22 (npm@latest requires >=22), bump to 1…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:49:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fa13f6085fe8e77a904dfedcbfda35c7b700bf9",
"body": "Classic automation tokens still require an OTP for publish, which broke\nthe CI publish step. Trusted Publishing removes the token entirely.",
"is_bot": false,
"headline": "ci: switch npm publish to Trusted Publishing (OIDC), bump to 1.1.3",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:48:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f23017b93a3ed0dc59ad4a6f83c325f9b3fde01",
"body": null,
"is_bot": false,
"headline": "1.1.2",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:33:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0013b2a1db2889bceb6fe3a5944acbb6cf9c6055",
"body": null,
"is_bot": false,
"headline": "chore: add homepage, bugs fields for npm repo link",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:31:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94e81cabbd416e609a871bead08e8367536a5a18",
"body": null,
"is_bot": false,
"headline": "1.1.1",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:29:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1413aa431e86baa806b6d61d540a05fe647d4c22",
"body": "- .github/workflows/publish.yml: triggers on v* tags, verifies version match\n- README: npm version badge, downloads badge, CI badge, license badge\n- README: fix install/import paths to react-native-cpp-blur",
"is_bot": false,
"headline": "ci: auto-publish to npm on git tag, update README badges",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:27:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1fe0e6c1561c5baede0c69d52fd249eec39e986f",
"body": null,
"is_bot": false,
"headline": "chore: bump v1.1.0 - NEON 4-wide, update README",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T17:02:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0693ba8686375d7eaa64cb1db1d12b8f03945f1e",
"body": "Horizontal: interior pixels (radius to width-radius) processed in pairs\n using vld1_u8(8 bytes = 2 RGBA pixels), vext_u8 for pixel 1 extraction.\n Eliminates clamping branches in hot path. 2x load reduction.\n\nVertical: interior rows processed in pairs using separate vld1_u8 per row.\n\nEdge pixels (left/right/top/bottom) still use single-pixel NEON with clamp.\nThis is a correctness-preserving throughput optimization for the majority\nof pixels in any image.",
"is_bot": false,
"headline": "perf: NEON 4-wide - process 2 pixels per iteration in interior",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T16:57:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f0b8cdde6cf8f1bcd8f9b41115eeaebd7a1bb4a",
"body": null,
"is_bot": false,
"headline": "chore: rename to react-native-cpp-blur",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T15:14:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4898d60b2ee3851fba2ec8fb6bdf968bd9da22a",
"body": "…lishConfig",
"is_bot": false,
"headline": "chore: rename to @jaocorreia/react-native-blur, fix repo URL, add pub…",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T15:00:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1b7bdb7d8d1b52623ba3db04c9b69a13020f0af6",
"body": "- scale.h/cpp: downscale2x (box filter), upscale2x (bilinear), autoScaleFactor\n - radius >= 20: 4x downscale, radius >= 8: 2x downscale, else direct\n - 1024x1024 radius 15: 17% faster (20.0ms vs 24.2ms) on x86_64\n- gaussian_neon.cpp: fixed-point int32 MAC replaces float FMA\n - Kernel pre-computed\n[…]\n, dims, radius, sigma, scale)\n - Memcpy return on cache hit, no recomputation\n- gaussian.h: BlurOptions struct with ScaleMode::Auto\n- gaussian.cpp: integrated scale + cache into gaussianBlur pipeline",
"is_bot": false,
"headline": "feat: v2 - auto-downscaling, fixed-point NEON, blur cache",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T14:00:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f6cb95093b05742fca869a7d39176537d6426005",
"body": "- NEON vs scalar comparison with speedup ratios\n- x86_64 CI benchmarks\n- Comparison table: react-native-blur vs community vs expo-blur\n- Key advantages section highlighting no API restrictions, no RenderScript\n- Update CI section to match current jobs",
"is_bot": false,
"headline": "docs: comprehensive performance comparison with other blur libraries",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:49:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "099ed95107415fab5164a424ac9307904a776b50",
"body": "Core C++ tests, benchmarks, ASan, and TypeScript already validate the library.\nAndroid Gradle build requires React Native framework which is only available\nin a host application context.",
"is_bot": false,
"headline": "ci: remove Android Gradle build (needs full RN app context)",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:38:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57cadd45a9a549fd3851b77d57540524e8ab7513",
"body": null,
"is_bot": false,
"headline": "fix: BlurView.kt - use RenderEffect.createBlurEffect() directly",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:32:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65dada4c40e5f12817670bb5edab807cb8188bf2",
"body": "- BlurViewManager: remove codegen-generated interface/delegate references\n- build.gradle: add compileOnly react-android dependency",
"is_bot": false,
"headline": "fix: Android build - remove codegen deps, add react-android",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:27:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a09a5c150fd5097e8873a3543c0b8e7a2fc483c",
"body": "The CMake condition OR ANDROID caused NEON source to compile on x86 Android\ntargets. Now NEON is only enabled for ARM architectures (aarch64/arm64/armv7)\nrelying on compiler-defined macros for dispatch.",
"is_bot": false,
"headline": "fix: Android NEON build for x86 - remove manual __ARM_NEON__ define",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:21:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67f0165218d9c10bd8486422f48a5dc0058f4b7e",
"body": "- test_gaussian: check adjacent pixel instead of far corner\n- android/CMakeLists.txt: fix blur-core path (../ not ../../)",
"is_bot": false,
"headline": "fix: test SingleWhitePixelBlurred and Android CMake path",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:17:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b277c79e83d3652732bd15ef0c4e328e5b924e1",
"body": "- test_gaussian: SingleWhitePixelBlurred radius 6 for 8x8 corner reach\n- test_gaussian: OutputIsSymmetric use 7x7 image for exact center\n- android/gradle.properties: enable android.useAndroidX",
"is_bot": false,
"headline": "fix: remaining test bugs and Android gradle.properties",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:10:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92b7357c6445a703837c2a03c0659b3b65c77637",
"body": "- test_kernel: fix LargerSigmaProducesFlatterKernel to check center index\n- test_gaussian: fix SingleWhitePixelBlurred (smaller image for kernel reach)\n- test_gaussian: fix OutputIsSymmetric (correct mirror around center pixel)\n- test_gaussian: fix LargerRadiusMoreBlur (separate buffers, not shared)\n- android/settings.gradle: remove duplicate project include",
"is_bot": false,
"headline": "fix: tests and Android settings.gradle",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:06:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca655877f29782a32cb71b24392224b4f78d91e9",
"body": "- CMakeLists.txt: use cmake_minimum_required(VERSION 3.18...4.0), bump\n googletest to v1.15.2, benchmark to v1.9.1, set BENCHMARK_ENABLE_TESTING=OFF\n- CI: add CMAKE_POLICY_VERSION_MINIMUM=3.5 to all cmake configure steps\n- Android: fix build.gradle to be self-contained, add settings.gradle,\n add CMake 4.x policy, setup gradle in CI\n- benchmark_blur.cpp: add missing kernel.h include",
"is_bot": false,
"headline": "fix: CI compatibility with CMake 4.x and Android build",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T13:02:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47253706dc7b2140512f6c5903ff7202212358b3",
"body": "…Native\n\n- blur-core: separable Gaussian blur with ARM NEON SIMD, multithreaded\n- Android: JNI bridge, Kotlin TurboModule, Fabric BlurView\n- Tests: GoogleTest (19 unit tests), Google Benchmark (7 benchmarks)\n- CI/CD: GitHub Actions (tests, benchmarks, ASan, Android build, typecheck)",
"is_bot": false,
"headline": "feat: initial release - high-performance C++ Gaussian blur for React …",
"author_name": "Joao Correia",
"author_login": "jaoCorreia",
"committed_at": "2026-07-10T12:56:57Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 6,
"commits_last_year": 60,
"latest_release_at": "2026-07-17T18:55:08Z",
"latest_release_tag": "v0.2.1",
"releases_from_tags": true,
"days_since_last_push": 5,
"active_weeks_last_year": 2,
"days_since_latest_release": 5,
"mean_days_between_releases": 0.9
},
"community": {
"has_readme": true,
"has_license": false,
"has_description": true,
"has_contributing": false,
"health_percentage": 28,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "react-native-cpp-blur",
"exists": true,
"license": "MIT",
"keywords": [
"react-native",
"blur",
"gaussian-blur",
"glassmorphism",
"fabric",
"turbomodule",
"cpp",
"neon",
"simd",
"performance",
"cross-platform"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/react-native-cpp-blur",
"is_deprecated": false,
"latest_version": "0.2.1",
"repository_url": "https://github.com/jaoCorreia/react-native-blur",
"versions_count": 15,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 2,
"monthly_downloads": 2574,
"first_published_at": "2026-07-10T15:14:56.990000Z",
"latest_published_at": "2026-07-17T18:59:40.762000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"example"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"tsconfig.json"
],
"toolchain_manifests": [
"android/build.gradle"
],
"largest_source_bytes": 10335,
"source_files_sampled": 44,
"oversized_source_files": 0,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 8429
},
"dependencies": {
"manifests": [
"android/build.gradle",
"example/package.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": [
"maven",
"npm"
],
"dependencies": [],
"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": 0,
"merged_prs": 2,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "jaoCorreia",
"commits": 53,
"avatar_url": "https://avatars.githubusercontent.com/u/101333652?v=4"
},
{
"type": "User",
"login": "dmfdiogo",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/5065247?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.981
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"publish.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"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": 10,
"reason": "2 out of 2 merged PRs checked by a CI test -- score normalized to 10",
"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 2/24 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no 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": 0,
"reason": "license file not 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": 10,
"reason": "packaging workflow detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"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": 0,
"reason": "security policy file not 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": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "35ff43d87954db6d90ab9421be3c6498cf073809",
"ran_at": "2026-07-23T01:27:12Z",
"aggregate_score": 3.3,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-17T18:59:46Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-13T12:00:06Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/jaoCorreia/react-native-blur",
"host": "github.com",
"name": "react-native-blur",
"owner": "jaoCorreia"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"security": 33,
"vitality": 67,
"community": 23,
"governance": 48,
"engineering": 61
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 67,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"commits_last_year": 60,
"human_commit_share": 1,
"days_since_last_push": 5,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "60 commits in the last year",
"points": 16,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 60
}
}
],
"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": 88,
"inputs": {
"releases_count": 6,
"latest_release_tag": "v0.2.1",
"releases_from_tags": true,
"days_since_latest_release": 5,
"mean_days_between_releases": 0.9
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "6 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 6
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0.9 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.9
}
}
],
"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": "critical",
"name": "Community & Adoption",
"value": 23,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": true,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "no license file detected",
"points": 0,
"status": "missed",
"details": [
{
"code": "license_absent",
"params": {}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 57,
"inputs": {
"packages": [
"react-native-cpp-blur"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 2574
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "2,574 downloads/month across npm",
"points": 45.5,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 2574,
"ecosystems": "npm"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"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": 48,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 15,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.981
},
"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 98% of commits",
"points": 0.4,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 98
}
}
],
"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 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"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": 48,
"inputs": {
"merged_prs": 2,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 1
},
"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": "2/3 decided PRs merged",
"points": 25.5,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 2,
"decided": 3
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 2/24 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": 45,
"inputs": {
"followers": 10,
"owner_type": "User",
"is_verified": null,
"owner_login": "jaoCorreia",
"public_repos": 22,
"account_age_days": 1595
},
"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": "10 followers of jaoCorreia",
"points": 7.5,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 10,
"login": "jaoCorreia"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "22 public repos, account ~4 yr old",
"points": 18.6,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 22
}
},
{
"code": "account_age_years",
"params": {
"years": 4
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"react-native-cpp-blur"
],
"ecosystems": "npm",
"any_deprecated": false,
"min_days_since_publish": 5
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on npm",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "npm"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 5 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 5
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "15 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 15
}
}
],
"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": "moderate",
"name": "Engineering Quality",
"value": 61,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "2 out of 2 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"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": 0,
"status": "missed",
"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": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 33,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 33,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 3.3
},
"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": "2 out of 2 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"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 2/24 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"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 not detected",
"points": 0,
"status": "missed",
"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 detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"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 not detected",
"points": 0,
"status": "missed",
"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": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"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": 3
},
"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": "good",
"name": "AI Readiness",
"value": 73,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.783,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 8429
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "CLAUDE.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "CLAUDE.md"
}
}
],
"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": "47 of 60 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 47,
"sampled": 60
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [
"tsconfig.json"
],
"agent_commit_share": 0.083,
"toolchain_manifests": [
"android/build.gradle"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "android/build.gradle (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "android/build.gradle"
}
}
],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "tsconfig.json"
}
}
],
"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": "5 of the last 60 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 5,
"sampled": 60
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "C++",
"largest_source_bytes": 10335,
"source_files_sampled": 44,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "C++ (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C++"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/44 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 44,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"example"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "example",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "example"
}
}
],
"max_points": 40
}
]
}
],
"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": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"deps.dev does not index npm:react-native-cpp-blur@0.2.1; advisories assessed against the repository dependency graph instead"
],
"report_type": "repository",
"generated_at": "2026-07-23T01:27:20.653781Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/j/jaoCorreia/react-native-blur.svg",
"full_name": "jaoCorreia/react-native-blur",
"license_state": "absent",
"license_spdx": null
}