Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 407,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 238532,
"Shell": 1903,
"Makefile": 1362
},
"pushed_at": "2026-07-13T12:34:14Z",
"created_at": "2026-06-05T09:41:02Z",
"owner_type": "User",
"updated_at": "2026-07-13T12:34:14Z",
"description": "Thai SEC API V2 Client",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": null,
"type": "User",
"login": "jwitmann",
"company": null,
"location": null,
"followers": 0,
"avatar_url": "https://avatars.githubusercontent.com/u/44364865?v=4",
"created_at": "2018-10-22T11:07:15Z",
"is_verified": null,
"public_repos": 5,
"account_age_days": 2835
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2026-07-13T12:26:06Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2026-06-10T09:34:18Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-06-09T14:17:52Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-06-09T13:34:32Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2026-06-08T09:56:17Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-06-05T16:09:07Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-06-05T13:10:34Z"
}
],
"recent_commits": [
{
"oid": "50360dba6ec87f74ae82a59541d1b57537ae545a",
"body": "Canonicalize the fund abbreviation (short-code-equivalent identifier) at the\nclient boundary so downstream consumers don't have to normalize it. This is\nconsistent with the case-normalization done in thai-market-data/aimc,\nfinnomena-go, wealthmagik-go, and tisco-go. ThaiFA's SEC risk mapping keys on\nProjAbbrName, so an upstream uppercase keeps identifiers consistent across\nrepos without changing behavior (the mapping was already upper-cased on both\nsides in ThaiFA).",
"is_bot": false,
"headline": "normalize ProjAbbrName to uppercase in GetFundProfiles",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-07-13T12:26:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86773cb1cc37c228a0d83331fb40bfd20c721155",
"body": null,
"is_bot": false,
"headline": "chore: organize OpenAPI specs into docs/openapi/",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-10T09:55:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0434108c797c34db0a3451f186490336177fab76",
"body": "Removed:\n- docs/SEC Open Data.htm (148KB saved webpage)\n- docs/v2-schemas/*.json (16 raw API response dumps, ~2.8MB)\n\nKept:\n- OpenAPI specs (digital-asset-api.json, one-report-api.json)\n- All API documentation markdown files\n\nDocs folder: 3.2MB → 244KB",
"is_bot": false,
"headline": "chore: remove unreferenced raw data files from docs/",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-10T09:55:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09cba3bde1b3461245dc15927d110c50cfe54c87",
"body": "- README.md: document FetchAllBondIssuers, FindBondIssuer, FetchAllBondFeatures,\n FetchAllPVDs, FindPVD, FetchAllPVDFundInfo helpers\n- API-Bond.md: add Convenience Helpers section\n- API-PVD.md: add Convenience Helpers section\n- Update project structure to include helpers_bond.go and helpers_pvd.go",
"is_bot": false,
"headline": "docs: add convenience helpers for Bond and PVD APIs",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-10T09:34:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bcc22428c8b8b0379d3d5f882ba62b837c3f6cc",
"body": "…Bond/PVD\n\n- Collapse 23 copy-pasted One Report methods into fetchOneReport[T] generic\n helper (one_report_service.go: ~250 lines saved)\n- Add helpers_bond.go: FetchAllBondIssuers, FindBondIssuer, FetchAllBondFeatures\n- Add helpers_pvd.go: FetchAllPVDs, FindPVD, FetchAllPVDFundInfo\n- All tests pass, linters clean",
"is_bot": false,
"headline": "refactor: extract fetchOneReport[T] helper and add FetchAllPages for …",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-10T09:31:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae17f1cef07694c963fb8db7e9988933f4ea8aea",
"body": "- Extract readResponse helper in client.go to deduplicate getAbsolute/postAbsolute\n- Extract setPeriodRange helper in fund_service.go and apply to bond/pvd services\n- Convert main.go 21-case switch to command dispatch table (reduces complexity)\n- Split monolithic API.md into 6 category-specific docs (Fund, Bond, PVD,\n LicenseCheck, OneReport, DigitalAsset) for easier navigation",
"is_bot": false,
"headline": "refactor: extract helpers and split API docs by category",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-10T09:01:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d07f71179697399dfe389337fb698c921569d1a5",
"body": "Complete implementation of all discovered API categories:\n\nFund APIs (21 endpoints) - Already implemented\n- General info, factsheet, daily info, outstanding\n\nNew implementations:\n- Bond APIs (6 endpoints): ListBondIssuers, GetBondFeatures,\n GetBondCreditRatings, GetBondOutstanding, GetBondRelatedPa\n[…]\n Report and Digital Asset\n- Absolute URL request support in client (doAbsolute, getAbsolute, postAbsolute)\n- Updated README with complete endpoint coverage\n\nTotal: 82 endpoints across 6 API categories",
"is_bot": false,
"headline": "feat: implement all SEC Open Data APIs (82 endpoints)",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-10T08:19:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8eb4a49cb9b4548f291ef0fef7d97e898593eaff",
"body": "Add exact-match entry for \"ผลตอบแทนรวมสุทธิของดัชนีพันธบัตรรัฐบาล...\" variant\nto BenchmarkNameTranslation map. Previously fell through to prefix handler\nwhich left the inner Thai text untranslated.",
"is_bot": false,
"headline": "fix: add missing benchmark name translation for ThaiBMA 1-Year",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-09T14:17:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "55c27c6c36ca47d188cfb567d8f577596d52a067",
"body": "- Extract thaiUnitMap and translateUnit helper to eliminate switch repetition\n- Update Makefile complexity threshold from 25 to 15 (library standard)\n- All tests pass, gocyclo -over 15 now clean (excludes CLI main func)",
"is_bot": false,
"headline": "refactor: reduce TranslateThaiPeriod cyclomatic complexity to 15",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-09T13:34:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21f9c22dfb6c87cd53ac9257a7045bd42fa23965",
"body": "Split the 647-line language.go monolith into four focused files:\n- language.go: Language type, constants, normalize, pickString, bilingual methods\n- dictionaries.go: All 7 exported Thai↔English translation maps\n- translate.go: Struct-specific TranslateXxx and TranslateAllXxx functions\n- dates.go: Bu\n[…]\nPI signatures and exported maps unchanged (backward compatible)\n- Update README project structure to reflect new file layout\n\nLint: all checks pass (golangci-lint, staticcheck, gofumpt, dupl, gocyclo)",
"is_bot": false,
"headline": "refactor: split language.go into focused packages",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-09T13:33:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "577a8f079c651c663e05826210044447aaa09048",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' of github.com:jwitmann/sec-go",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-09T13:06:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6f930723af12a942ca322fb9dabd8a2642ed645",
"body": "Add exact-match translation for ThaiBMA Government Bond 1-Year Total Return\nIndex benchmark name to prevent mixed Thai/English output.",
"is_bot": false,
"headline": "fix: add ThaiBMA benchmark name translation for TBOND1Y",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-09T13:03:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f65966ad932753abc276397705f2e0d1e5e7f70",
"body": "Add exact-match translation for ThaiBMA Government Bond 1-Year Total Return\nIndex benchmark name to prevent mixed Thai/English output.",
"is_bot": false,
"headline": "fix: add ThaiBMA benchmark name translation for TBOND1Y",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-09T13:01:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7155ea608eed19909c918dc481903e8cd4c86dee",
"body": null,
"is_bot": false,
"headline": "feat(i18n): Add benchmark name and remark translation (Thai → English)",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-09T12:44:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8e75f717c368ee2546669e55c0e0a4325c7ab07",
"body": "SEC rate limit is 5,000 requests per 300 seconds.\n300,000ms / 5,000 = 60ms minimum delay between requests.\n\nPrevious value of 16ms was incorrect math.\n\nUpdated:\n- rate.go: defaultMinDelay 16ms -> 60ms\n- README.md: rate limiting description\n- docs/v2-schemas/API.md: rate limit docs\n- PLAN.md: rate limit docs",
"is_bot": false,
"headline": "fix: correct rate limiter delay to 60ms",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-08T09:56:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ce962ea4f514918d71ea91aaebfd8e2910833e4",
"body": "- Add TranslateThaiPeriod() for converting Thai period descriptions\n (ปี/เดือน/วัน → years/months/days)\n- Add ConvertBuddhistDate() for converting Buddhist calendar dates\n (DD/MM/YYYY → ISO Gregorian YYYY-MM-DD)\n- Add TranslateFactsheetStatistics() and TranslateFundIPO() helpers\n- Add autoTranslat\n[…]\nire auto-translation into GetFactsheetStatistics() and GetFundIPOs()\n- Add comprehensive unit tests for period translation and date conversion\n- Update existing test expectations for translated output",
"is_bot": false,
"headline": "feat: auto-translate Thai periods and Buddhist dates to English",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-08T07:58:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "436f9ffd45a7cdee6bfad16cb0bed348486f5462",
"body": "- Add SubscriptionPeriodTranslation map for common Thai period descriptions\n- Add TranslateSubscriptionRedemptionPeriod() and TranslateAllSubscriptionRedemptionPeriods()\n- Add autoTranslateSubscriptionRedemptionPeriods() to Client\n- Wire auto-translation into GetFactsheetSubscriptionRedemptionPeriods()\n- Update test to expect translated text",
"is_bot": false,
"headline": "feat: auto-translate subscription/redemption periods to English",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-08T07:20:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd4f68bbf5818ecb8058a405fa2a7093b72f885d",
"body": "- Add สัญญาฟอร์เวิร์ด → Forward Contract\n- Add หน่วยลงทุนของกองทุนตราสารทุน → Equity Fund Units\n- Add หน่วยลงทุนของกองทุนตราสารหนี้ → Debt Fund Units\n- Add หน่วยลงทุนของกองทุนรวม → Mixed Fund Units\n- Add หน่วยลงทุนของกองทุนหุ้น → Stock Fund Units\n- Add หน่วยลงทุนของกองทุนตราสารหนี้ระยะสั้น → Short-term Debt Fund Units",
"is_bot": false,
"headline": "fix: add missing Thai translations for fund holdings",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T16:09:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05f3f1d8cbe1f5d3cc7348e0ba63d2f4e71fe0d6",
"body": "- Add comprehensive AssetLiabilityTranslation map (80+ entries)\n- Add auto-translate helpers to Client for fees, allocations, holdings, portfolios\n- Wire auto-translate into GetFactsheetFees, GetAssetAllocation, GetTop5Holdings,\n GetQuarterlyPortfolio, GetMonthlyPortfolioAssetType, GetMutualFundFees\n- Translation is transparent: English clients receive English descriptions\n without explicit Translate* calls",
"is_bot": false,
"headline": "feat: auto-translate Thai descriptions when client language is English",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T16:00:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ab32380a1454d36536ca1cbe47e33e729fe63d5",
"body": "SEC API returns integers (or null) for proj_term_day, proj_term_month,\nand proj_term_year. Previous string type caused json unmarshal errors.",
"is_bot": false,
"headline": "fix: correct FundProfile term field types from string to *int",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T14:29:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5be169cee7cd652e97657ac4ae12813e2e1b6578",
"body": "- Update Getting API Keys section to point to secopendata.sec.or.th\n- Note that legacy V1 API portal is obsolete",
"is_bot": false,
"headline": "docs: fix API key signup URL to new developer portal",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T13:31:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae2e84eeed085bad67ee7e4d316f502869829689",
"body": null,
"is_bot": false,
"headline": "docs: add Getting API Keys section to README",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T13:29:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2748eb3a48915f7cf0229bff9a09d2f3ba5a7e17",
"body": null,
"is_bot": false,
"headline": "docs: add Go Reference and Go Report Card badges",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T13:10:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3fe53740d9a21215e79789a1248a5fa942ca4a00",
"body": "- Split monolithic fund_service.go by domain:\n - fund_general.go: AMCs, profiles, specs, fees, involve parties\n - fund_factsheet.go: all factsheet endpoints\n - fund_daily.go: NAV, dividend history\n - fund_outstanding.go: quarterly/monthly portfolio\n- Keep shared pagination/helpers in fund_servic\n[…]\nred fixtures\n - newTestClient, newFactsheetServer, newQueryServer\n - requireLen assertion helper\n- Verified go.sum is in sync via go mod tidy\n- 0 clone groups detected by dupl\n- All 68 tests passing",
"is_bot": false,
"headline": "refactor: split fund_service.go and improve organization",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T13:07:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5b45d1ba5abeeb332e5e84251d6bf218d93d6343",
"body": "- Update PLAN.md project structure to include language.go, helpers_fund.go,\n cmd/sec-lookup, and all test files\n- Update test count from 39 to 68\n- Document convenience helpers, language support, flexible DateTime\n- Update README project structure and add DateTime Handling section\n- Update API.md to note SEC datetime format inconsistency\n- Mark Phase 4 complete with all current deliverables",
"is_bot": false,
"headline": "docs: update PLAN.md, README.md, API.md for current feature set",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T12:57:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cb1924fc88e5770f02529d053e11c7acf46bc39e",
"body": "- Add flexible DateTime type with custom UnmarshalJSON\n- Handle formats: RFC3339, fractional seconds without timezone,\n and plain dates (YYYY-MM-DD)\n- Replace all 19 LastUpdDate time.Time fields with DateTime\n- Fix GetFundProfile to use project_info query param (not proj_id)\n- Update TestGetFundProfile to expect project_info\n- Add cmd/sec-lookup tool for fund debugging\n\nAll tests passing (68 total)",
"is_bot": false,
"headline": "fix: handle SEC datetime formats and profile lookup",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T12:51:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57a7710dc85c3af30e393ebbdb75eef57f9c8288",
"body": "- SearchFunds: search across fund IDs, Thai/English names, abbreviations\n- GetFundsByCompany: list all funds managed by an AMC\n- FindAMC: search AMCs by Thai/English name or unique_id\n- Single-fund helpers: GetFundProfile, GetFundLatestNAV,\n GetFundRiskSpectrum, GetFundFactsheetFees, GetFundAssetAl\n[…]\nD to ProfileOptions for single-fund profile lookup\n- helpers_fund_test.go with 13 new tests\n- Integration test for GetFundsByCompany\n- README updated with Convenience Helpers section\n\n68 tests passing",
"is_bot": false,
"headline": "feat: add finnomena-style convenience helpers",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T12:37:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d2f67c379506126a0118eef0c5626520f997b635",
"body": "- Add Language type with LanguageThai/LanguageEnglish constants\n- Add WithLanguage option and Client.Language() getter\n- Normalize language strings ('th', 'TH', 'tha', 'en', 'EN', 'eng')\n- Add bilingual Name() helpers on AMC, FundProfile, FundInvolveParty\n- Add Thai->English translation maps: FeeTyp\n[…]\nAll- variants\n- Add language_test.go covering normalization, helpers, and translations\n- Update README with Language Support section\n- Fix README CLI Tool section accidentally showing Examples content",
"is_bot": false,
"headline": "feat: add language support (Thai/English) and translation helpers",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T12:25:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "69663f69d303478fe5c38bc5b19d8e60c0b3ce7c",
"body": "- Add explicit HTTP method, required/optional parameter markers\n- Add full example URLs for every endpoint\n- Link to available sample JSON response files\n- Add nullability indicators on all response fields\n- Document common response codes and error handling\n- Add type format reference and legend\n- Add Risk Spectrum and Prospectus Type lookup tables\n- Add implementation notes section with practical guidance\n- Keep endpoints sorted by category and number",
"is_bot": false,
"headline": "docs: strengthen API.md to implementation-grade reference",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T12:18:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8edb867086b22e53b04e2ccb052012c48c4c7a0d",
"body": "- Add WithLogger, WithRequestHook, WithResponseHook options\n- Add request/response logging to client.do()\n- Add cmd/sec-cli tool for all 21 endpoints\n- Add integration_test.go gated by //go:build integration\n- Reorganize docs/v2-schemas/API.md in sorted endpoint order\n- Update PLAN.md with complete endpoint list (39 tests)\n- Update README.md with CLI, hooks, logger, integration tests\n- All 41 unit tests passing",
"is_bot": false,
"headline": "feat: add CLI, hooks, logger, integration tests, sorted API docs",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T12:12:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc32dd63fd3fba244be8d76e768399315cbf4599",
"body": "- Add FundDividendPolicy model\n- Add GetFactsheetDividendPolicy service method\n- Add unit test\n- Update API.md and README.md\n- Completes all 21 Fund API endpoints",
"is_bot": false,
"headline": "feat: add factsheet dividend policy endpoint (#13)",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T12:01:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32ace1ee0830b695fc507eb7307e6834e6bb9d57",
"body": "- Add GetFundSpecifications (#3)\n- Add GetFundInvolveParties (#5) with InvolvePartyOptions\n- Add GetFundFactsheetURLs (#6)\n- Add GetFundIPOs (#7)\n- Add GetFactsheetBenchmarks (#8)\n- Add GetFactsheetSubscriptionRedemptionMinimums (#9)\n- Add GetFactsheetSubscriptionRedemptionPeriods (#10)\n- Add GetFac\n[…]\n,\n FundFactsheetURL, FundIPO, FactsheetSubscriptionRedemptionMinimum,\n FactsheetSubscriptionRedemptionPeriod, FactsheetStatistics\n- Add unit tests for all new endpoints\n- Update API.md and README.md",
"is_bot": false,
"headline": "feat: add fund endpoints #3, #5-#10, #12",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T11:58:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "85209068998c74f329d46ab7fdcffb8cc9a4d3b7",
"body": "- Add BatchGetNAVs and BatchGetFundProfiles with concurrency, progress callbacks\n- Add comprehensive mock-server tests for all fund service methods\n- Refactor fund_service.go: generic fetchPaginated[T], helper builders, zero dupl clones\n- Add usage examples: basic, batch, thaifa fallback pattern\n- Update README.md with full endpoint list, pagination, batch ops\n- Update PLAN.md marking all phases 1-4 complete\n- All 28 tests passing; all quality gates green",
"is_bot": false,
"headline": "feat: complete Phase 3/4 - batch ops, tests, examples, docs",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T11:47:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d6d5460b4e905a6bd766ed0aab389b4ca282304",
"body": "- Add RiskSpectrum model and GetRiskSpectrum service method\n- Add Top5Holding model and GetTop5Holdings service method\n- Add QuarterlyPortfolio model and GetQuarterlyPortfolio service method\n- Add MonthlyPortfolioAssetType model and GetMonthlyPortfolioAssetType\n- Add OutstandingOptions for period-ba\n[…]\neries\n- Refactor factsheet endpoints to use buildFactsheetQuery helper\n- Update API.md with Outstanding endpoints and new Factsheet endpoints\n- Discover and save sample responses for all new endpoints",
"is_bot": false,
"headline": "feat: add risk spectrum, top5 holdings, portfolio endpoints",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T11:37:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "56842a016e990f3d1a06f50add71e267f357ac61",
"body": "- Add generic FetchAllPages[T] pagination helper\n- Add DividendHistory model and GetDividendHistory service method\n- Add AssetAllocation model and GetAssetAllocation service method\n- Add DividendHistoryOptions and AssetAllocationOptions\n- Add pagination unit tests\n- Discover and save sample responses for new endpoints\n- Update API.md documentation with new endpoints",
"is_bot": false,
"headline": "feat: add pagination helper, dividend history, and asset allocation",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T11:33:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b203812fd3531a42948b860d9d62d1b2a21873c4",
"body": "- Add MutualFundFee model and GetMutualFundFees service method\n- Add FactsheetFee model and GetFactsheetFees service method\n- Add FactsheetPerformance model and GetFactsheetPerformance service method\n- Add FeeOptions and FactsheetOptions for endpoint parameters\n- Create comprehensive API.md documentation with all endpoints\n- Include status values, management styles, and retail types reference tables",
"is_bot": false,
"headline": "feat: add more Fund API endpoints and documentation",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T11:08:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8ba8c1acb646f15ec484475f0d266058585a0e7",
"body": "- Discover correct endpoint paths from SEC docs\n- Add data models: AMC, FundProfile, DailyNAV, PaginatedResponse\n- Add service methods: ListAMCs, GetFundProfiles, GetDailyNAV\n- Add pagination support with cursor-based navigation\n- Fix rate limiter: 16ms min delay (per SEC docs)\n- Add HTTP 421 retry with Retry-After header parsing\n- Update .gitignore with root-relative paths\n- Add discovery script cmd/sec-test/\n- Save response samples to docs/v2-schemas/",
"is_bot": false,
"headline": "feat: Phase 2 - V2 schema discovery and service methods",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T11:04:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "719993bee9317aa4c66c72579579c6a98d80539c",
"body": "All patterns now anchored to repository root for consistency.",
"is_bot": false,
"headline": "fix: add root-relative paths to .gitignore",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T10:43:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf09416589cb2dcaf8b55d0b5dead51ed7153c07",
"body": "- Core HTTP client with auth, retry, rate limiting\n- Functional options pattern (WithHTTPClient, WithBaseURL, etc.)\n- Primary/secondary API key support with switching\n- Thread-safe rate limiter (100ms min delay)\n- Exponential backoff retry with jitter\n- Custom error types (ErrRateLimited, ErrNotFound, ErrUnauthorized)\n- Optional caching support (WithCache)\n- Test infrastructure: mock server tests, config example\n- Makefile with test, lint, format targets\n- AGENTS.md with project guidelines",
"is_bot": false,
"headline": "feat: implement Phase 1 generic client infrastructure",
"author_name": "Calvados",
"author_login": "jwitmann",
"committed_at": "2026-06-05T10:41:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13e0d76371427990c47581648bc0d0e97bd8af71",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "jwitmann",
"author_login": "jwitmann",
"committed_at": "2026-06-05T09:41:02Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 7,
"commits_last_year": 40,
"latest_release_at": "2026-07-13T12:26:06Z",
"latest_release_tag": "v0.6.0",
"releases_from_tags": true,
"days_since_last_push": 14,
"active_weeks_last_year": 3,
"days_since_latest_release": 14,
"mean_days_between_releases": 6.3
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/jwitmann/sec-go",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/jwitmann/sec-go",
"is_deprecated": false,
"latest_version": "v0.6.0",
"repository_url": "https://github.com/jwitmann/sec-go",
"versions_count": 7,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-13T12:26:06Z",
"latest_version_yanked": null,
"days_since_latest_publish": 14
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 18889,
"source_files_sampled": 44,
"oversized_source_files": 0,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 2686
},
"dependencies": {
"manifests": [
"go.mod"
],
"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": [
"go"
],
"dependencies": [],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 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": "jwitmann",
"commits": 40,
"avatar_url": "https://avatars.githubusercontent.com/u/44364865?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"has_docs_dir": true,
"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": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "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": "50360dba6ec87f74ae82a59541d1b57537ae545a",
"ran_at": "2026-07-28T06:16:32Z",
"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": [],
"last_merged_pr_at": null,
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/jwitmann/sec-go",
"host": "github.com",
"name": "sec-go",
"owner": "jwitmann"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 39,
"inputs": {
"security": 26,
"vitality": 62,
"community": 24,
"governance": 32,
"engineering": 48
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 62,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"commits_last_year": 40,
"human_commit_share": 1,
"days_since_last_push": 14,
"active_weeks_last_year": 3
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 14 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 14
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "3/52 weeks with commits",
"points": 2.1,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 3
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "40 commits in the last year",
"points": 14.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 40
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 88,
"inputs": {
"releases_count": 7,
"latest_release_tag": "v0.6.0",
"releases_from_tags": true,
"days_since_latest_release": 14,
"mean_days_between_releases": 6.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "7 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 7
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 14 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 14
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~6.3 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 6.3
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 24,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "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": "at_risk",
"name": "Sustainability & Governance",
"value": 32,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"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 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": 35,
"inputs": {
"followers": 0,
"owner_type": "User",
"is_verified": null,
"owner_login": "jwitmann",
"public_repos": 5,
"account_age_days": 2835
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "0 followers of jwitmann",
"points": 0,
"status": "missed",
"details": [
{
"code": "owner_followers",
"params": {
"count": 0,
"login": "jwitmann"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "5 public repos, account ~7 yr old",
"points": 17.7,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 5
}
},
{
"code": "account_age_years",
"params": {
"years": 7
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/jwitmann/sec-go"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 14
},
"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 14 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 14
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "7 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 7
}
}
],
"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": 48,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"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": 30,
"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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"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": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "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": "moderate",
"name": "AI Readiness",
"value": 69,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.95,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 2686
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.md"
}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "38 of 40 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 38,
"sampled": 40
}
}
],
"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": 57,
"inputs": {
"has_nix": false,
"has_tests": true,
"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": [
"go.mod"
],
"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": 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": 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 40",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 40
}
}
],
"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": 18889,
"source_files_sampled": 44,
"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/44 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 44,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-28T06:16:36.880833Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/j/jwitmann/sec-go.svg",
"full_name": "jwitmann/sec-go",
"license_state": "standard",
"license_spdx": "MIT"
}