Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 60,
"has_wiki": false,
"homepage": null,
"languages": {
"C": 33069,
"Makefile": 562
},
"pushed_at": "2021-11-25T23:01:44Z",
"created_at": "2021-05-09T19:37:02Z",
"owner_type": "User",
"updated_at": "2025-10-04T01:11:35Z",
"description": "A lightweight tar library written in ANSI C",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "C",
"significant_languages": [
"C"
]
},
"owner": {
"blog": null,
"name": null,
"type": "User",
"login": "amachronic",
"company": null,
"location": null,
"followers": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/67187631?v=4",
"created_at": "2020-06-20T09:23:12Z",
"is_verified": null,
"public_repos": 12,
"account_age_days": 2226
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2017-01-16T19:19:56Z"
}
],
"recent_commits": [
{
"oid": "1e921369b2c92bb219fcef84a37d4d2347794c0f",
"body": "Since mtar_write_file/dir_header() modify the cached header,\nthey should perform API checks to detect incorrect usage.",
"is_bot": false,
"headline": "Add missing API checks to convienience functions",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-25T20:29:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9b7c9b648d1eaf0f84eb5bd6d79c3863a9421be",
"body": "Rationale: it can be updated and passed to mtar_header_update(),\nsaving a temporary, and without poking around the struct fields.",
"is_bot": false,
"headline": "Return non-const header from mtar_get_header()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-25T20:29:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c747f93a4fa5119f9e384e5f43581d44ba3cdaa6",
"body": null,
"is_bot": false,
"headline": "Remove MTAR_ELAST",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-25T20:29:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea6ba61a209d8568a4acc19077e598b9c390332b",
"body": "This operation makes sense now that you can seek backward\nwhen writing a new archive member.",
"is_bot": false,
"headline": "Allow reading from archives that are opened for writing",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-25T20:29:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6252ed2174b6c5e4c985af0e1b03ac76a52115c0",
"body": "This allows library users to seek within the written portion of a\nfile and re-write previously written data. This also includes the\nheader, which removes the need to specify file size in advance if\nthe application can tolerate seeking back to update the header at\nthe end of writing, once the actual file size is known.",
"is_bot": false,
"headline": "Allow seek during writes",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-25T20:29:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7015e92a719c9a8cf46217d2901eceeff6ffbbc",
"body": null,
"is_bot": false,
"headline": "Add GCC version check for #pragma",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T15:58:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b3e047ec696b124db903212615ffeef2d15b2bc",
"body": null,
"is_bot": false,
"headline": "Renumber error codes to make them contiguous",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T14:22:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "750bde2dbd9cbc523119909e785ed43489982577",
"body": null,
"is_bot": false,
"headline": "Add mtar_tell_data() to return offset in data",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T14:21:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79040be9c09c04df8b577286991ae58a98cfe9c3",
"body": null,
"is_bot": false,
"headline": "Allow disabling API checks at compile time",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T14:11:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "862f4c1468debea982882759e0e50a7f49b00d79",
"body": "Return this error if using an archive in the wrong access mode,\nie. write to an archive opened for reading, or vice-versa.\nPreviously EAPI was returned which is probably not as useful.",
"is_bot": false,
"headline": "Add EACCESS error and use it",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T14:05:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e4b2750c0b43bc55d6ef1403b569e6ab6ac10c8",
"body": null,
"is_bot": false,
"headline": "Add API error checking to mtar_finalize()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T14:03:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5726a59e269aaabd45fca5e9b891d4ab8a4dc59",
"body": "This is hardly usable and doesn't handle directories or deal with\nfilenames properly. It's here mainly to test library code.",
"is_bot": false,
"headline": "Basic archive creation support in mtar",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T14:00:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a88dfe430bb40703a172e580156de031ccbd5987",
"body": "The code ends up simpler by having callers explicitly end the\ndata stream and finalize the archive instead of trying to do\nit implicitly. Also fix multiple write related bugs.",
"is_bot": false,
"headline": "Bugfixes and rework write API",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-06T13:55:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fda3309e0b1c9591e766c38dfbb7556ee9eb7467",
"body": null,
"is_bot": false,
"headline": "Fix a dumb mistake",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T19:38:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4868c7d4de5114757cc56de32a577851c0f68377",
"body": null,
"is_bot": false,
"headline": "Update the README",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:21:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2dd008245d42504c12c27d9731f2e1180162fe21",
"body": "They now return the number of bytes read or written or\na negative error code.",
"is_bot": false,
"headline": "Change read/write hook return value convention",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c48c0a8bdf896837b2860bb526c69280c9517c7",
"body": "However we don't use enum types in the code for ABI reasons.",
"is_bot": false,
"headline": "Give names to the enums",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c6fb31b432c784180eb08d576b8abd33dd6bb7a",
"body": "Rationale is similar to providing mtar_finalize(), although\nit is functionally useless, users may want to see the error\ncode for this operation separately.",
"is_bot": false,
"headline": "Add mtar_end_record()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd11de62c7c58576fc54735a52edb091e9b4c50f",
"body": "This occurs if the caller did not write out enough data\nwhen writing an archive member.",
"is_bot": false,
"headline": "Add an ETOOSHORT error and check for it",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f65a1a7213593ffc543e4c84d70338cbdec0fae",
"body": null,
"is_bot": false,
"headline": "Remove a redundant int return from mtar_init()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9acb29a6ca6945eab237c2c8a2b7c88d1a55bb30",
"body": "It's expected users will provide their own I/O hooks,\nso mtar_open() does not really belong in microtar.h.",
"is_bot": false,
"headline": "Move mtar_open() to another header",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7bdf1c4103315deca9b1f634cd147fbcdac4082b",
"body": null,
"is_bot": false,
"headline": "Build with -O2 by default",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "afb3b347d50128b80c568743292583329ac6fca3",
"body": null,
"is_bot": false,
"headline": "Suppress a 'helpful' GCC warning for some correct code",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b10115479c20e7f56f5fb438bcfe6151ef9e062",
"body": null,
"is_bot": false,
"headline": "Fix a typo",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T15:16:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "665c1c2f7f74178c16eb3a3ef0a7bf9afd25ecd8",
"body": null,
"is_bot": false,
"headline": "Add dependency information to Makefile",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "206ed3e826a0f18a56b3ada4a0176ac57c987a80",
"body": null,
"is_bot": false,
"headline": "Remove unnecessary includes",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c263753c440849c64c71f878bec70e438e8b0806",
"body": null,
"is_bot": false,
"headline": "Allow getting access from the API",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "385a359280639742f5c6354b9fbbb42d7b0bc19a",
"body": null,
"is_bot": false,
"headline": "Keep track of access mode to enforce API usage",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae05eb8fe08b54451e0badb809b11a527f15b28c",
"body": null,
"is_bot": false,
"headline": "Add write support (mostly)",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ece9bbe1e4d536d8b01e4d7425857d42900b1bfc",
"body": null,
"is_bot": false,
"headline": "Use 'ar cr' in Makefile",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "348f4c8aa4a0ffa041f6cef9a1f2eb0e57681098",
"body": "This allows users to seek within a file without accidentally\nskipping over the file's boundaries.",
"is_bot": false,
"headline": "Add mtar_seek_data()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e53e099d41eb0b069300de80a22cc9cda579df82",
"body": "The demo app can list contents and extract tar files using\nmicrotar, and serves to demonstrate the API.",
"is_bot": false,
"headline": "Add Makefile and demo app",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14b9bf948fc6fb591d3b1db104ff546612377fb5",
"body": "This saves library users from checking for two possibilities\nand mirrors what we're doing in header_to_raw().",
"is_bot": false,
"headline": "Report records with null type as regular files",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1bb9255348d02e2aff001ab60bdb51f8a60a9b87",
"body": "Returns true when the end of the current file has been reached.\nHandy when reading file data in a loop.",
"is_bot": false,
"headline": "Add mtar_eof_data()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a848bc3f3caac2cc56e5d9c7436e9950f87d6e93",
"body": "This is a very convienient way of iterating over a tar archive.\nIt can be used for search operations or data extraction and\nmtar_find() has been re-implemented using it.",
"is_bot": false,
"headline": "Add mtar_foreach()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "064171c0762f2cd8dbae4865d3e472e634f35bd2",
"body": "1. Iterating over archive members has been simplified. Reading\n headers is now implicit; mtar_rewind() jumps to the start\n of the archive and calling mtar_next() repeatedly returns\n each header in turn. Use mtar_get_header() to retrieve the\n header data.\n2. Reading file data works similarly \n[…]\nwork out how many bytes are remaining. The old\n wraparound behaviour was removed because it is not needed\n anymore and proved troublesome in practice.\n3. Writing data has not yet been implemented.",
"is_bot": false,
"headline": "Begin API redesign",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-05T00:24:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "05672174a5533c84c60c3be9bc85ac8f9a4eb571",
"body": "We don't need to round up to arbitrary multiples; using\nconstants should allow the compiler to optimize better.",
"is_bot": false,
"headline": "Specialize round_up -> round_up_512",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T23:50:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "572de1fe95fd71ae28499018529e1b31bacee02a",
"body": "This will only make a negligible difference on a proper OS\nand C library, but may assist simpler I/O implementations.",
"is_bot": false,
"headline": "Optimization to write_null_bytes()",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T23:50:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33a25800d55f2d15357832af392528bb860aa3bf",
"body": "Prefer accessing the raw data as a plain char array, this\nmakes the code immune to bugs induced by a compiler adding\npadding between struct fields. (The alternative is to add\nugliness to the header to ensure the struct is packed.)",
"is_bot": false,
"headline": "Remove mtar_raw_header_t",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T23:50:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff8eddfb9c6b0d1ada8dd325b34baa742e87aba5",
"body": "This was done wrongly, and in any event it is the user's\nresponsibility to use the right mode for the OS.",
"is_bot": false,
"headline": "Remove incorrect attempt to enforce binary file IO",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T20:12:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b65975df91d389b6c8e5584a5258669ec3680a2",
"body": "Moving stream ops into a separate struct lets them be\ndefined in a const object and shared between multiple\nmtar_t objects.\n\nAlso provide a new mtar_init() call which accepts the\nops struct and initializes the mtar_t object properly.",
"is_bot": false,
"headline": "Move stream ops into mtar_ops_t; separate open and init",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T20:08:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a6bf50265c94138b7144243b5ba0e57a9afcbf4",
"body": "This is frivolous, but I really don't like the current style.",
"is_bot": false,
"headline": "Restyle the source code",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T16:03:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "637e5f5ecbfdce9e5707297bfd900e9ca924aec4",
"body": null,
"is_bot": false,
"headline": "Paste full license text into copyright headers",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T16:03:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dbfb31822f6905d727c3a885d7d61dd3c1c280c",
"body": null,
"is_bot": false,
"headline": "Add myself to the copyright headers",
"author_name": "Aidan MacDonald",
"author_login": "amachronic",
"committed_at": "2021-11-04T15:58:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5f0913d487816403c5f07d87c272cd68a477766",
"body": null,
"is_bot": false,
"headline": "Reduce stack usage by avoiding large temporaries",
"author_name": "amachronic",
"author_login": "amachronic",
"committed_at": "2021-05-09T19:58:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef4db627eafc0f49bce781f4c28a87ec1b68a99f",
"body": null,
"is_bot": false,
"headline": "Fix security flaws and improve overall robustness",
"author_name": "amachronic",
"author_login": "amachronic",
"committed_at": "2021-05-09T19:58:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27076e1b9290e9c7842bb7890a54fcf172406c84",
"body": "Added c++ compilation support.",
"is_bot": false,
"headline": "Merge pull request #2 from deadcast/master",
"author_name": "rxi",
"author_login": "rxi",
"committed_at": "2017-08-31T18:12:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7c299304f5a5dc77163e7ce80b8d5ce658df5ec",
"body": null,
"is_bot": false,
"headline": "Added c++ compilation support.",
"author_name": "deadcast",
"author_login": "deadcast2",
"committed_at": "2017-08-31T15:37:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "956791770defa4d06696b30db276e88a09ad3538",
"body": null,
"is_bot": false,
"headline": "Version 0.1.0",
"author_name": "rxi",
"author_login": "rxi",
"committed_at": "2017-01-16T19:19:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2c5a07fcb05857d8b57d1f183e896dd13bfa555",
"body": null,
"is_bot": false,
"headline": "Updated copyright year; 2016 -> 2017",
"author_name": "rxi",
"author_login": "rxi",
"committed_at": "2017-01-16T19:15:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f09aeef4140c60be1eefe851aa88772e900c555c",
"body": null,
"is_bot": false,
"headline": "Fixed formatting on microtar.c license header comment",
"author_name": "rxi",
"author_login": "rxi",
"committed_at": "2016-12-18T16:28:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "032ef6b8df4409461b0866fd4f196e9906fe7f3d",
"body": null,
"is_bot": false,
"headline": "Changed mode 0664 to 0775 in mtar_write_dir_header()",
"author_name": "rxi",
"author_login": "rxi",
"committed_at": "2016-10-14T21:22:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35722984d026bb8e19cbb5e18cbf0e0c0eeb7d2d",
"body": null,
"is_bot": false,
"headline": "Fixed comment in README's `Reading` example",
"author_name": "rxi",
"author_login": "rxi",
"committed_at": "2016-10-01T16:44:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3208599abc2c35bbfb1c8d3169324a68481a2bcb",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "rxi",
"author_login": "rxi",
"committed_at": "2016-10-01T14:36:38Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 0,
"latest_release_at": "2017-01-16T19:19:56Z",
"latest_release_tag": "v0.1.0",
"releases_from_tags": true,
"days_since_last_push": 1703,
"active_weeks_last_year": 0,
"days_since_latest_release": 3477,
"mean_days_between_releases": null
},
"community": {
"has_readme": false,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": null,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": []
},
"popularity": {
"forks": 4,
"stars": 4,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2023-06-22",
"count": 1
},
{
"date": "2024-06-21",
"count": 1
},
{
"date": "2025-09-03",
"count": 1
},
{
"date": "2025-12-29",
"count": 1
}
],
"complete": true,
"collected": 4,
"total_forks": 4
},
"star_history": null,
"open_issues_and_prs": 1
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 18059,
"source_files_sampled": 5,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [],
"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": [],
"dependencies": [],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "amachronic",
"commits": 46,
"avatar_url": "https://avatars.githubusercontent.com/u/67187631?v=4"
},
{
"type": "User",
"login": "rxi",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/3920290?v=4"
},
{
"type": "User",
"login": "deadcast2",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/45521946?v=4"
}
],
"contributors_sampled": 3,
"top_contributor_share": 0.852
},
"quality_signals": {
"has_ci": false,
"has_tests": false,
"ci_workflows": [],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 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": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "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": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "1e921369b2c92bb219fcef84a37d4d2347794c0f",
"ran_at": "2026-07-26T05:42:49Z",
"aggregate_score": 2.6,
"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": null,
"oldest_open_prs": [
{
"number": 1,
"created_at": "2025-09-03T19:46:55Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": null,
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/amachronic/microtar",
"host": "github.com",
"name": "microtar",
"owner": "amachronic"
},
"metrics": {
"overall": {
"key": "overall",
"band": "critical",
"name": "Overall health",
"note": null,
"notes": [],
"value": 15,
"inputs": {
"security": 26,
"vitality": 13,
"community": 18,
"governance": 20,
"engineering": 1
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 13,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"commits_last_year": 0,
"human_commit_share": 1,
"days_since_last_push": 1703,
"active_weeks_last_year": 0
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1703 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "push_recency",
"params": {
"days": 1703
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "0/52 weeks with commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 0
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "0 commits in the last year",
"points": 0,
"status": "missed",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 0
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 32,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v0.1.0",
"releases_from_tags": true,
"days_since_latest_release": 3477,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 1
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 3477 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 3477
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "dormant",
"guards": [],
"signals": [
"scorecard_unmaintained"
],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": 1,
"unanswered_open_issues": 0,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 1703,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "no human commit for 1703 days, with nothing left unanswered",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_quiet",
"params": {
"days": 1703
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 18,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 12,
"inputs": {
"forks": 4,
"stars": 4,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "4 stars",
"points": 7.7,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 4
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "4 forks",
"points": 4,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 4
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": false,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"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
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "critical",
"name": "Sustainability & Governance",
"value": 20,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 16,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 3,
"top_contributor_share": 0.852
},
"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 85% of commits",
"points": 3.3,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 85
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "3 contributors",
"points": 4.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 3
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"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": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"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": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 45,
"inputs": {
"followers": 6,
"owner_type": "User",
"is_verified": null,
"owner_login": "amachronic",
"public_repos": 12,
"account_age_days": 2226
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "6 followers of amachronic",
"points": 6.1,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 6,
"login": "amachronic"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "12 public repos, account ~6 yr old",
"points": 20.1,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 12
}
},
{
"code": "account_age_years",
"params": {
"years": 6
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "critical",
"name": "Engineering Quality",
"value": 1,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"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": 1,
"inputs": {
"has_ci": false,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"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": "critical",
"name": "Documentation",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": false,
"has_docs_dir": false,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "critical",
"name": "Security",
"value": 26,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 26,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 12,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 6,
"scorecard_aggregate": 2.6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "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 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "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": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "at_risk",
"name": "AI Readiness",
"value": 40,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 22,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.407,
"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": "22 of 54 human commits state their intent (structured subject or explanatory body)",
"points": 21.7,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 22,
"sampled": 54
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 32,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"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": "C (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 54",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 54
}
}
],
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "C",
"largest_source_bytes": 18059,
"source_files_sampled": 5,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "C (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/5 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 5,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"Community profile unavailable",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-26T05:42:54.644137Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/amachronic/microtar.svg",
"full_name": "amachronic/microtar",
"license_state": "standard",
"license_spdx": "MIT"
}