Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 113,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 72013
},
"pushed_at": "2026-07-22T17:45:02Z",
"created_at": "2024-06-01T14:15:05Z",
"owner_type": "Organization",
"updated_at": "2026-07-22T17:44:20Z",
"description": null,
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "develop",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://lumeweb.com",
"name": "Lume Web",
"type": "Organization",
"login": "LumeWeb",
"company": null,
"location": "United States of America",
"followers": 26,
"avatar_url": "https://avatars.githubusercontent.com/u/98288234?v=4",
"created_at": "2022-01-23T22:19:27Z",
"is_verified": null,
"public_repos": 317,
"account_age_days": 1642
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.5.6",
"kind": "patch",
"published_at": "2026-07-22T17:45:03Z"
},
{
"tag": "v0.5.5",
"kind": "patch",
"published_at": "2026-07-17T13:31:24Z"
},
{
"tag": "v0.5.4",
"kind": "patch",
"published_at": "2025-12-30T20:46:43Z"
},
{
"tag": "v0.5.3",
"kind": "patch",
"published_at": "2025-07-10T18:20:39Z"
},
{
"tag": "v0.5.2",
"kind": "patch",
"published_at": "2025-07-08T20:40:51Z"
},
{
"tag": "v0.5.1",
"kind": "patch",
"published_at": "2025-05-28T04:12:17Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2025-05-27T10:01:03Z"
},
{
"tag": "v0.4.2",
"kind": "patch",
"published_at": "2025-05-26T18:56:02Z"
},
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2025-05-25T08:20:23Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2025-05-25T07:37:21Z"
},
{
"tag": "v0.3.4",
"kind": "patch",
"published_at": "2025-03-28T00:10:05Z"
},
{
"tag": "v0.3.3",
"kind": "patch",
"published_at": "2025-03-27T23:53:08Z"
},
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2025-03-27T23:41:26Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2025-03-27T23:34:22Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2025-03-27T22:57:09Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2025-03-27T22:20:01Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2025-03-27T18:18:10Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2025-03-08T22:15:52Z"
}
],
"recent_commits": [
{
"oid": "046a016a1e1c6c9d97280c8870b9e13b6d5291f9",
"body": "feat: add DecodeQuery and DecodeAndValidateQueryRequest",
"is_bot": false,
"headline": "Merge pull request #26 from LumeWeb/feat/decode-query",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2026-07-22T17:44:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97d5624fbb3827f9215c96d766e58000dac1a95f",
"body": "Adds query-param binding alternatives to Decode/DecodeAndValidateRequest.\nGET filter DTOs with `query` tags were failing with 400 EOF or 415\nUnsupported Media Type when requests arrived with chunked transfer\nencoding, because Echo's BindBody tried to decode an empty body.\nDecodeQuery bypasses body reading entirely by using BindQueryParams.",
"is_bot": false,
"headline": "feat: add DecodeQuery and DecodeAndValidateQueryRequest",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2026-07-22T17:41:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9e98af2e4539dca1ddafb8ed95c46bc90ae5f47",
"body": "…rshaler\n\nfix: RequestContext.Error() respects json.Marshaler interface",
"is_bot": false,
"headline": "Merge pull request #25 from LumeWeb/fix/error-method-respects-json-ma…",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2026-07-17T13:30:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1e1e85fb3f338b029e8933a7427d000330dd073",
"body": "When an error passed to Error() implements json.Marshaler, its\nMarshalJSON() output is now used as the response body instead of\nalways falling back to err.Error() as a plain string.\n\nThis fixes a mismatch where plugins (ipfs, billing, quota) defined\nstructured error types with MarshalJSON() returnin\n[…]\naler directly) produced\n{\"error\": {...}}. Now both paths are consistent.\n\nPlain errors (stdlib errors.New, fmt.Errorf, core.Error,\necho.HTTPError) are unaffected — they don't implement json.Marshaler.",
"is_bot": false,
"headline": "fix: RequestContext.Error() now respects json.Marshaler interface",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2026-07-17T13:25:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f7a237fc3b5cb681508a651c5b75904dee664f2f",
"body": "refactor: update validation error handling for zog v0.22",
"is_bot": false,
"headline": "Merge pull request #24 from LumeWeb/update-zog",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-12-30T20:41:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e3334b3b2ac56d122b9beb598d031db05ad0148",
"body": "- Changed validation error filtering from checking path length to checking message length\n- Root-level errors (empty path) are now properly captured instead of being silently dropped\n- Added tests for Validate() and ValidateRequest() to verify root-level error handling",
"is_bot": false,
"headline": "fix(validation): capture root-level validation errors",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-12-30T20:33:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7baed3e653e9ba4851dceb97fb30ddadefb28d2d",
"body": "- Remove deprecated `z.Issues.SanitizeMap()` usage\n- Use `issue.PathString()` and `issue.Message` directly\n- Fix field name casing in validation tests to match struct fields\n- Upgrade Go to 1.24.0 and toolchain to go1.24.3\n- Update zog to v0.22.0, echo/v4 to v4.14.0, and testify to v1.11.1\n- Add docker/go-units for size unit handling in tests",
"is_bot": false,
"headline": "refactor: update validation error handling for zog v0.22",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-12-30T20:11:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3c8af6fb4215c5ae58647339e7f6d4aec9f835f",
"body": "…ssume its already been decoded via r.Decode",
"is_bot": false,
"headline": "refactor: instead of fetching the body, use the validator as-is and a…",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-07-10T18:19:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6dae0fccce77e6516c9be4633032eba518b4858d",
"body": "* Introduces FileUploadResult struct to hold uploaded file metadata\n* Implements PrepareFileUpload method to handle both multipart and raw file uploads\n* Supports seekable and non-seekable sources\n* Validates against maximum upload size\n* Adds comprehensive tests for multipart, raw body, and size limit scenarios",
"is_bot": false,
"headline": "feat(http): add file upload handling with size validation",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-07-08T20:40:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd1bb58ad0837ec8ad14391b413a5d5f2310087e",
"body": "- Extracted request body reading logic into dedicated `readRequestBody()` method\n - Handles both cases with and without GetBody function\n - Implements seekable buffer for request body reuse\n- Updated `Decode()` method to use new body reading approach\n- Reorganized test cases in dto_test.go to clearly separate:\n - Tests with GetBody functionality\n - Tests without GetBody functionality\n - Error scenarios for both cases\n- Added helper functions for seekable buffer implementation",
"is_bot": false,
"headline": "refactor: improve request body handling and test organization",
"author_name": "Derrick Hammer (aider)",
"author_login": "pcfreak30",
"committed_at": "2025-05-28T04:11:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d8cc7f6249a889c28c5b83ab92d17d1bb1e5b4c",
"body": "…overage\n\n- Modified Encode() method to return errors instead of silently ignoring them\n- Added comprehensive test cases including:\n - Error scenarios (channel and function types)\n - Edge cases (unexported struct fields)\n - Proper content-type verification\n- Ensured consistent JSON formatting for empty slices/maps\n- Wpdate go.lumeweb.com/gswagger to v0.16.1",
"is_bot": false,
"headline": "refactor(http)!: improve JSON encoding with error handling and test c…",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-27T10:00:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05cc4b978aaa6e014a8285430986b5821c058618",
"body": "Removed the following files as they've been moved to the portal-router repository:\n- api_info.go (OpenAPI info builder)\n- api_info_test.go (tests for info builder)\n- swagger.go (Swagger schema generation)\n- util.go (Swagger definition utilities)\n\nThis cleanup removes duplicate code by consolidating all OpenAPI/Swagger\nrelated functionality in the portal-router repository.",
"is_bot": false,
"headline": "chore: cleanup - move OpenAPI/Swagger code to portal-router",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-26T18:55:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "808db2bb26d0fe3cddbfd3e42c2a6d3e6589a646",
"body": "- Replace Gorilla mux router with Echo framework throughout the codebase\n- Update context handling to use Echo's Context instead of custom RequestContext\n- Modify HTTP handlers and middleware to work with Echo's API\n- Remove Gorilla mux specific router and route builder code\n- Update tests to use Echo's testing utilities\n- Simplify error handling using Echo's built-in error handling\n- Remove unused dependencies related to Gorilla mux",
"is_bot": false,
"headline": "feat: migrate from Gorilla mux to Echo framework",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T16:02:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "732a7fc8dbda3c672c55c0af588935519e10b7d6",
"body": "- Remove WithVerification, With2FA, and WithMiddleware route options from route_builder.go\n- Remove associated test cases from route_builder_test.go\n- These middleware-related utilities are being moved to the dedicated middleware package\n- Part of ongoing effort to improve code organization and separation of concerns",
"is_bot": false,
"headline": "refactor(route): move middleware options to middleware package",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T08:19:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f94581160f81ca20f485d4dcd88f623f102ffaf6",
"body": null,
"is_bot": false,
"headline": "chore: update go.lumeweb.com/gswagger to v0.11.0",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T07:36:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cc33c4529dfc2513a3004a0c3e9a82e6fd3bf0f",
"body": "Add getter methods to APIInfoDefinition interface and apiInfo implementation:\n- GetTitle()\n- GetVersion()\n- GetDescription()\n- GetContact()\n- GetLicense()\n- GetTermsOfService()\n\nAlso includes corresponding test cases to verify the getter behavior,\nincluding handling of nil contact and license cases.",
"is_bot": false,
"headline": "feat: add getter methods to APIInfo interface",
"author_name": "Derrick Hammer (aider)",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T06:07:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a80f1033a6458fad9257e34091ea4c0cf0bf6578",
"body": "- Introduced APIInfoDefinition interface to standardize OpenAPI info building\n- Made apiInfo struct implement the new interface\n- Updated NewSwaggerRouter to accept APIInfoDefinition instead of concrete type\n- Maintained backward compatibility with existing usage",
"is_bot": false,
"headline": "feat: add APIInfoDefinition interface for OpenAPI metadata",
"author_name": "Derrick Hammer (aider)",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T05:56:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40a2b6cb2abcea1b929c50b73033d380475af3ca",
"body": "- Added type alias `Router` for swagger router to simplify type declarations\n- Updated `NewSwaggerRouter` and `RegisterRoutes` to use new Router type\n- Simplified `PaginatedResponseSwagger` function signature by removing unused reqBody parameter\n- Added helper function `GetRouter` to avoid repeating complex type parameters",
"is_bot": false,
"headline": "refactor(router): simplify router type usage and function signatures",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T05:41:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "576ceb578578bf3157e091846dfeb92b649e40ba",
"body": null,
"is_bot": false,
"headline": "fix: add missing operator descriptions",
"author_name": "Derrick Hammer (aider)",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T04:56:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "499796fd6ceaa52cf59a379207aa4fd242fe57c0",
"body": "Major architectural improvements to route handling:\n- Introduced builder pattern via RouteOptions for declarative route configuration\n- Decoupled middleware registration from route definitions\n- Simplified swagger documentation generation with composable options\n- Established clear patterns for authentication and validation\n- Improved testability through dependency injection",
"is_bot": false,
"headline": "refactor: implement builder pattern for route configuration",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T04:45:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13cddf14cc4f4573a3fdc71f8e8aff267234747a",
"body": "…Router dependency\n\n- Updated RegisterRoutes to get mux.Router from swagger router instead of requiring it as parameter\n- Updated router tests to match new function signature\n- Updated go.mod dependency version for gswagger",
"is_bot": false,
"headline": "refactor(router): simplify route registration by removing direct mux.…",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-25T01:18:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16556797e53ca667ce35692a83f131f08c1a01b6",
"body": "Introduce structured route definitions with built-in OpenAPI/Swagger\ndocumentation generation. Enables declarative API registration with:\n\n- Automatic OpenAPI spec generation\n- Route metadata and security configuration\n- Middleware integration points\n- Standardized response schemas\n- TUS protocol support",
"is_bot": false,
"headline": "feat: add OpenAPI route registration and documentation support",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-05-24T23:59:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fe296f7b81b8f3da52a2fa0e8a54b716d47af9c",
"body": null,
"is_bot": false,
"headline": "feat: add error handler support to EncodeResponse",
"author_name": "Derrick Hammer (aider)",
"author_login": "pcfreak30",
"committed_at": "2025-03-28T00:09:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ea34ff74f47e7d428262616617acf63e2848757",
"body": "Ensure request body reader is properly reset to start position after JSON decoding.\nThis allows subsequent handlers/middleware to re-read the request body if needed.\n\nThe seek operation prevents unexpected EOF errors when attempting to read the body\nmultiple times by resetting the reader's position after initial decoding.",
"is_bot": false,
"headline": "fix(http): reset request body reader after decoding",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-03-27T23:52:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d5b6233d8dcc5775c3c32b87aa2500efad04686",
"body": "…modify r.Request.Body\"\n\nThis reverts commit edda00b19856f8190b29025fa41f5b1ab5a54ac9.",
"is_bot": false,
"headline": "Revert \"fix: RequestContext.Decode needs to be a pointer receiver to …",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-03-27T23:52:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edda00b19856f8190b29025fa41f5b1ab5a54ac9",
"body": "….Request.Body",
"is_bot": false,
"headline": "fix: RequestContext.Decode needs to be a pointer receiver to modify r…",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-03-27T23:41:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44691baa18719ae809b539610fdb290d680bae6d",
"body": "- Guarantee body availability for all validation and middleware steps\n- Maintain standard request handling semantics\n- Prevent data loss in complex validation scenarios",
"is_bot": false,
"headline": "fix(http): preserve request body integrity through processing pipeline",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-03-27T23:34:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ff59f50d5562473ac7a3d27f6ad61c9d65b4ce8",
"body": " • Introduce ErrorHandler interface and DefaultErrorHandler implementation\n • Add VDOption pattern for configuring request processing behavior\n • Update DecodeAndValidateRequest to use error handlers and return boolean status\n • Ensure consistent JSON error responses for all error types\n • Modify te\n[…]\nses rather than returned errors\n\nBREAKING CHANGE: DecodeAndValidateRequest return signature changed from (M, error) to (M, bool). Callers must check the boolean return value instead of error handling.",
"is_bot": false,
"headline": "feat!: refactor error handling and add option pattern for DTO processing",
"author_name": "Derrick Hammer (aider)",
"author_login": "pcfreak30",
"committed_at": "2025-03-27T22:56:43Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "62a9cba7ec8ef29f8f53f12bed458d5a3acf1899",
"body": "- Add generic `DTORequest[M]`/`DTOResponse[M]` interfaces for type-safe conversions\n- Introduce `ValidationError` struct with field-specific error tracking\n- Implement structured JSON error responses for validation failures\n- Add request body restoration handling during validation\n- Update mock implementations to support generic interfaces\n- Expand test coverage for validation scenarios and edge cases",
"is_bot": false,
"headline": "feat!: implement generic DTO handling with structured validation errors",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-03-27T22:19:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78bef075673693a3d13d46947a614b1023ffc8c3",
"body": "- Implement RequestContext with enhanced HTTP utilities\n- Add JSON encoding/decoding with proper error handling\n- Introduce DTO pattern with automatic validation and mapping\n- Add comprehensive validation support using Zog schemas\n- Include error handling utilities\n- Add mock implementations for tes\n[…]\nrequest handling, validation, and data transfer objects. Key features include:\n- Automatic request/response DTO mapping\n- Schema-based validation\n- Consistent error handling\n- Mock support for testing",
"is_bot": false,
"headline": "feat: add validation, DTO mapping and error handling infrastructure",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2025-03-27T18:17:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dbffb601f2ab880a89009ef3c0ff50553176ba50",
"body": null,
"is_bot": false,
"headline": "feat: add support for time.Time in DecodeForm",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2024-09-07T10:56:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33d7fa57eebf7bb8cc485d095ef26f5168cfd13a",
"body": null,
"is_bot": false,
"headline": "feat: add support for []string in DecodeForm",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2024-09-07T08:40:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d270a528d861226a9e1e2ad0c3bbb69410edfe4",
"body": null,
"is_bot": false,
"headline": "refactor: rename module to use new vanity import go.lumeweb.com",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2024-06-16T19:26:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "504fd57b96e6848d61984af8a157297a64f104f5",
"body": null,
"is_bot": false,
"headline": "feat: initial version",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2024-06-01T14:47:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86cfeb32de3ed246c9218af23be37a92ca991fb7",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Derrick Hammer",
"author_login": "pcfreak30",
"committed_at": "2024-06-01T14:15:05Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 18,
"commits_last_year": 7,
"latest_release_at": "2026-07-22T17:45:03Z",
"latest_release_tag": "v0.5.6",
"releases_from_tags": false,
"days_since_last_push": 2,
"active_weeks_last_year": 2,
"days_since_latest_release": 2,
"mean_days_between_releases": 47
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": false,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "go.lumeweb.com/httputil",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": null,
"registry_url": "https://pkg.go.dev/go.lumeweb.com/httputil",
"is_deprecated": false,
"latest_version": "v0.5.6",
"repository_url": null,
"versions_count": 18,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-22T17:44:15Z",
"latest_version_yanked": null,
"days_since_latest_publish": 2
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 1,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 19224,
"source_files_sampled": 12,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "golang.org/x/crypto",
"direct": false,
"version": "v0.46.0",
"severity": "critical",
"ecosystem": "go",
"cvss_score": 10,
"advisory_ids": [
"GHSA-45gg-vh54-h5m9",
"GHSA-5cgq-3rg8-m6cv",
"GHSA-78mq-xcr3-xm33",
"GHSA-89gr-r52h-f8rx",
"GHSA-9m57-25v3-79x9",
"GHSA-f5wc-c3c7-36mc",
"GHSA-jppx-rxg9-jmrx",
"GHSA-q4h4-gmj2-qvw2",
"GHSA-qpw4-5x99-6vjp",
"GHSA-rm3j-f69w-wqmq"
],
"fixed_version": "0.52.0",
"advisory_count": 27,
"oldest_advisory_days": 63
},
{
"name": "golang.org/x/net",
"direct": false,
"version": "v0.48.0",
"severity": "moderate",
"ecosystem": "go",
"cvss_score": 6.5,
"advisory_ids": [
"GHSA-5cv4-jp36-h3mw",
"GO-2026-4918",
"GO-2026-5025",
"GO-2026-5026",
"GO-2026-5027",
"GO-2026-5028",
"GO-2026-5029",
"GO-2026-5030",
"GO-2026-5942"
],
"fixed_version": "1.26.3",
"advisory_count": 9,
"oldest_advisory_days": 78
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "v0.39.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5024"
],
"fixed_version": "0.44.0",
"advisory_count": 1,
"oldest_advisory_days": 63
},
{
"name": "golang.org/x/text",
"direct": false,
"version": "v0.32.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5970"
],
"fixed_version": "0.39.0",
"advisory_count": 1,
"oldest_advisory_days": 10
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"unknown": 2,
"critical": 1,
"moderate": 1
},
"advisory_count": 38,
"affected_count": 4,
"assessed_count": 21,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/Oudwins/zog",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.22.0"
},
{
"name": "github.com/labstack/echo/v4",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v4.14.0"
},
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.11.1"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/labstack/echo/v4",
"direct": true,
"version": "v4.14.0",
"ecosystem": "go"
},
{
"name": "github.com/oudwins/zog",
"direct": true,
"version": "v0.22.0",
"ecosystem": "go"
},
{
"name": "github.com/stretchr/testify",
"direct": true,
"version": "v1.11.1",
"ecosystem": "go"
},
{
"name": "github.com/davecgh/go-spew",
"direct": false,
"version": "v1.1.2-0.20180830191138-d8f796af33cc",
"ecosystem": "go"
},
{
"name": "github.com/docker/go-units",
"direct": false,
"version": "v0.5.0",
"ecosystem": "go"
},
{
"name": "github.com/kr/pretty",
"direct": false,
"version": "v0.3.1",
"ecosystem": "go"
},
{
"name": "github.com/labstack/gommon",
"direct": false,
"version": "v0.4.2",
"ecosystem": "go"
},
{
"name": "github.com/mattn/go-colorable",
"direct": false,
"version": "v0.1.14",
"ecosystem": "go"
},
{
"name": "github.com/mattn/go-isatty",
"direct": false,
"version": "v0.0.20",
"ecosystem": "go"
},
{
"name": "github.com/pmezard/go-difflib",
"direct": false,
"version": "v1.0.1-0.20181226105442-5d4384ee4fb2",
"ecosystem": "go"
},
{
"name": "github.com/rogpeppe/go-internal",
"direct": false,
"version": "v1.13.1",
"ecosystem": "go"
},
{
"name": "github.com/stretchr/objx",
"direct": false,
"version": "v0.5.2",
"ecosystem": "go"
},
{
"name": "github.com/valyala/bytebufferpool",
"direct": false,
"version": "v1.0.0",
"ecosystem": "go"
},
{
"name": "github.com/valyala/fasttemplate",
"direct": false,
"version": "v1.2.2",
"ecosystem": "go"
},
{
"name": "golang.org/x/crypto",
"direct": false,
"version": "v0.46.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/exp",
"direct": false,
"version": "v0.0.0-20251219203646-944ab1f22d93",
"ecosystem": "go"
},
{
"name": "golang.org/x/net",
"direct": false,
"version": "v0.48.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "v0.39.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/text",
"direct": false,
"version": "v0.32.0",
"ecosystem": "go"
},
{
"name": "gopkg.in/check.v1",
"direct": false,
"version": "v1.0.0-20201130134442-10cb98267c6c",
"ecosystem": "go"
},
{
"name": "gopkg.in/yaml.v3",
"direct": false,
"version": "v3.0.1",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 21,
"direct_count": 3,
"indirect_count": 18
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 25,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "pcfreak30",
"commits": 35,
"avatar_url": "https://avatars.githubusercontent.com/u/10647?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"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": 0,
"reason": "0 out of 25 merged PRs checked by a CI test -- score normalized to 0",
"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": 1,
"reason": "Found 3/25 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"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": 3,
"reason": "4 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 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": 0,
"reason": "24 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "046a016a1e1c6c9d97280c8870b9e13b6d5291f9",
"ran_at": "2026-07-24T19:35:57Z",
"aggregate_score": 2.1,
"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-22T17:44:17Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-22T17:44:16Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/LumeWeb/httputil",
"host": "github.com",
"name": "httputil",
"owner": "LumeWeb"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"security": 37,
"vitality": 66,
"community": 24,
"governance": 58,
"engineering": 30
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 66,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"commits_last_year": 7,
"human_commit_share": 1,
"days_since_last_push": 2,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 2 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 2
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "7 commits in the last year",
"points": 8.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 7
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "4 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 92,
"inputs": {
"releases_count": 18,
"latest_release_tag": "v0.5.6",
"releases_from_tags": false,
"days_since_latest_release": 2,
"mean_days_between_releases": 47
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "18 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 18
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 2 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 2
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~47 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 47
}
}
],
"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": "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": 2,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 2 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 2
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 24,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"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
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 58,
"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": 1,
"top_contributor_share": 1
},
"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 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"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": 72,
"inputs": {
"merged_prs": 25,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 1
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "25/26 decided PRs merged",
"points": 36.8,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 25,
"decided": 26
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 3/25 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"followers": 26,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "LumeWeb",
"public_repos": 317,
"account_age_days": 1642
},
"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": "26 followers of LumeWeb",
"points": 10.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 26,
"login": "LumeWeb"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "317 public repos, account ~4 yr old",
"points": 22,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 317
}
},
{
"code": "account_age_years",
"params": {
"years": 4
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"go.lumeweb.com/httputil"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 2
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 2 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 2
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "18 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 18
}
}
],
"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": "at_risk",
"name": "Engineering Quality",
"value": 30,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_ci": false,
"has_tests": true,
"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": 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": "0 out of 25 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 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": 10,
"status": "met",
"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": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 21,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 2.1
},
"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": "0 out of 25 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 3/25 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"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": "4 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 3",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file 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": "24 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 21 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 21
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 38,
"affected_packages": 4,
"assessed_packages": 21,
"unassessed_packages": 0,
"affected_by_severity": "critical 1, moderate 1, unknown 2",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 21,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 3
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 61,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.971,
"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": "34 of 35 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 34,
"sampled": 35
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 62,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod"
}
}
],
"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": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"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": "no agent-authored commits among the last 35",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 35
}
}
],
"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": "Go",
"largest_source_bytes": 19224,
"source_files_sampled": 12,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/12 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 12,
"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": [],
"report_type": "repository",
"generated_at": "2026-07-24T19:36:14.328034Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/l/LumeWeb/httputil.svg",
"full_name": "LumeWeb/httputil",
"license_state": "standard",
"license_spdx": "MIT"
}