Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"svg",
"image-procesing",
"rust"
],
"is_fork": false,
"size_kb": 36190,
"has_wiki": false,
"homepage": "https://www.visioncortex.org/vtracer/",
"languages": {
"HTML": 7671,
"Rust": 213002,
"Python": 2005,
"JavaScript": 23904
},
"pushed_at": "2026-07-25T16:32:25Z",
"created_at": "2020-10-23T03:58:35Z",
"owner_type": "Organization",
"updated_at": "2026-07-25T16:32:40Z",
"description": "Raster to Vector Graphics Converter",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "www.visioncortex.org",
"name": "Vision Cortex",
"type": "Organization",
"login": "visioncortex",
"company": null,
"location": null,
"followers": 104,
"avatar_url": "https://avatars.githubusercontent.com/u/72055406?v=4",
"created_at": "2020-09-29T01:35:48Z",
"is_verified": null,
"public_repos": 14,
"account_age_days": 2125
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "webapp.2024.5",
"kind": "other",
"published_at": "2024-06-05T10:37:09Z"
},
{
"tag": "0.6.4",
"kind": "patch",
"published_at": "2024-04-20T14:48:31Z"
},
{
"tag": "0.6.1",
"kind": "patch",
"published_at": "2023-09-23T10:15:26Z"
},
{
"tag": "0.6.0",
"kind": "minor",
"published_at": "2023-09-17T15:49:46Z"
},
{
"tag": "0.5.0",
"kind": "minor",
"published_at": "2022-10-09T10:56:32Z"
},
{
"tag": "0.4.0",
"kind": "minor",
"published_at": "2021-07-23T15:42:06Z"
},
{
"tag": "0.3.0",
"kind": "minor",
"published_at": "2021-01-24T13:36:32Z"
},
{
"tag": "0.2.1",
"kind": "patch",
"published_at": "2020-12-18T17:36:44Z"
},
{
"tag": "0.2.0",
"kind": "minor",
"published_at": "2020-11-15T08:31:36Z"
},
{
"tag": "0.1.1",
"kind": "patch",
"published_at": "2020-11-01T06:57:53Z"
},
{
"tag": "0.1.0",
"kind": "minor",
"published_at": "2020-10-31T11:07:27Z"
}
],
"recent_commits": [
{
"oid": "84ba49f0b9454b7d153b95d00d008f798ee08ca2",
"body": null,
"is_bot": false,
"headline": "upgrade webapp",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-25T16:21:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df94675494b37e0774e855d7cad2b8d7cda21b85",
"body": "A stateful, image-owning converter for the desktop tuning loop. The consumer\ncalls render / render_svg / render_with_progress with a fresh Config each\nframe and never reasons about cachability: Session compares the Config's\nSegmentKey (its clustering-relevant projection — color mode, color precision\n[…]\nSession output matches the one-shot pipeline for\nboth a reused-segmentation render and a re-segmented one.\n\nAdd desktop app screenshot referenced by the README\n\nCondense the unreleased changelog notes",
"is_bot": false,
"headline": "Add Session: transparent segmentation caching for interactive tuning",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-25T15:08:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "abe21658dc387ce88ea49bf7777aaa89dc892a8a",
"body": "Speckle removal moves out of the frontends into Segmentation::filter_speckle,\napplied in the finish phase. The color frontend now clusters with\ngood_min_area = 0 and the binary frontend emits every cluster, so the cached\nsegmentation retains all regions and the speckle threshold can be retuned via\nf\n[…]\nin, Node filterThin.\nUpdate the two reuse tests that encoded the wrong contract and the binary\nthreshold test to use BinaryFrontend::min_area. All goldens, equivalence,\nprogress, and reuse tests pass.",
"is_bot": false,
"headline": "Make filter_speckle a finish-phase filter, tunable without re-clustering",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-25T15:08:10Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5361a510113d0ef0154b729eeb0c1cbdcc56260e",
"body": "Pipeline::segment runs only the frontend (the expensive clustering) and\nreturns a reusable Segmentation; Pipeline::finish re-runs just color\nfitting, compositing, and optimization over a cached segmentation. This\nrestores the old stage-reuse workflow: cluster once, then tune curve-fit\nor color-fit p\n[…]\nclone).\n\nfinish clones the segmentation internally (color fitting mutates it), so\nthe cached copy stays pristine across many finish calls. Segmentation and\nVectorDoc are re-exported at the crate root.",
"is_bot": false,
"headline": "Split pipeline into cacheable segment + re-runnable finish",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T23:51:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a350e2532a84e5032653ce40a996db8465eb6b8b",
"body": "BinaryFrontend gains a Threshold enum: Fixed(u8) (now tunable, was\nhardcoded to 128) and Adaptive { window, t } — Bradley–Roth adaptive\nthresholding computed via visioncortex's SummedAreaTable, O(pixels)\nregardless of window size, for images with uneven lighting. Both use a\nshared (r+g+b)/3 intensit\n[…]\n package (binaryThreshold, adaptive, adaptiveWindow,\nadaptiveT). Adds tests covering fixed tunability and adaptive recovering\nlocally-dark marks under a brightness gradient that a global cutoff can't.",
"is_bot": false,
"headline": "Enrich binary thresholding: tunable fixed + Bradley–Roth adaptive",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T23:26:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "50042f477d7f76227b4e1e1960722178c6f4a2c6",
"body": "Pipeline::run_with_progress(img, &CancelToken, &mut on_progress)\npublishes per-phase Progress and aborts (Error::Cancelled) when the\ntoken trips. The color-cluster frontend now drives visioncortex's\nIncrementalBuilder so clustering reports fine-grained progress and\nchecks cancellation between batche\n[…]\nad, hand the UI a CancelToken clone for a cancel button, and\nforward progress to a bar. Replaces the old browser-only cooperative\ntick() API, which existed only because the main thread couldn't block.",
"is_bot": false,
"headline": "Add progress reporting and cancellation to the pipeline",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T23:25:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1e3895318eb3be8f1db8c6af2633406d70702c15",
"body": "Add package badges, a Packages overview table, and note the npm\nbuild's supported input formats (PNG/JPEG/GIF/BMP/WebP).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "README: surface the 1.0 packages (crates.io, PyPI, npm)",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T17:21:09Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "6e9b147bbda91737f3aa9b21bae15c126af144d8",
"body": "image-webp is pure Rust and compiles to wasm32; brings the npm\npackage's input formats closer to the CLI/Python surface. Wasm grows\n~115 KB (486 KB -> 601 KB). Also gitignore nodejs/.npmrc.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add WebP decoding to the Node/wasm package",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T17:09:50Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ec715f8c3cae30fece56d7910bf4f05fabb47d43",
"body": "- CHANGELOG: document the 1.0 framework rewrite\n- CI: build Python wheels only on release tags + manual dispatch,\n not on every push/PR\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Prepare 1.0.0-alpha.1 release",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T16:24:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "61ca5e59464cca3954f2105714fdd61383141ffb",
"body": "The spline fitter's least-squares cubic fit (flo_curves, f64) diverges by ULPs\nacross architectures: on x86_64 vs arm64 an arc decomposes into slightly\ndifferent control points, changing the SVG bytes with no real geometry change\n(verified with an x86_64 emulation: 0 pixels differ by >40, worst chan\n[…]\n) and diff pixels,\ntolerating a tiny fraction for sub-pixel boundary flips. Encoding-agnostic and\narchitecture-robust, while still catching genuine regressions (which move\nboundaries by whole pixels).",
"is_bot": false,
"headline": "Compare goldens by rendering, not byte-equality",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T15:47:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "87b9660ed31ede430df2aa7e8bf6cb9f0d4e7938",
"body": "Publish under the @visioncortex npm org. Add publishConfig.access=public for\nthe scoped package and update the install/require examples in both READMEs.",
"is_bot": false,
"headline": "Scope the npm package to @visioncortex/vtracer",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T15:30:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5743912da6caf75288e72038a42ecd919941bc5c",
"body": "vtracer only decodes input, but image's default features pulled a full AV1\nencoder (ravif/rav1e) and OpenEXR into the CLI binary and the Python wheel.\nRestrict to decode-only input formats (png, jpeg, gif, bmp, webp, tiff, ico,\npnm, tga, qoi). The release binary drops from ~3.23 MB to ~2.46 MB and builds\nfaster; supported inputs are unchanged in practice (avif decode was never in\nimage's defaults anyway).",
"is_bot": false,
"headline": "Trim image codec features in the CLI and Python crates",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T14:56:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "601447af6cb9018805b6298b178f7d730495a80f",
"body": "visioncortex 0.9.0 is on crates.io, so the workspace now uses the registry\nversion instead of the local `../visioncortex` path (a [patch.crates-io]\nexample is left in a comment for local visioncortex development).\n\nCI no longer needs the adjacent visioncortex checkout / published-crate caveats:\nrust.yml, python.yml, and release.yml build from a single checkout.",
"is_bot": false,
"headline": "Depend on published visioncortex 0.9.0; simplify CI",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T13:06:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8af376cb7c9a983f55d3b86385bf626d6a44f20f",
"body": "- rust.yml: modernize (checkout@v4), build/test the whole workspace, add a\n wasm32 core build check and a Node package build+test job. Checks out\n visioncortex next to the repo so the local path dependency resolves.\n- python.yml: build crates/vtracer-py (was the deleted cmdapp/); note that\n manylinux builds need visioncortex 0.9.0 published to crates.io.\n- release.yml: note the same visioncortex prerequisite for the CLI binary.",
"is_bot": false,
"headline": "Update CI for the 1.0 workspace layout",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T12:37:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42f94f0d1565c713563125dfec26232d522c832f",
"body": "nodejs/scripts/publish.mjs builds the wasm (wasm-pack), runs the smoke test,\nthen `npm publish` to a configurable registry (default a local one at\nhttp://localhost:4873; override via --registry= or NPM_REGISTRY). Supports\n--dry-run. Wired as `npm run publish:local`.",
"is_bot": false,
"headline": "Add local-publish script for the Node package",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T12:37:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "170b0322a470a8e7fd07b8e31a8f1150d7c3e71e",
"body": null,
"is_bot": false,
"headline": "Bump pyo3 to 0.26 in vtracer-py",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T12:37:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "749f0df0bd5de6331f13fa7c53f5070cc82b4967",
"body": "New nodejs/ package: a wasm-bindgen crate (vtracer-wasm) built with wasm-pack\nthat wraps the vtracer framework, plus a thin JS layer for file I/O. Image\ndecoding (png/jpeg/gif/bmp via the image crate) runs in wasm too, so the\npackage has zero native dependencies — no sharp, no node-gyp.\n\nNo separate\n[…]\nShips\nindex.d.ts types and a node smoke test. README updated.\n\nVerified: builds to wasm32-unknown-unknown; `node test.js` passes; output\nmatches the CLI/Python bindings (253 paths on the tank sample).",
"is_bot": false,
"headline": "Add nodejs: WebAssembly Node package with no native dependency",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T12:08:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f76aed78b2201283ef773850f7741e69044084e9",
"body": "New crates/vtracer-py (pyo3 + maturin, abi3) wrapping the vtracer framework.\nRather than a thin CLI-style wrapper, it exposes a mutable `Config` class with\nnamed properties and `bw`/`poster`/`photo` preset constructors, plus three\ninput paths — `convert_file`, `convert_bytes` (encoded image, optiona\n[…]\n excluded\nfrom the cargo workspace (pyo3 extension-module cdylibs don't link libpython,\nwhich breaks `cargo test` at the root) and is built with maturin. Ships a\nvtracer.pyi type stub. README updated.",
"is_bot": false,
"headline": "Add vtracer-py: Python bindings with a rich API",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T10:53:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "57d768e37e7d3c4aef076c1c6d687f87db709398",
"body": "Replace the 0.6.x help block with the current options (kebab-case flags,\npositional input/output, filter-speckle 0..=128), document the new\ncapabilities (positional args, seam-free mosaic cutout, fixed palette /\nauto-quantize, output optimization levels), and refresh the usage examples.",
"is_bot": false,
"headline": "Update README CLI docs for the 1.0 command app",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T10:39:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "837fde8aa44e4fdb582ecb0ddc9254c62939463a",
"body": "`vtracer in.png out.svg` now works alongside the `-i/--input` and\n`-o/--output` flags. Input/output become optional positionals plus the\nexisting flags; an explicit flag wins over the positional, and a clear error\nis shown if neither is given.",
"is_bot": false,
"headline": "Accept positional input/output args in the CLI",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T10:18:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35b4b6f84658fb059a45f91be576a29bf9c6eea6",
"body": "Ports visioncortex/vtracer#115: the command app capped filter_speckle at 16\nwhile the web app allowed up to 128. Match the web app's range.",
"is_bot": false,
"headline": "Raise filter_speckle CLI cap from 16 to 128",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T10:15:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3300f97e3780d92a96f58b053480ca8aca605f18",
"body": "…st suite\n\nFeature — mosaic spline segment fitter (crates/vtracer/src/mosaic/fit.rs):\nopen-path cubic fitting for boundary segments, reusing the now-public\nvisioncortex primitives (PathSimplify::limit_penalties for symmetric,\ngap-free staircase removal; open-path SubdivideSmooth::{find_corners,\nsubd\n[…]\n strict/seam-stroke mitigations aren't needed — the mosaic geometry is\nalready gapless and seam-free. Remove the no-op MosaicOptions struct and thread\nit out of Compositing::Mosaic and compose_mosaic.",
"is_bot": false,
"headline": "Add mosaic spline fitter; fix stacked holes & relative writer; add te…",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T10:13:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5ac90bb97c60b6fe9cab8fbf103011f4e1aa5516",
"body": "Documents the systematic verification that the 1.0 pipeline reproduces 0.6.x\nstacked output byte-for-byte: 475 parameter configurations (full per-parameter\nsweeps + randomized interactions, pixel/polygon/spline, color/bw), geometry\ncompared against the 0.6.x cmdapp reference at path-precision 8. Zer\n[…]\ngs found and fixed during\nverification (stacked hole-punching; relative-writer subpath origin), the\nintentional differences (compact SVG encoding, empty-path omission), and the\nreproduction procedure.",
"is_bot": false,
"headline": "Add stacked-mode equivalence report",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-24T09:50:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "17a9a6e6c58c7abfd959667065fe69b1a6e2d92a",
"body": "Implements the topological mosaic pipeline from docs/design/mosaic.md, turning\n`--hierarchical cutout` into a true gapless tessellation instead of the old\nre-cluster-and-retrace fake.\n\n LabelMap (flatten Segmentation top-down)\n → boundary-graph extraction (integer-exact: corners, node rule, seg\n[…]\nl split, T-junction, checkerboard pinch, nested\nrings, border-touching, and a pixel round-trip property test over 40 random\nmaps (rasterize composed faces == input label map). Plus two mosaic goldens.",
"is_bot": false,
"headline": "Add mosaic mode: seam-free tessellation (pixel + polygon)",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-23T22:26:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "572d9e5f82d5ff1d3b27ca1b7d2b0d0dbf340e54",
"body": "12 synthetic-image cases covering every stage: all three fitters, holes,\nregion adjacency, hierarchical layering, binary mode, fixed-palette and\nauto-quantize color fitting, and the three optimizer/writer levels.\n\nFixtures are built from in-code images, not the JPEG samples, because JPEG\ndecoding is image-crate-version dependent and would make goldens fragile.\nRegenerate after an intentional change with VTRACER_BLESS=1.",
"is_bot": false,
"headline": "Add golden-snapshot fixtures to lock in pipeline output",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-23T22:13:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "660dc4ff938638adf9554d0179f47362ad878284",
"body": "Superseded by crates/vtracer (framework) + crates/vtracer-cli. Verified the\nnew pipeline reproduces cmdapp's geometry and colors byte-for-byte (PNG always;\nJPEG once the image-crate decoder is held constant), so the old crate is\nretired. Drop its now-stale workspace exclude entry. Git history preserves it.",
"is_bot": false,
"headline": "Remove the 0.6.x cmdapp crate",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-23T22:08:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e46c9718453cb3aa59a5d118f34874820fb520a9",
"body": "Replace the 0.6.x single-pipeline crate with a stage-based framework, per\ndocs/design/. Implements Motivation pillars 1–4 (frontend, curve fitting,\ncolor fitting, optimizer); mosaic (5) and bindings are deferred.\n\nWorkspace:\n- crates/vtracer — the framework library (wasm-safe, no I/O)\n- crates/\n[…]\ngrouping\n\nvisioncortex is a path dependency on the local 0.9.0 checkout.\n\nVerified: 14 unit/integration tests pass; framework builds for\nwasm32-unknown-unknown; CLI output renders faithfully via rsvg.",
"is_bot": false,
"headline": "Rewrite into a vectorization framework (pillars 1–4)",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-23T21:27:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "913d0ac7e058a506f4f0b5ba9b788f1c1810d572",
"body": null,
"is_bot": false,
"headline": "New design",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-07-23T17:11:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd9cdb08e622f237eb05be553a020ddc9e4c47a1",
"body": null,
"is_bot": false,
"headline": "missing artifacts",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-03-23T15:30:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b2991be846819622e0554257863b20f9e6477d1",
"body": null,
"is_bot": false,
"headline": "0.6.12",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-02-04T12:21:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f24ea56a5259f0e19ad99bcdb56e8a9a3bba45d9",
"body": null,
"is_bot": false,
"headline": "use Trusted Publisher",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-02-04T11:47:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "592bee6c5ce92b2c5bdfebb1ec9dcba2597a077c",
"body": null,
"is_bot": false,
"headline": "Regenerate python workflow",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-02-04T10:11:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ebc358b48b3a21341f0410db7649a253621c4e5",
"body": null,
"is_bot": false,
"headline": "Bump CI",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-01-30T14:35:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a24c2f755e624095b901dedaccf518d4ed50364",
"body": null,
"is_bot": false,
"headline": "0.6.6",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2026-01-28T18:21:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8acb6bd911e160a55cd8a5503cfac54550a429f8",
"body": null,
"is_bot": false,
"headline": "bump fastrand",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2025-10-17T21:02:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "efa4351b2c4392584a7856628a13d0dfeb133967",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-09-27T09:43:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a46292b5ed7dabcb7197d16b428da98fa07570a8",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-09-27T09:43:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8889cbc7ea45cae1c660e59b3fc624af45de97b2",
"body": null,
"is_bot": false,
"headline": "Tweaks",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-09-26T11:59:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b379a02efa17948686855bbf6219d38bc1711c3",
"body": null,
"is_bot": false,
"headline": "Update svg.rs (#92)",
"author_name": "Wil Carmon",
"author_login": "wcarmon",
"committed_at": "2024-09-26T11:58:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2635d5b8749eedd9c936cca990a3e164260fc4ca",
"body": "added #[derive(Clone, Debug)]",
"is_bot": false,
"headline": "Update config.rs (#91)",
"author_name": "Wil Carmon",
"author_login": "wcarmon",
"committed_at": "2024-09-26T11:58:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6cf3e8705070eac561b42cf338a1b735fceedf3",
"body": null,
"is_bot": false,
"headline": "Refactor",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-05-30T09:04:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36b16de17a576bce773a431f7d1c93f612acb564",
"body": null,
"is_bot": false,
"headline": "Key transparent image in webapp",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-05-29T14:10:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7887c1ebf83c35515c56b442d0d9ebc91c5410e0",
"body": null,
"is_bot": false,
"headline": "Update readme",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-05-02T22:57:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6fdfec86109f6a94fd92a2ea64ddc8d03386779a",
"body": null,
"is_bot": false,
"headline": "python 0.6.11",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-05-02T21:58:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1aff9a300a3a130625e64a4eb7faa266bc0a969b",
"body": "* Allow conversion from python bytes\r\n\r\n* Update function name\r\n\r\n* Add convert_pixels_to_svg python function\r\n\r\n* Update README.md\r\n\r\n* Update README.md",
"is_bot": false,
"headline": "Add support for conversion from python bytes (#79)",
"author_name": "York",
"author_login": "wlyh514",
"committed_at": "2024-05-02T21:24:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac0a89e08a076ef3183a7f2d77d3a8c9c0faa7ab",
"body": null,
"is_bot": false,
"headline": "README",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-04-20T15:24:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b09f71a2b5e578758784c6ba6ac46c4950025569",
"body": null,
"is_bot": false,
"headline": "LICENSE",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-04-20T15:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4897dfe99a9a398d87136bbf979174e65b9b04f",
"body": null,
"is_bot": false,
"headline": "README",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-04-20T15:16:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4544ca740dbc9a24d551dd353f712abd352eb75d",
"body": null,
"is_bot": false,
"headline": "README",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-04-20T15:14:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d92586e33743dd31d56c9069d1114d14ac5fc4f",
"body": null,
"is_bot": false,
"headline": "Update CI script",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-04-20T14:52:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "725adf536483e4fa19b2f777bf09fcd7b5105aa8",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-30T14:46:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05f82c7bb59ebd4fb9051e509575346f9f834b7a",
"body": null,
"is_bot": false,
"headline": "Test",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T19:26:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7ac336b6d9d4f8f0f9a3963b4eb5d05e97a2ae7",
"body": null,
"is_bot": false,
"headline": "Add release script",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T19:06:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c03a8ffced1148c017b23b718cdd7866021dda6b",
"body": null,
"is_bot": false,
"headline": "0.6.4",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T19:01:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3223ba56eccdfc381a2fbf46849b5c99c9486081",
"body": null,
"is_bot": false,
"headline": "Upgrade dependency",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T18:59:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ddb47e1ad45bb7751ac63c55be9a4c8cac019ace",
"body": "This reverts commit c3012c6aefd2d06effcd7bdeeaa2b5500a63ab47.",
"is_bot": false,
"headline": "Revert \"Experiment with idealizing small circles\"",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T18:58:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "177797108d696576c39876378972c57e0bc9120d",
"body": null,
"is_bot": false,
"headline": "Changelog",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T18:57:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "370083f818d3abc0779db9a8869b5530b7b354ae",
"body": null,
"is_bot": false,
"headline": "0.6.3",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T18:57:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3012c6aefd2d06effcd7bdeeaa2b5500a63ab47",
"body": null,
"is_bot": false,
"headline": "Experiment with idealizing small circles",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2024-03-29T18:57:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2774fc06c9b47d55965267f41f848e9298e9cc23",
"body": null,
"is_bot": false,
"headline": "Reduce default path precision",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-11-12T23:05:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa7d021055f2ac735ba5ea3ad69e214bb7f6f656",
"body": null,
"is_bot": false,
"headline": "Readme",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-11-12T20:39:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc4392460101e8976189f274f6e8ced5fff73d1c",
"body": null,
"is_bot": false,
"headline": "cargo fmt",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-11-12T20:38:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dbbd100dffef4e331f801bfc78ae57a8b2568ed",
"body": null,
"is_bot": false,
"headline": "Bump",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-11-12T20:36:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37a2570f49486a9c5906460c6e335b762e25fbfb",
"body": "* Move path handling out of conversion functions\r\n\r\nThis lets us decouple file reading/writing from the actual conversion.\r\n\r\n* Move Config::from_args() to main.rs\r\n\r\n* Remove path support from Config\r\n\r\nInstead the input_path and output_path have to be passed to\r\nconvert_image_to_svg() manually.\r\n\r\n[…]\nimage from memory, without encoding it to\r\nPNG, writing it to a file, then reopening this file and decoding it\r\nusing the image crate.\r\n\r\nIt also allows the user to not write a SVG directly to a file.",
"is_bot": false,
"headline": "Add a function to do in-memory conversion (#59)",
"author_name": "linkmauve",
"author_login": "linkmauve",
"committed_at": "2023-11-12T20:28:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b2cd1a952402789b9f8c50264180804d400ff9bc",
"body": null,
"is_bot": false,
"headline": "Expose as rlib too",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-10-24T07:43:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac93bd4a51393c53ab22e9b218b5847c8c2acc93",
"body": null,
"is_bot": false,
"headline": "Edit",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-24T10:08:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e62f071b344d7824d46079e7c2480c1d3a884883",
"body": null,
"is_bot": false,
"headline": "Edit",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-23T10:52:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "884092a5b9bdab9c6db376e07065855919339806",
"body": null,
"is_bot": false,
"headline": "Edit",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-23T10:49:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f5a6c66485e9ddfd55486f8b4e6433664a5c4c8",
"body": null,
"is_bot": false,
"headline": "README",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-23T10:45:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "022018beb2f25dac585b9869baf9c9ced222b46e",
"body": null,
"is_bot": false,
"headline": "0.6.1",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-23T10:12:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc39c8c5cac74f9e4fb3a85898a12233782b935e",
"body": null,
"is_bot": false,
"headline": "README",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-23T10:06:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa1ab68ef35f8b47ccead6f8dc56a00f962a53dc",
"body": "* - Cargo.toml: add `crate-type = [\"cdylib\"] to [lib]; lacking this is what was causing the executable to be put in wheels\r\n- pyproject.toml: add \"python-binding\" to features for conditional compilation\r\n- main.rs: `cargo build` was failing for the vtracer executable; I think the previous import s\n[…]\n, but making explicit imports here solves things directly\r\n\r\n* re-enable linux builds; features are defined in the pyproject.toml now rather than in the workflow arguments\r\n\r\n* And publish Linux, too!",
"is_bot": false,
"headline": "Python Bindings. Again. No, really! (#55)",
"author_name": "Evan Jones",
"author_login": "etjones",
"committed_at": "2023-09-22T18:10:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b04738fd184c8b6419c410bdf06667458e30ecc2",
"body": null,
"is_bot": false,
"headline": "well",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T18:38:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1080c562cefcc345b668f5e8d5eadb73797383ea",
"body": null,
"is_bot": false,
"headline": "Try again",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T18:27:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e44e750721b94c232106bab22fbeab23d4b9c349",
"body": null,
"is_bot": false,
"headline": "try again",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T18:09:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05f5b51db0706f54ad74d12533907b71d5a6c97c",
"body": null,
"is_bot": false,
"headline": "Add xml comment",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-17T15:24:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68e8e7fdf127beba741d253a9386ed2268bac8c0",
"body": null,
"is_bot": false,
"headline": "Disable Linux for now",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-17T14:47:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5cce867f25682eeb4e58710df8644ff6b6ed119",
"body": null,
"is_bot": false,
"headline": "python again",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T16:59:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79dd451da1106991d8fad000b8413a9abfeff1d5",
"body": "From my knowledge they are no longer using vtracer",
"is_bot": false,
"headline": "Remove filestar",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T16:53:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f71dd47907940cf6256ab9c60c84ed5bfa725f0c",
"body": null,
"is_bot": false,
"headline": "python release",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T16:47:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "594125f737b7759186096955d1b7eb887007d74d",
"body": null,
"is_bot": false,
"headline": "Release notes",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T14:31:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93e946f3c27ed4c62f33a637c053537e257b1099",
"body": null,
"is_bot": false,
"headline": "python release",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T14:05:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "914e4ab87587d1ac1c9b61841a98b925ce2508f7",
"body": null,
"is_bot": false,
"headline": "python release",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T13:51:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95b8cbce6c040acf316f16766da7edae198782e4",
"body": null,
"is_bot": false,
"headline": "Rename workflow",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T13:40:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b49158f24c3b8f44b3686fee4a1629d2be93b77e",
"body": null,
"is_bot": false,
"headline": "Rename workflow",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T13:40:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f35df1f6b240eb038d7988cafcaa75e613f99307",
"body": null,
"is_bot": false,
"headline": "0.6.0",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-09-16T13:35:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4c7828049c534693d4a0ce5efdfd68d62954e19",
"body": "* Python bindings sep 2023 (#52)\r\n\r\n* Added maturin-based Python binding, to be deployed to https://pypi.org/project/vtracer/\r\n\r\n* Removed poetry mentions from pyproject.toml, added README_PY.md for use on PYPI\r\n\r\n* -> v0.6.1\r\n-> moved Python bindings to bottom of converter.rs\r\n\r\n* - README_PY.md \n[…]\nml is causing PyPI failure. Replacing with \"manylinux2014\"\r\n\r\n* bump to v0.7.0 in preparation for release from original vtracer repo\r\n\r\n---------\r\n\r\nCo-authored-by: Chris Tsang <chris.2y3@outlook.com>",
"is_bot": false,
"headline": "Python bindings configured correctly for PyPI releases (#54)",
"author_name": "Evan Jones",
"author_login": "etjones",
"committed_at": "2023-09-16T22:24:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d5dfa9fd732f79bbf8ca8b27a498f8e4b505c1bc",
"body": null,
"is_bot": false,
"headline": "Readme",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-07-24T14:55:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "685009bd21ce3e47abc382b113c019e264cc26bf",
"body": null,
"is_bot": false,
"headline": "Allow filter_speckle to be 0 #47",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2023-06-29T21:45:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "971bffa948c0c2894d02b1d0293eaa40b00dd02c",
"body": "Foot note: I was in touch with one of their engineers",
"is_bot": false,
"headline": "Mentions Aliyun",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2022-11-10T09:53:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7be6882d6be770ba2f0be507f577a5faca2ab54d",
"body": null,
"is_bot": false,
"headline": "Readme",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2022-10-13T16:32:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "386a0bcaab396dbdaf96f26ba1894bf89619aaa7",
"body": null,
"is_bot": false,
"headline": "Filestar",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2022-10-13T16:29:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82284ab470059b3daf080dc34fd924c7962127a3",
"body": null,
"is_bot": false,
"headline": "0.5.0",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2022-10-09T10:01:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ead104f0ce6d0bf8263b1e678a3009ed04712979",
"body": null,
"is_bot": false,
"headline": "Tweak should_key_image",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2022-10-09T09:21:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7219fd370d7f04ab76fa6a44cc13a2aa1b2a4b8",
"body": "* Support transparent color images\r\n\r\n* Remove unnecessary conditional\r\n\r\n* Add temporary git url to visioncortex dependency\r\n\r\n* Use fastrand instead of rand\r\n\r\n* Reduce the number of random iterations when keying\r\n\r\n* Add heuristic to avoid expensive calculations for non-transparent input\r\n\r\n* Add three additional special keying colours\r\n\r\n* Add transparency check to some inner pixels",
"is_bot": false,
"headline": "Alpha channel handling in CLI (#23)",
"author_name": "zachwolfe",
"author_login": "zachwolfe",
"committed_at": "2022-10-09T07:41:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2448dbb3ba54272b1ef31774a3651f8d0021c215",
"body": null,
"is_bot": false,
"headline": "fix docs typo (#25)",
"author_name": "Oskar Skuteli",
"author_login": "skuteli",
"committed_at": "2022-09-25T07:06:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9d9073b17595f53a09c50913cd5da44bd3c53c3",
"body": "Fix deprecation warning from converter.rs",
"is_bot": false,
"headline": "Merge pull request #16 from wolfgangmeyers/fix-converter-warning",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2022-02-11T13:45:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47091b0bf50cd4b74bc9f64dbd051a46b18f1778",
"body": null,
"is_bot": false,
"headline": "Fix deprecation warning from converter.ts",
"author_name": "Wolfgang Meyers",
"author_login": "wolfgangmeyers",
"committed_at": "2022-02-11T02:13:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8439cc995d5020dbfc13a8a6221ebc9841bef0cf",
"body": null,
"is_bot": false,
"headline": "Refactor path_precision",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2021-07-27T13:01:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b292ad35f57604d5b53716afd58a89585cbc43d",
"body": null,
"is_bot": false,
"headline": "Readme",
"author_name": "Chris Tsang",
"author_login": "tyt2y3",
"committed_at": "2021-07-24T08:48:47Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 11,
"commits_last_year": 32,
"latest_release_at": "2024-06-05T10:37:09Z",
"latest_release_tag": "webapp.2024.5",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 5,
"days_since_latest_release": 780,
"mean_days_between_releases": 145.8
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "vtracer-webapp",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"computer-graphics",
"svg",
"graphics"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/vtracer-webapp",
"is_deprecated": false,
"latest_version": "0.4.0",
"repository_url": "https://github.com/visioncortex/vtracer/",
"versions_count": 1,
"total_downloads": 1682,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 5,
"first_published_at": "2021-07-24T08:40:02.859085Z",
"latest_published_at": "2021-07-24T08:40:02.859085Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1827
},
{
"name": "@visioncortex/vtracer",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"svg",
"vectorization",
"raster",
"wasm",
"computer-graphics"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/@visioncortex/vtracer",
"is_deprecated": false,
"latest_version": "1.0.0-alpha.1",
"repository_url": "https://github.com/visioncortex/vtracer",
"versions_count": 1,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 1,
"monthly_downloads": 114,
"first_published_at": "2026-07-24T17:18:27.410000Z",
"latest_published_at": "2026-07-24T17:18:27.655000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 1
}
]
},
"popularity": {
"forks": 448,
"stars": 6470,
"watchers": 65,
"fork_history": {
"days": [
{
"date": "2020-10-26",
"count": 2
},
{
"date": "2020-10-30",
"count": 4
},
{
"date": "2020-11-02",
"count": 1
},
{
"date": "2020-11-28",
"count": 1
},
{
"date": "2021-02-01",
"count": 1
},
{
"date": "2021-04-22",
"count": 1
},
{
"date": "2021-06-24",
"count": 1
},
{
"date": "2021-06-26",
"count": 1
},
{
"date": "2021-07-14",
"count": 1
},
{
"date": "2021-07-21",
"count": 1
},
{
"date": "2021-08-16",
"count": 1
},
{
"date": "2021-09-13",
"count": 1
},
{
"date": "2021-10-13",
"count": 1
},
{
"date": "2021-10-19",
"count": 1
},
{
"date": "2021-11-27",
"count": 1
},
{
"date": "2021-11-30",
"count": 3
},
{
"date": "2021-12-01",
"count": 2
},
{
"date": "2021-12-02",
"count": 2
},
{
"date": "2021-12-03",
"count": 1
},
{
"date": "2021-12-06",
"count": 2
},
{
"date": "2021-12-07",
"count": 1
},
{
"date": "2021-12-10",
"count": 1
},
{
"date": "2021-12-12",
"count": 3
},
{
"date": "2021-12-15",
"count": 3
},
{
"date": "2021-12-19",
"count": 1
},
{
"date": "2021-12-27",
"count": 1
},
{
"date": "2022-01-03",
"count": 1
},
{
"date": "2022-01-10",
"count": 2
},
{
"date": "2022-01-12",
"count": 1
},
{
"date": "2022-01-14",
"count": 1
},
{
"date": "2022-01-19",
"count": 1
},
{
"date": "2022-01-22",
"count": 1
},
{
"date": "2022-01-29",
"count": 1
},
{
"date": "2022-02-11",
"count": 1
},
{
"date": "2022-02-15",
"count": 1
},
{
"date": "2022-02-23",
"count": 1
},
{
"date": "2022-02-28",
"count": 1
},
{
"date": "2022-03-04",
"count": 1
},
{
"date": "2022-03-18",
"count": 1
},
{
"date": "2022-03-19",
"count": 1
},
{
"date": "2022-03-27",
"count": 1
},
{
"date": "2022-04-23",
"count": 1
},
{
"date": "2022-05-07",
"count": 1
},
{
"date": "2022-05-08",
"count": 1
},
{
"date": "2022-05-12",
"count": 1
},
{
"date": "2022-05-18",
"count": 1
},
{
"date": "2022-06-09",
"count": 1
},
{
"date": "2022-06-18",
"count": 1
},
{
"date": "2022-06-22",
"count": 1
},
{
"date": "2022-07-23",
"count": 1
},
{
"date": "2022-07-27",
"count": 1
},
{
"date": "2022-07-28",
"count": 1
},
{
"date": "2022-08-03",
"count": 1
},
{
"date": "2022-08-26",
"count": 1
},
{
"date": "2022-09-04",
"count": 1
},
{
"date": "2022-09-23",
"count": 1
},
{
"date": "2022-09-24",
"count": 1
},
{
"date": "2022-09-26",
"count": 1
},
{
"date": "2022-09-30",
"count": 1
},
{
"date": "2022-11-28",
"count": 1
},
{
"date": "2022-12-06",
"count": 1
},
{
"date": "2022-12-09",
"count": 1
},
{
"date": "2022-12-12",
"count": 1
},
{
"date": "2022-12-15",
"count": 1
},
{
"date": "2022-12-22",
"count": 2
},
{
"date": "2023-01-11",
"count": 1
},
{
"date": "2023-01-12",
"count": 1
},
{
"date": "2023-01-17",
"count": 1
},
{
"date": "2023-01-20",
"count": 1
},
{
"date": "2023-01-25",
"count": 1
},
{
"date": "2023-01-26",
"count": 1
},
{
"date": "2023-02-10",
"count": 1
},
{
"date": "2023-02-16",
"count": 1
},
{
"date": "2023-02-26",
"count": 1
},
{
"date": "2023-02-28",
"count": 1
},
{
"date": "2023-03-06",
"count": 1
},
{
"date": "2023-03-08",
"count": 1
},
{
"date": "2023-03-17",
"count": 1
},
{
"date": "2023-04-20",
"count": 1
},
{
"date": "2023-05-03",
"count": 1
},
{
"date": "2023-05-17",
"count": 1
},
{
"date": "2023-05-22",
"count": 1
},
{
"date": "2023-06-11",
"count": 1
},
{
"date": "2023-06-12",
"count": 1
},
{
"date": "2023-06-19",
"count": 2
},
{
"date": "2023-07-02",
"count": 1
},
{
"date": "2023-07-05",
"count": 1
},
{
"date": "2023-07-07",
"count": 1
},
{
"date": "2023-07-27",
"count": 1
},
{
"date": "2023-08-08",
"count": 1
},
{
"date": "2023-08-17",
"count": 1
},
{
"date": "2023-09-07",
"count": 1
},
{
"date": "2023-09-11",
"count": 1
},
{
"date": "2023-09-14",
"count": 1
},
{
"date": "2023-09-20",
"count": 1
},
{
"date": "2023-09-21",
"count": 2
},
{
"date": "2023-09-25",
"count": 1
},
{
"date": "2023-10-13",
"count": 1
},
{
"date": "2023-10-15",
"count": 1
},
{
"date": "2023-10-20",
"count": 2
},
{
"date": "2023-11-10",
"count": 1
},
{
"date": "2023-11-13",
"count": 1
},
{
"date": "2023-11-17",
"count": 1
},
{
"date": "2023-11-19",
"count": 1
},
{
"date": "2023-11-20",
"count": 1
},
{
"date": "2023-11-23",
"count": 3
},
{
"date": "2023-11-24",
"count": 1
},
{
"date": "2023-11-30",
"count": 1
},
{
"date": "2023-12-01",
"count": 1
},
{
"date": "2023-12-05",
"count": 1
},
{
"date": "2023-12-20",
"count": 1
},
{
"date": "2024-01-04",
"count": 1
},
{
"date": "2024-01-05",
"count": 1
},
{
"date": "2024-01-06",
"count": 1
},
{
"date": "2024-01-11",
"count": 1
},
{
"date": "2024-01-13",
"count": 1
},
{
"date": "2024-01-14",
"count": 1
},
{
"date": "2024-01-15",
"count": 1
},
{
"date": "2024-01-16",
"count": 1
},
{
"date": "2024-01-22",
"count": 1
},
{
"date": "2024-01-24",
"count": 1
},
{
"date": "2024-01-31",
"count": 1
},
{
"date": "2024-02-02",
"count": 1
},
{
"date": "2024-02-03",
"count": 1
},
{
"date": "2024-02-04",
"count": 1
},
{
"date": "2024-02-18",
"count": 2
},
{
"date": "2024-02-26",
"count": 1
},
{
"date": "2024-03-01",
"count": 1
},
{
"date": "2024-03-04",
"count": 1
},
{
"date": "2024-03-07",
"count": 1
},
{
"date": "2024-03-10",
"count": 1
},
{
"date": "2024-03-20",
"count": 1
},
{
"date": "2024-03-21",
"count": 1
},
{
"date": "2024-03-27",
"count": 1
},
{
"date": "2024-04-06",
"count": 1
},
{
"date": "2024-04-11",
"count": 1
},
{
"date": "2024-04-14",
"count": 1
},
{
"date": "2024-04-15",
"count": 1
},
{
"date": "2024-04-18",
"count": 2
},
{
"date": "2024-04-20",
"count": 1
},
{
"date": "2024-04-22",
"count": 1
},
{
"date": "2024-05-10",
"count": 1
},
{
"date": "2024-05-13",
"count": 1
},
{
"date": "2024-05-14",
"count": 1
},
{
"date": "2024-05-18",
"count": 2
},
{
"date": "2024-05-21",
"count": 1
},
{
"date": "2024-05-25",
"count": 2
},
{
"date": "2024-05-27",
"count": 1
},
{
"date": "2024-06-02",
"count": 1
},
{
"date": "2024-06-04",
"count": 3
},
{
"date": "2024-06-10",
"count": 1
},
{
"date": "2024-06-12",
"count": 1
},
{
"date": "2024-06-15",
"count": 2
},
{
"date": "2024-06-16",
"count": 1
},
{
"date": "2024-06-18",
"count": 1
},
{
"date": "2024-06-19",
"count": 1
},
{
"date": "2024-06-22",
"count": 1
},
{
"date": "2024-06-26",
"count": 1
},
{
"date": "2024-07-03",
"count": 3
},
{
"date": "2024-07-07",
"count": 1
},
{
"date": "2024-07-10",
"count": 1
},
{
"date": "2024-07-15",
"count": 1
},
{
"date": "2024-07-17",
"count": 1
},
{
"date": "2024-07-31",
"count": 1
},
{
"date": "2024-08-06",
"count": 1
},
{
"date": "2024-08-09",
"count": 1
},
{
"date": "2024-08-14",
"count": 1
},
{
"date": "2024-08-15",
"count": 1
},
{
"date": "2024-08-28",
"count": 1
},
{
"date": "2024-09-03",
"count": 1
},
{
"date": "2024-09-07",
"count": 1
},
{
"date": "2024-09-08",
"count": 1
},
{
"date": "2024-09-12",
"count": 1
},
{
"date": "2024-09-18",
"count": 1
},
{
"date": "2024-09-23",
"count": 1
},
{
"date": "2024-09-25",
"count": 1
},
{
"date": "2024-09-26",
"count": 1
},
{
"date": "2024-10-08",
"count": 1
},
{
"date": "2024-10-16",
"count": 1
},
{
"date": "2024-10-22",
"count": 1
},
{
"date": "2024-10-27",
"count": 1
},
{
"date": "2024-10-28",
"count": 1
},
{
"date": "2024-10-29",
"count": 2
},
{
"date": "2024-10-31",
"count": 1
},
{
"date": "2024-11-04",
"count": 1
},
{
"date": "2024-11-08",
"count": 1
},
{
"date": "2024-11-09",
"count": 2
},
{
"date": "2024-11-11",
"count": 2
},
{
"date": "2024-11-15",
"count": 1
},
{
"date": "2024-11-19",
"count": 1
},
{
"date": "2024-11-22",
"count": 1
},
{
"date": "2024-11-25",
"count": 1
},
{
"date": "2024-12-08",
"count": 1
},
{
"date": "2024-12-09",
"count": 1
},
{
"date": "2024-12-11",
"count": 2
},
{
"date": "2024-12-13",
"count": 2
},
{
"date": "2024-12-17",
"count": 1
},
{
"date": "2024-12-19",
"count": 1
},
{
"date": "2024-12-23",
"count": 1
},
{
"date": "2024-12-26",
"count": 1
},
{
"date": "2024-12-28",
"count": 1
},
{
"date": "2025-01-01",
"count": 1
},
{
"date": "2025-01-02",
"count": 1
},
{
"date": "2025-01-06",
"count": 1
},
{
"date": "2025-01-17",
"count": 1
},
{
"date": "2025-01-20",
"count": 1
},
{
"date": "2025-02-04",
"count": 1
},
{
"date": "2025-02-08",
"count": 4
},
{
"date": "2025-02-14",
"count": 1
},
{
"date": "2025-02-15",
"count": 1
},
{
"date": "2025-02-16",
"count": 1
},
{
"date": "2025-02-17",
"count": 3
},
{
"date": "2025-02-20",
"count": 1
},
{
"date": "2025-02-21",
"count": 1
},
{
"date": "2025-02-27",
"count": 1
},
{
"date": "2025-03-02",
"count": 1
},
{
"date": "2025-03-03",
"count": 2
},
{
"date": "2025-03-13",
"count": 1
},
{
"date": "2025-03-18",
"count": 1
},
{
"date": "2025-03-22",
"count": 1
},
{
"date": "2025-03-26",
"count": 1
},
{
"date": "2025-03-27",
"count": 2
},
{
"date": "2025-03-28",
"count": 2
},
{
"date": "2025-03-30",
"count": 1
},
{
"date": "2025-04-02",
"count": 1
},
{
"date": "2025-04-03",
"count": 1
},
{
"date": "2025-04-06",
"count": 1
},
{
"date": "2025-04-07",
"count": 1
},
{
"date": "2025-04-12",
"count": 1
},
{
"date": "2025-04-14",
"count": 2
},
{
"date": "2025-04-18",
"count": 1
},
{
"date": "2025-04-22",
"count": 1
},
{
"date": "2025-04-25",
"count": 1
},
{
"date": "2025-04-27",
"count": 2
},
{
"date": "2025-05-05",
"count": 1
},
{
"date": "2025-05-11",
"count": 1
},
{
"date": "2025-05-19",
"count": 1
},
{
"date": "2025-05-26",
"count": 1
},
{
"date": "2025-05-28",
"count": 1
},
{
"date": "2025-06-16",
"count": 1
},
{
"date": "2025-06-24",
"count": 1
},
{
"date": "2025-06-26",
"count": 1
},
{
"date": "2025-06-29",
"count": 1
},
{
"date": "2025-07-01",
"count": 1
},
{
"date": "2025-07-04",
"count": 1
},
{
"date": "2025-07-08",
"count": 1
},
{
"date": "2025-07-09",
"count": 1
},
{
"date": "2025-07-20",
"count": 1
},
{
"date": "2025-07-24",
"count": 1
},
{
"date": "2025-07-30",
"count": 1
},
{
"date": "2025-08-01",
"count": 1
},
{
"date": "2025-08-03",
"count": 1
},
{
"date": "2025-08-12",
"count": 1
},
{
"date": "2025-08-20",
"count": 1
},
{
"date": "2025-08-22",
"count": 1
},
{
"date": "2025-08-25",
"count": 1
},
{
"date": "2025-08-29",
"count": 2
},
{
"date": "2025-09-02",
"count": 1
},
{
"date": "2025-09-04",
"count": 1
},
{
"date": "2025-09-08",
"count": 1
},
{
"date": "2025-09-20",
"count": 1
},
{
"date": "2025-09-23",
"count": 1
},
{
"date": "2025-09-24",
"count": 1
},
{
"date": "2025-09-25",
"count": 2
},
{
"date": "2025-09-28",
"count": 2
},
{
"date": "2025-09-29",
"count": 1
},
{
"date": "2025-10-03",
"count": 1
},
{
"date": "2025-10-05",
"count": 1
},
{
"date": "2025-10-10",
"count": 1
},
{
"date": "2025-10-15",
"count": 2
},
{
"date": "2025-10-16",
"count": 1
},
{
"date": "2025-10-28",
"count": 1
},
{
"date": "2025-10-29",
"count": 1
},
{
"date": "2025-10-31",
"count": 1
},
{
"date": "2025-11-03",
"count": 1
},
{
"date": "2025-11-04",
"count": 2
},
{
"date": "2025-11-11",
"count": 1
},
{
"date": "2025-11-15",
"count": 1
},
{
"date": "2025-11-18",
"count": 2
},
{
"date": "2025-11-20",
"count": 1
},
{
"date": "2025-11-22",
"count": 1
},
{
"date": "2025-11-26",
"count": 1
},
{
"date": "2025-11-28",
"count": 1
},
{
"date": "2025-11-30",
"count": 1
},
{
"date": "2025-12-04",
"count": 2
},
{
"date": "2025-12-08",
"count": 1
},
{
"date": "2025-12-12",
"count": 1
},
{
"date": "2025-12-15",
"count": 1
},
{
"date": "2025-12-20",
"count": 1
},
{
"date": "2025-12-29",
"count": 1
},
{
"date": "2025-12-30",
"count": 2
},
{
"date": "2026-01-03",
"count": 2
},
{
"date": "2026-01-07",
"count": 1
},
{
"date": "2026-01-13",
"count": 1
},
{
"date": "2026-01-14",
"count": 1
},
{
"date": "2026-01-16",
"count": 1
},
{
"date": "2026-01-21",
"count": 1
},
{
"date": "2026-01-25",
"count": 1
},
{
"date": "2026-01-27",
"count": 1
},
{
"date": "2026-01-30",
"count": 2
},
{
"date": "2026-02-03",
"count": 1
},
{
"date": "2026-02-06",
"count": 1
},
{
"date": "2026-02-08",
"count": 1
},
{
"date": "2026-02-09",
"count": 1
},
{
"date": "2026-02-12",
"count": 1
},
{
"date": "2026-02-14",
"count": 1
},
{
"date": "2026-02-19",
"count": 1
},
{
"date": "2026-02-20",
"count": 1
},
{
"date": "2026-02-21",
"count": 1
},
{
"date": "2026-02-24",
"count": 1
},
{
"date": "2026-02-25",
"count": 2
},
{
"date": "2026-02-27",
"count": 1
},
{
"date": "2026-03-12",
"count": 1
},
{
"date": "2026-03-16",
"count": 1
},
{
"date": "2026-03-17",
"count": 1
},
{
"date": "2026-03-21",
"count": 1
},
{
"date": "2026-03-22",
"count": 1
},
{
"date": "2026-03-24",
"count": 1
},
{
"date": "2026-03-28",
"count": 1
},
{
"date": "2026-03-30",
"count": 1
},
{
"date": "2026-04-04",
"count": 1
},
{
"date": "2026-04-06",
"count": 1
},
{
"date": "2026-04-08",
"count": 1
},
{
"date": "2026-04-09",
"count": 1
},
{
"date": "2026-04-10",
"count": 1
},
{
"date": "2026-04-13",
"count": 2
},
{
"date": "2026-04-14",
"count": 1
},
{
"date": "2026-04-15",
"count": 1
},
{
"date": "2026-04-18",
"count": 1
},
{
"date": "2026-04-30",
"count": 1
},
{
"date": "2026-05-06",
"count": 1
},
{
"date": "2026-05-08",
"count": 1
},
{
"date": "2026-05-11",
"count": 2
},
{
"date": "2026-05-12",
"count": 2
},
{
"date": "2026-05-13",
"count": 2
},
{
"date": "2026-05-14",
"count": 2
},
{
"date": "2026-05-20",
"count": 2
},
{
"date": "2026-05-23",
"count": 2
},
{
"date": "2026-05-27",
"count": 1
},
{
"date": "2026-06-02",
"count": 1
},
{
"date": "2026-06-04",
"count": 2
},
{
"date": "2026-06-08",
"count": 1
},
{
"date": "2026-06-11",
"count": 1
},
{
"date": "2026-06-13",
"count": 1
},
{
"date": "2026-06-14",
"count": 1
},
{
"date": "2026-06-15",
"count": 2
},
{
"date": "2026-06-16",
"count": 4
},
{
"date": "2026-06-17",
"count": 3
},
{
"date": "2026-06-18",
"count": 3
},
{
"date": "2026-06-20",
"count": 2
},
{
"date": "2026-06-21",
"count": 1
},
{
"date": "2026-06-24",
"count": 1
},
{
"date": "2026-06-26",
"count": 2
},
{
"date": "2026-07-01",
"count": 1
},
{
"date": "2026-07-03",
"count": 2
},
{
"date": "2026-07-07",
"count": 1
},
{
"date": "2026-07-11",
"count": 2
},
{
"date": "2026-07-12",
"count": 1
},
{
"date": "2026-07-13",
"count": 2
},
{
"date": "2026-07-15",
"count": 1
},
{
"date": "2026-07-17",
"count": 1
},
{
"date": "2026-07-18",
"count": 2
},
{
"date": "2026-07-19",
"count": 3
},
{
"date": "2026-07-21",
"count": 2
},
{
"date": "2026-07-22",
"count": 1
},
{
"date": "2026-07-23",
"count": 1
},
{
"date": "2026-07-25",
"count": 1
}
],
"complete": true,
"collected": 447,
"total_forks": 448
},
"star_history": null,
"open_issues_and_prs": 5
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"samples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml",
"crates/vtracer-cli/Cargo.toml",
"crates/vtracer-py/Cargo.toml",
"crates/vtracer/Cargo.toml",
"nodejs/Cargo.toml",
"webapp/Cargo.toml"
],
"largest_source_bytes": 338037,
"source_files_sampled": 59,
"oversized_source_files": 4,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml",
"nodejs/Cargo.toml",
"nodejs/package.json",
"webapp/Cargo.toml"
],
"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": [
"crates",
"npm"
],
"dependencies": [
{
"name": "vtracer",
"manifest": "nodejs/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.0-alpha.1"
},
{
"name": "wasm-bindgen",
"manifest": "nodejs/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "serde",
"manifest": "nodejs/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "serde-wasm-bindgen",
"manifest": "nodejs/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.6"
},
{
"name": "image",
"manifest": "nodejs/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.25"
},
{
"name": "cfg-if",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "console_log",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "wasm-bindgen",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "serde",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "serde_json",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "visioncortex",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.9"
},
{
"name": "console_error_panic_hook",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.1"
},
{
"name": "web-sys",
"manifest": "webapp/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3"
}
],
"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": 5,
"merged_prs": 12,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 9
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "tyt2y3",
"commits": 152,
"avatar_url": "https://avatars.githubusercontent.com/u/1782664?v=4"
},
{
"type": "User",
"login": "etjones",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/615213?v=4"
},
{
"type": "User",
"login": "shpun817",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/47468266?v=4"
},
{
"type": "User",
"login": "wcarmon",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/7406775?v=4"
},
{
"type": "User",
"login": "bobbyng626",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/67236456?v=4"
},
{
"type": "User",
"login": "skuteli",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/2379398?v=4"
},
{
"type": "User",
"login": "wolfgangmeyers",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1783800?v=4"
},
{
"type": "User",
"login": "wlyh514",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/57304851?v=4"
},
{
"type": "User",
"login": "linkmauve",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/7755816?v=4"
},
{
"type": "User",
"login": "zachwolfe",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/72848430?v=4"
}
],
"contributors_sampled": 10,
"top_contributor_share": 0.927
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"python.yml",
"release.yml",
"rust.yml"
],
"has_docs_dir": true,
"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": 9,
"reason": "binaries present in source code",
"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": null,
"reason": "no pull request found",
"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 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 3 contributing companies or organizations -- score normalized to 10",
"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": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "28 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"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": 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": "no SAST tool detected",
"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": 0,
"reason": "Project has not signed or included provenance with any releases.",
"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": "84ba49f0b9454b7d153b95d00d008f798ee08ca2",
"ran_at": "2026-07-25T17:50:15Z",
"aggregate_score": 3.7,
"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-25T16:33:22Z",
"oldest_open_prs": [
{
"number": 102,
"created_at": "2025-01-20T20:45:17Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 114,
"created_at": "2025-10-05T13:34:40Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 115,
"created_at": "2025-11-20T03:01:47Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 118,
"created_at": "2026-02-08T05:41:09Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 124,
"created_at": "2026-07-19T21:06:43Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2024-09-26T11:58:43Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/visioncortex/vtracer",
"host": "github.com",
"name": "vtracer",
"owner": "visioncortex"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"security": 37,
"vitality": 54,
"community": 63,
"governance": 54,
"engineering": 72
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 54,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"commits_last_year": 32,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 5
},
"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": "5/52 weeks with commits",
"points": 3.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 5
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "32 commits in the last year",
"points": 13.6,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 32
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "28 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"releases_count": 11,
"latest_release_tag": "webapp.2024.5",
"releases_from_tags": false,
"days_since_latest_release": 780,
"mean_days_between_releases": 145.8
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "11 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 11
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 780 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 780
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~145.8 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 145.8
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 63,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "excellent",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"forks": 448,
"stars": 6470,
"watchers": 65,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "6,470 stars",
"points": 60,
"status": "met",
"details": [
{
"code": "stars",
"params": {
"count": 6470
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "448 forks",
"points": 22.1,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 448
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "65 watchers",
"points": 10,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 65
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"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": "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": 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": "at_risk",
"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": 35,
"inputs": {
"packages": [
"vtracer-webapp",
"@visioncortex/vtracer"
],
"dependents": null,
"ecosystems": "crates, npm",
"total_downloads": 1682,
"monthly_downloads": 119
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "119 downloads/month across crates, npm",
"points": 27.7,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 119,
"ecosystems": "crates, 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": "moderate",
"name": "Sustainability & Governance",
"value": 54,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 34,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 10,
"top_contributor_share": 0.927
},
"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 93% of commits",
"points": 1.6,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 93
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "10 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 10
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 10,
"status": "met",
"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": 41,
"inputs": {
"merged_prs": 12,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 9
},
"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": "12/21 decided PRs merged",
"points": 21.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 12,
"decided": 21
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"followers": 104,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "visioncortex",
"public_repos": 14,
"account_age_days": 2125
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "104 followers of visioncortex",
"points": 14.5,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 104,
"login": "visioncortex"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "14 public repos, account ~5 yr old",
"points": 20.2,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 14
}
},
{
"code": "account_age_years",
"params": {
"years": 5
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "good",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"packages": [
"vtracer-webapp",
"@visioncortex/vtracer"
],
"ecosystems": "crates, npm",
"any_deprecated": false,
"min_days_since_publish": 1
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "2 package(s) on crates, npm",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 2,
"ecosystems": "crates, npm"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 1 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "1 published versions",
"points": 4,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 1
}
}
],
"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": 72,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"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": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"topics": [
"svg",
"image-procesing",
"rust"
],
"has_wiki": false,
"homepage": "https://www.visioncortex.org/vtracer/",
"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": "https://www.visioncortex.org/vtracer/",
"points": 15,
"status": "met",
"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": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"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": 37,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 37,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.7
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "binaries present in source code",
"points": 6.8,
"status": "partial",
"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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 2.5,
"status": "met",
"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 detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "28 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"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": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"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": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"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": 11
},
"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": 51,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 19,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.35,
"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": "35 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 18.7,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 35,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 62,
"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": [],
"agent_commit_share": 0.03,
"toolchain_manifests": [
"Cargo.toml",
"crates/vtracer-cli/Cargo.toml",
"crates/vtracer-py/Cargo.toml",
"crates/vtracer/Cargo.toml",
"nodejs/Cargo.toml",
"webapp/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, crates/vtracer-cli/Cargo.toml, crates/vtracer-py/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, crates/vtracer-cli/Cargo.toml, crates/vtracer-py/Cargo.toml"
}
}
],
"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": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"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": "3 of the last 100 commits agent-authored or agent-credited",
"points": 6,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 3,
"sampled": 100
}
}
],
"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": 96,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 338037,
"source_files_sampled": 59,
"oversized_source_files": 4
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "4/59 source files over 60KB",
"points": 51.3,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 59,
"oversized": 4
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"samples"
],
"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": "samples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "samples"
}
}
],
"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": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"Could not fetch crates package 'vtracer-wasm' from its registry",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-25T17:50:26.053782Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/v/visioncortex/vtracer.svg",
"full_name": "visioncortex/vtracer",
"license_state": "standard",
"license_spdx": "MIT"
}